From 35044f15f6b403866babb7f28f5a0a7da44d7f33 Mon Sep 17 00:00:00 2001 From: YUCHENG HU Date: Wed, 30 Jan 2013 22:20:28 -0500 Subject: [PATCH] =?UTF-8?q?vTiger=20=E6=97=A5=E5=BF=97=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- log4php.debug/Logger.php | 67 + log4php.debug/LoggerAppender.php | 218 + log4php.debug/LoggerAppenderSkeleton.php | 355 + log4php.debug/LoggerBasicConfigurator.php | 80 + log4php.debug/LoggerCategory.php | 572 + .../LoggerDefaultCategoryFactory.php | 52 + log4php.debug/LoggerHierarchy.php | 388 + log4php.debug/LoggerLayout.php | 98 + log4php.debug/LoggerLevel.php | 264 + log4php.debug/LoggerLog.php | 99 + log4php.debug/LoggerMDC.php | 129 + log4php.debug/LoggerManager.php | 262 + log4php.debug/LoggerNDC.php | 240 + log4php.debug/LoggerPropertyConfigurator.php | 650 + log4php.debug/LoggerRoot.php | 101 + .../appenders/LoggerAppenderConsole.php | 139 + .../appenders/LoggerAppenderDailyFile.php | 97 + log4php.debug/appenders/LoggerAppenderDb.php | 209 + .../appenders/LoggerAppenderEcho.php | 89 + .../appenders/LoggerAppenderFile.php | 184 + .../appenders/LoggerAppenderMail.php | 148 + .../appenders/LoggerAppenderMailEvent.php | 170 + .../appenders/LoggerAppenderNull.php | 72 + log4php.debug/appenders/LoggerAppenderPhp.php | 85 + .../appenders/LoggerAppenderRollingFile.php | 241 + .../appenders/LoggerAppenderSocket.php | 285 + .../appenders/LoggerAppenderSyslog.php | 85 + log4php.debug/config/LoggerPropertyGetter.php | 37 + log4php.debug/config/LoggerPropertySetter.php | 161 + .../helpers/LoggerFormattingInfo.php | 61 + .../helpers/LoggerOptionConverter.php | 350 + .../helpers/LoggerPatternConverter.php | 504 + log4php.debug/helpers/LoggerPatternParser.php | 419 + log4php.debug/helpers/LoggerTransform.php | 95 + log4php.debug/layouts/LoggerLayoutHtml.php | 256 + log4php.debug/layouts/LoggerLayoutSimple.php | 84 + log4php.debug/layouts/LoggerLayoutTTCC.php | 240 + log4php.debug/layouts/LoggerPatternLayout.php | 260 + log4php.debug/layouts/LoggerXmlLayout.php | 206 + log4php.debug/or/LoggerDefaultRenderer.php | 58 + log4php.debug/or/LoggerObjectRenderer.php | 63 + log4php.debug/or/LoggerRendererMap.php | 184 + log4php.debug/spi/LoggerConfigurator.php | 65 + log4php.debug/spi/LoggerFactory.php | 52 + log4php.debug/spi/LoggerFilter.php | 113 + log4php.debug/spi/LoggerLocationInfo.php | 116 + log4php.debug/spi/LoggerLoggingEvent.php | 384 + log4php.debug/varia/LoggerDenyAllFilter.php | 57 + .../varia/LoggerLevelMatchFilter.php | 119 + .../varia/LoggerLevelRangeFilter.php | 168 + .../varia/LoggerStringMatchFilter.php | 108 + log4php.debug/xml/LoggerDOMConfigurator.php | 609 + log4php.properties | 62 + log4php/LoggerManager.php | 133 + log4php/LoggerPropertyConfigurator.php | 65 + logs/installation.log | 0 logs/migration.log | 11 + logs/platform.log | 0 logs/security.log | 0 logs/soap.log | 0 logs/sqltime.log | 0 logs/todel.txt.txt | 0 logs/vtigercrm.log | 28505 ++++++++++++ logs/vtigercrm.log.1 | 34457 ++++++++++++++ logs/vtigercrm.log.2 | 30729 +++++++++++++ logs/vtigercrm.log.3 | 35695 ++++++++++++++ logs/vtigercrm.log.4 | 37076 +++++++++++++++ logs/vtigercrm.log.5 | 35069 ++++++++++++++ logs/vtigercrm.log.6 | 35860 +++++++++++++++ logs/vtigercrm.log.7 | 38251 ++++++++++++++++ 70 files changed, 286061 insertions(+) create mode 100644 log4php.debug/Logger.php create mode 100644 log4php.debug/LoggerAppender.php create mode 100644 log4php.debug/LoggerAppenderSkeleton.php create mode 100644 log4php.debug/LoggerBasicConfigurator.php create mode 100644 log4php.debug/LoggerCategory.php create mode 100644 log4php.debug/LoggerDefaultCategoryFactory.php create mode 100644 log4php.debug/LoggerHierarchy.php create mode 100644 log4php.debug/LoggerLayout.php create mode 100644 log4php.debug/LoggerLevel.php create mode 100644 log4php.debug/LoggerLog.php create mode 100644 log4php.debug/LoggerMDC.php create mode 100644 log4php.debug/LoggerManager.php create mode 100644 log4php.debug/LoggerNDC.php create mode 100644 log4php.debug/LoggerPropertyConfigurator.php create mode 100644 log4php.debug/LoggerRoot.php create mode 100644 log4php.debug/appenders/LoggerAppenderConsole.php create mode 100644 log4php.debug/appenders/LoggerAppenderDailyFile.php create mode 100644 log4php.debug/appenders/LoggerAppenderDb.php create mode 100644 log4php.debug/appenders/LoggerAppenderEcho.php create mode 100644 log4php.debug/appenders/LoggerAppenderFile.php create mode 100644 log4php.debug/appenders/LoggerAppenderMail.php create mode 100644 log4php.debug/appenders/LoggerAppenderMailEvent.php create mode 100644 log4php.debug/appenders/LoggerAppenderNull.php create mode 100644 log4php.debug/appenders/LoggerAppenderPhp.php create mode 100644 log4php.debug/appenders/LoggerAppenderRollingFile.php create mode 100644 log4php.debug/appenders/LoggerAppenderSocket.php create mode 100644 log4php.debug/appenders/LoggerAppenderSyslog.php create mode 100644 log4php.debug/config/LoggerPropertyGetter.php create mode 100644 log4php.debug/config/LoggerPropertySetter.php create mode 100644 log4php.debug/helpers/LoggerFormattingInfo.php create mode 100644 log4php.debug/helpers/LoggerOptionConverter.php create mode 100644 log4php.debug/helpers/LoggerPatternConverter.php create mode 100644 log4php.debug/helpers/LoggerPatternParser.php create mode 100644 log4php.debug/helpers/LoggerTransform.php create mode 100644 log4php.debug/layouts/LoggerLayoutHtml.php create mode 100644 log4php.debug/layouts/LoggerLayoutSimple.php create mode 100644 log4php.debug/layouts/LoggerLayoutTTCC.php create mode 100644 log4php.debug/layouts/LoggerPatternLayout.php create mode 100644 log4php.debug/layouts/LoggerXmlLayout.php create mode 100644 log4php.debug/or/LoggerDefaultRenderer.php create mode 100644 log4php.debug/or/LoggerObjectRenderer.php create mode 100644 log4php.debug/or/LoggerRendererMap.php create mode 100644 log4php.debug/spi/LoggerConfigurator.php create mode 100644 log4php.debug/spi/LoggerFactory.php create mode 100644 log4php.debug/spi/LoggerFilter.php create mode 100644 log4php.debug/spi/LoggerLocationInfo.php create mode 100644 log4php.debug/spi/LoggerLoggingEvent.php create mode 100644 log4php.debug/varia/LoggerDenyAllFilter.php create mode 100644 log4php.debug/varia/LoggerLevelMatchFilter.php create mode 100644 log4php.debug/varia/LoggerLevelRangeFilter.php create mode 100644 log4php.debug/varia/LoggerStringMatchFilter.php create mode 100644 log4php.debug/xml/LoggerDOMConfigurator.php create mode 100644 log4php.properties create mode 100644 log4php/LoggerManager.php create mode 100644 log4php/LoggerPropertyConfigurator.php create mode 100644 logs/installation.log create mode 100644 logs/migration.log create mode 100644 logs/platform.log create mode 100644 logs/security.log create mode 100644 logs/soap.log create mode 100644 logs/sqltime.log create mode 100644 logs/todel.txt.txt create mode 100644 logs/vtigercrm.log create mode 100644 logs/vtigercrm.log.1 create mode 100644 logs/vtigercrm.log.2 create mode 100644 logs/vtigercrm.log.3 create mode 100644 logs/vtigercrm.log.4 create mode 100644 logs/vtigercrm.log.5 create mode 100644 logs/vtigercrm.log.6 create mode 100644 logs/vtigercrm.log.7 diff --git a/log4php.debug/Logger.php b/log4php.debug/Logger.php new file mode 100644 index 0000000..e50215c --- /dev/null +++ b/log4php.debug/Logger.php @@ -0,0 +1,67 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/LoggerCategory.php'); +require_once(LOG4PHP_DIR . '/LoggerManager.php'); + +/** + * Main class for logging operations + * + * @author VxR + * @version $Revision: 1.9 $ + * @package log4php + */ +class Logger extends LoggerCategory { + + /** + * Constructor + * @param string $name logger name + */ + function Logger($name) + { + $this->LoggerCategory($name); + } + + /** + * Get a Logger by name (Delegate to {@link LoggerManager}) + * @param string $name logger name + * @param LoggerFactory $factory a {@link LoggerFactory} instance or null + * @return Logger + * @static + */ + function &getLogger($name, $factory = null) + { + return LoggerManager::getLogger($name, $factory); + } + + /** + * get the Root Logger (Delegate to {@link LoggerManager}) + * @return LoggerRoot + * @static + */ + function &getRootLogger() + { + return LoggerManager::getRootLogger(); + } +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerAppender.php b/log4php.debug/LoggerAppender.php new file mode 100644 index 0000000..c952da9 --- /dev/null +++ b/log4php.debug/LoggerAppender.php @@ -0,0 +1,218 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + * Abstract class that defines output logs strategies. + * + * @author VxR + * @version $Revision: 1.14 $ + * @package log4php + * @abstract + */ +class LoggerAppender { + + /** + * Factory + * + * @param string $name appender name + * @param string $class create an instance of this appender class + * @return LoggerAppender + */ + function factory($name, $class) + { + $class = basename($class); + if (!empty($class)) { + if (!class_exists($class)) + @include_once(LOG4PHP_DIR . "/appenders/{$class}.php"); + if (class_exists($class)) + return new $class($name); + } + return null; + } + + /** + * Singleton + * + * @param string $name appender name + * @param string $class create or get a reference instance of this class + * @return LoggerAppender + */ + function &singleton($name, $class = '') + { + static $instances; + + if (!empty($name)) { + if (!isset($instances[$name])) { + if (!empty($class)) { + $appender = LoggerAppender::factory($name, $class); + if ($appender !== null) { + $instances[$name] = $appender; + return $instances[$name]; + } + } + return null; + } + return $instances[$name]; + } + return null; + } + + /* --------------------------------------------------------------------------*/ + /* --------------------------------------------------------------------------*/ + /* --------------------------------------------------------------------------*/ + + /** + * Add a filter to the end of the filter list. + * + * @param LoggerFilter $newFilter add a new LoggerFilter + * @abstract + */ + function addFilter($newFilter) + { + // override + } + + /** + * Clear the list of filters by removing all the filters in it. + * @abstract + */ + function clearFilters() + { + // override + } + + /** + * Return the first filter in the filter chain for this Appender. + * The return value may be null if no is filter is set. + * @return Filter + */ + function &getFilter() + { + // override + } + + /** + * Release any resources allocated. + * Subclasses of {@link LoggerAppender} should implement + * this method to perform proper closing procedures. + * @abstract + */ + function close() + { + //override me + } + + /** + * This method performs threshold checks and invokes filters before + * delegating actual logging to the subclasses specific append() method. + * @param LoggerLoggingEvent $event + * @abstract + */ + function doAppend($event) + { + //override me + } + + /** + * Get the name of this appender. + * @return string + */ + function getName() + { + //override me + } + + /** + * Do not use this method. + * + * @param object $errorHandler + */ + function setErrorHandler($errorHandler) + { + // override me + } + + /** + * Do not use this method. + * @return object Returns the ErrorHandler for this appender. + */ + function &getErrorHandler() + { + return $this->errorHandler; + } + + /** + * Set the Layout for this appender. + * + * @param LoggerLayout $layout + */ + function setLayout($layout) + { + // override me + } + + /** + * Returns this appender layout. + * @return LoggerLayout + */ + function &getLayout() + { + // override me + } + + /** + * Set the name of this appender. + * + * The name is used by other components to identify this appender. + * + * @param string $name + */ + function setName($name) + { + // override me + } + + /** + * Configurators call this method to determine if the appender + * requires a layout. + * + *

If this method returns true, meaning that layout is required, + * then the configurator will configure a layout using the configuration + * information at its disposal. If this method returns false, + * meaning that a layout is not required, then layout configuration will be + * skipped even if there is available layout configuration + * information at the disposal of the configurator.

+ * + *

In the rather exceptional case, where the appender + * implementation admits a layout but can also work without it, then + * the appender should return true.

+ * + * @return boolean + */ + function requiresLayout() + { + // override me + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerAppenderSkeleton.php b/log4php.debug/LoggerAppenderSkeleton.php new file mode 100644 index 0000000..a98eff4 --- /dev/null +++ b/log4php.debug/LoggerAppenderSkeleton.php @@ -0,0 +1,355 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerAppender.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); + +/** + * Abstract superclass of the other appenders in the package. + * + * This class provides the code for common functionality, such as + * support for threshold filtering and support for general filters. + * + * @author VxR + * @author Sergio Strampelli + * @version $Revision: 1.15 $ + * @package log4php + * @abstract + */ +class LoggerAppenderSkeleton extends LoggerAppender { + + /** + * @var boolean closed appender flag + */ + var $closed; + + /** + * @var object unused + */ + var $errorHandler; + + /** + * The first filter in the filter chain + * @var LoggerFilter + */ + var $headFilter = null; + + /** + * LoggerLayout for this appender. It can be null if appender has its own layout + * @var LoggerLayout + */ + var $layout = null; + + /** + * @var string Appender name + */ + var $name; + + /** + * The last filter in the filter chain + * @var LoggerFilter + */ + var $tailFilter = null; + + /** + * @var LoggerLevel There is no level threshold filtering by default. + */ + var $threshold = null; + + /** + * @var boolean needs a layout formatting ? + */ + var $requiresLayout = false; + +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ + + /** + * Constructor + * + * @param string $name appender name + */ + function LoggerAppenderSkeleton($name) + { + $this->name = $name; + $this->clearFilters(); + } + + /** + * @param LoggerFilter $newFilter add a new LoggerFilter + * @see LoggerAppender::addFilter() + */ + function addFilter($newFilter) + { + if($this->headFilter === null) { + $this->headFilter = $newFilter; + $this->tailFilter =& $this->headFilter; + } else { + $this->tailFilter->next = $newFilter; + $this->tailFilter =& $this->tailFilter->next; + } + } + + /** + * Derived appenders should override this method if option structure + * requires it. + */ + function activateOptions() + { + + } + + /** + * Subclasses of {@link LoggerAppenderSkeleton} should implement + * this method to perform actual logging. + * + * @param LoggerLoggingEvent $event + * @see doAppend() + * @abstract + */ + function append($event) + { + // override me + } + + /** + * @see LoggerAppender::clearFilters() + */ + function clearFilters() + { + unset($this->headFilter); + unset($this->tailFilter); + $this->headFilter = null; + $this->tailFilter = null; + } + + /** + * @see LoggerAppender::close() + */ + function close() + { + //override me + } + + /** + * Finalize this appender by calling the derived class' close() method. + */ + function finalize() + { + // An appender might be closed then garbage collected. There is no + // point in closing twice. + if ($this->closed) return; + + LoggerLog::debug("LoggerAppenderSkeleton::finalize():name=[{$this->name}]."); + + $this->close(); + } + + /** + * Do not use this method. + * @see LoggerAppender::getErrorHandler() + * @return object + */ + function &getErrorHandler() + { + return $this->errorHandler; + } + + /** + * @see LoggerAppender::getFilter() + * @return Filter + */ + function &getFilter() + { + return $this->headFilter; + } + + /** + * Return the first filter in the filter chain for this Appender. + * The return value may be null if no is filter is set. + * @return Filter + */ + function &getFirstFilter() + { + return $this->headFilter; + } + + /** + * @see LoggerAppender::getLayout() + * @return LoggerLayout + */ + function &getLayout() + { + return $this->layout; + } + + /** + * @see LoggerAppender::getName() + * @return string + */ + function getName() + { + return $this->name; + } + + /** + * Returns this appenders threshold level. + * See the {@link setThreshold()} method for the meaning of this option. + * @return LoggerLevel + */ + function &getThreshold() + { + return $this->threshold; + } + + /** + * Check whether the message level is below the appender's threshold. + * + * + * If there is no threshold set, then the return value is always true. + * @param LoggerLevel $priority + * @return boolean true if priority is greater or equal than threshold + */ + function isAsSevereAsThreshold($priority) + { + if ($this->threshold === null) + return true; + + return $priority->isGreaterOrEqual($this->getThreshold()); + } + + /** + * @see LoggerAppender::doAppend() + * @param LoggerLoggingEvent $event + */ + function doAppend($event) + { + LoggerLog::debug("LoggerAppenderSkeleton::doAppend()"); + + if ($this->closed) { + LoggerLog::debug("LoggerAppenderSkeleton::doAppend() Attempted to append to closed appender named [{$this->name}]."); + return; + } + if(!$this->isAsSevereAsThreshold($event->getLevel())) { + LoggerLog::debug("LoggerAppenderSkeleton::doAppend() event level is less severe than threshold."); + return; + } + + $f = $this->getFirstFilter(); + + while($f !== null) { + switch ($f->decide($event)) { + case LOG4PHP_LOGGER_FILTER_DENY: return; + case LOG4PHP_LOGGER_FILTER_ACCEPT: return $this->append($event); + case LOG4PHP_LOGGER_FILTER_NEUTRAL: $f = $f->next; + } + } + $this->append($event); + } + + + /** + * @see LoggerAppender::requiresLayout() + * @return boolean + */ + function requiresLayout() + { + return $this->requiresLayout; + } + + /** + * @see LoggerAppender::setErrorHandler() + * @param object + */ + function setErrorHandler($errorHandler) + { + if($errorHandler == null) { + // We do not throw exception here since the cause is probably a + // bad config file. + LoggerLog::warn("You have tried to set a null error-handler."); + } else { + $this->errorHandler = $errorHandler; + } + } + + /** + * @see LoggerAppender::setLayout() + * @param LoggerLayout $layout + */ + function setLayout($layout) + { + if ($this->requiresLayout()) + $this->layout = $layout; + } + + /** + * @see LoggerAppender::setName() + * @param string $name + */ + function setName($name) + { + $this->name = $name; + } + + /** + * Set the threshold level of this appender. + * + * @param mixed $threshold can be a {@link LoggerLevel} object or a string. + * @see LoggerOptionConverter::toLevel() + */ + function setThreshold($threshold) + { + if (is_string($threshold)) { + $this->threshold = LoggerOptionConverter::toLevel($threshold, null); + }elseif (is_a($threshold, 'loggerlevel')) { + $this->threshold = $threshold; + } + } + + /** + * Perform actions before object serialization. + * + * Call {@link finalize()} to properly close the appender. + */ + function __sleep() + { + $this->finalize(); + return array_keys(get_object_vars($this)); + } + + /** + * Perform actions after object deserialization. + * + * Call {@link activateOptions()} to properly setup the appender. + */ + function __wakeup() + { + $this->activateOptions(); + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerBasicConfigurator.php b/log4php.debug/LoggerBasicConfigurator.php new file mode 100644 index 0000000..67e2a4e --- /dev/null +++ b/log4php.debug/LoggerBasicConfigurator.php @@ -0,0 +1,80 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/spi/LoggerConfigurator.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/LoggerAppender.php'); +require_once(LOG4PHP_DIR . '/LoggerManager.php'); + +/** + * Use this class to quickly configure the package. + * + *

For file based configuration see {@link LoggerPropertyConfigurator}. + *

For XML based configuration see {@link LoggerDOMConfigurator}. + * + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @since 0.5 + */ +class LoggerBasicConfigurator extends LoggerConfigurator { + + function LoggerBasicConfigurator() + { + return; + } + + /** + * Add a {@link LoggerAppenderConsole} that uses + * the {@link LoggerLayoutTTCC} to the root category. + * + * @param string $url not used here + * @static + */ + function configure($url = null) + { + $root =& LoggerManager::getRootLogger(); + + $appender =& LoggerAppender::singleton('A1', 'LoggerAppenderConsole'); + $layout = LoggerLayout::factory('LoggerLayoutTTCC'); + $appender->setLayout($layout); + + $root->addAppender($appender); + } + + /** + * Reset the default hierarchy to its defaut. + * It is equivalent to + * + * LoggerManager::resetConfiguration(); + * + * + * @see LoggerHierarchy::resetConfiguration() + * @static + */ + function resetConfiguration() + { + LoggerManager::resetConfiguration(); + } +} +?> diff --git a/log4php.debug/LoggerCategory.php b/log4php.debug/LoggerCategory.php new file mode 100644 index 0000000..119e95a --- /dev/null +++ b/log4php.debug/LoggerCategory.php @@ -0,0 +1,572 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerLoggingEvent.php'); + +/** + * This class has been deprecated and replaced by the Logger subclass. + * + * @author VxR + * @version $Revision: 1.17 $ + * @package log4php + * @see Logger + */ +class LoggerCategory { + + /** + * Additivity is set to true by default, that is children inherit the + * appenders of their ancestors by default. + * @var boolean + */ + var $additive = true; + + /** + * @var string fully qualified class name + */ + var $fqcn = 'LoggerCategory'; + + /** + * @var LoggerLevel The assigned level of this category. + */ + var $level = null; + + /** + * @var string name of this category. + */ + var $name = ''; + + /** + * @var Logger The parent of this category. + */ + var $parent = null; + + /** + * @var LoggerHierarchy the object repository + */ + var $repository = null; + + /** + * @var array collection of appenders + * @see LoggerAppender + */ + var $aai = array(); + +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ + + /** + * Constructor. + * + * @param string $name Category name + */ + function LoggerCategory($name) + { + $this->name = $name; + } + + /** + * Add a new Appender to the list of appenders of this Category instance. + * + * @param LoggerAppender $newAppender + */ + function addAppender(&$newAppender) + { + $appenderName = $newAppender->getName(); + $this->aai[$appenderName] =& $newAppender; + } + + /** + * If assertion parameter is false, then logs msg as an error statement. + * + * @param bool $assertion + * @param string $msg message to log + */ + function assertLog($assertion = true, $msg = '') + { + if ($assertion == false) { + $this->error($msg); + } + } + + /** + * Call the appenders in the hierarchy starting at this. + * + * @param LoggerLoggingEvent $event + */ + function callAppenders($event) + { + if (sizeof($this->aai) > 0) { + foreach (array_keys($this->aai) as $appenderName) { + $this->aai[$appenderName]->doAppend($event); + } + } + if ($this->parent != null and $this->getAdditivity()) { + $this->parent->callAppenders($event); + } + } + + /** + * Log a message object with the DEBUG level including the caller. + * + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function debug($message, $caller = null) + { + $debugLevel = LoggerLevel::getLevelDebug(); + if ($this->repository->isDisabled($debugLevel)) { + return; + } + if ($debugLevel->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $debugLevel, $message); + } + } + + /** + * Log a message object with the ERROR level including the caller. + * + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function error($message, $caller = null) + { + $errorLevel = LoggerLevel::getLevelError(); + if ($this->repository->isDisabled($errorLevel)) { + return; + } + if ($errorLevel->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $errorLevel, $message); + } + } + + /** + * Deprecated. Please use LoggerManager::exists() instead. + * + * @param string $name + * @see LoggerManager::exists() + * @deprecated + */ + function exists($name) + { + return LoggerManager::exists($name); + } + + /** + * Log a message object with the FATAL level including the caller. + * + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function fatal($message, $caller = null) + { + $fatalLevel = LoggerLevel::getLevelFatal(); + if ($this->repository->isDisabled($fatalLevel)) { + return; + } + if ($fatalLevel->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $fatalLevel, $message); + } + } + + /** + * This method creates a new logging event and logs the event without further checks. + * + * It should not be called directly. Use {@link info()}, {@link debug()}, {@link warn()}, + * {@link error()} and {@link fatal()} wrappers. + * + * @param string $fqcn Fully Qualified Class Name of the Logger + * @param mixed $caller caller object or caller string id + * @param LoggerLevel $level log level + * @param mixed $message message + * @see LoggerLoggingEvent + */ + function forcedLog($fqcn, $caller, $level, $message) + { + // $fqcn = is_object($caller) ? get_class($caller) : (string)$caller; + $this->callAppenders(new LoggerLoggingEvent($fqcn, $this, $level, $message)); + } + + /** + * Get the additivity flag for this Category instance. + * @return boolean + */ + function getAdditivity() + { + return $this->additive; + } + + /** + * Get the appenders contained in this category as an array. + * @return array collection of appenders + */ + function &getAllAppenders() + { + $appenders = array(); + $appenderNames = array_keys($this->aai); + $enumAppenders = sizeof($appenderNames); + for ($i = 0; $i < $enumAppenders; $i++) { + $appenderName = $appenderNames[$i]; + $appenders[] =& $this->aai[$appenderName]; + } + return $appenders; + } + + /** + * Look for the appender named as name. + * @return LoggerAppender + */ + function &getAppender($name) + { + return $this->aai[$name]; + } + + /** + * Please use the {@link getEffectiveLevel()} method instead. + * @deprecated + */ + function getChainedPriority() + { + return $this->getEffectiveLevel(); + } + + /** + * Please use {@link LoggerManager::getCurrentLoggers()} instead. + * @deprecated + */ + function getCurrentCategories() + { + return LoggerManager::getCurrentLoggers(); + } + + /** + * Please use {@link LoggerManager::getLoggerRepository()} instead. + * @deprecated + */ + function &getDefaultHierarchy() + { + return LoggerManager::getLoggerRepository(); + } + + /** + * @deprecated Use {@link getLoggerRepository()} + * @return LoggerHierarchy + */ + function &getHierarchy() + { + return $this->getLoggerRepository(); + } + + /** + * Starting from this category, search the category hierarchy for a non-null level and return it. + * @see LoggerLevel + * @return LoggerLevel or null + */ + function getEffectiveLevel() + { + for($c = $this; $c != null; $c = $c->parent) { + if($c->level !== null) + return $c->level; + } + return null; + } + + /** + * Retrieve a category with named as the name parameter. + * @return Logger + */ + function &getInstance($name) + { + return LoggerManager::getLogger($name); + } + + /** + * Returns the assigned Level, if any, for this Category. + * @return LoggerLevel or null + */ + function getLevel() + { + return $this->level; + } + + /** + * Return the the repository where this Category is attached. + * @return LoggerHierarchy + */ + function &getLoggerRepository() + { + return $this->repository; + } + + /** + * Return the category name. + * @return string + */ + function getName() + { + return $this->name; + } + + /** + * Returns the parent of this category. + * @return Logger + */ + function &getParent() + { + return $this->parent; + } + + /** + * Please use getLevel() instead. + * @deprecated + */ + function getPriority() + { + return $this->getLevel(); + } + + /** + * Return the inherited ResourceBundle for this category. + */ + function getResourceBundle() + { + return; + } + + /** + * Returns the string resource coresponding to key in this category's inherited resource bundle. + */ + function getResourceBundleString($key) + { + return; + } + + /** + * Return the root of the default category hierrachy. + * @return LoggerRoot + */ + function &getRoot() + { + return LoggerManager::getRootLogger(); + } + + /** + * Log a message object with the INFO Level. + * + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function info($message, $caller = null) + { + $infoLevel = LoggerLevel::getLevelInfo(); + if ($this->repository->isDisabled($infoLevel)) { + return; + } + if ($infoLevel->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $infoLevel, $message); + } + } + + /** + * Is the appender passed as parameter attached to this category? + * + * @param LoggerAppender $appender + */ + function isAttached($appender) + { + return in_array($appender->getName(), array_keys($this->aai)); + } + + /** + * Check whether this category is enabled for the DEBUG Level. + * @return boolean + */ + function isDebugEnabled() + { + $debugLevel = LoggerLevel::getLevelDebug(); + if ($this->repository->isDisabled($debugLevel)) { + return false; + } + return ($debugLevel->isGreaterOrEqual($this->getEffectiveLevel())); + } + + /** + * Check whether this category is enabled for a given Level passed as parameter. + * + * @param LoggerLevel level + * @return boolean + */ + function isEnabledFor($level) + { + if ($this->repository->isDisabled($level)) { + return false; + } + return (bool)($level->isGreaterOrEqual($this->getEffectiveLevel())); + } + + /** + * Check whether this category is enabled for the info Level. + * @return boolean + * @see LoggerLevel + */ + function isInfoEnabled() + { + $infoLevel = LoggerLevel::getLevelInfo(); + if ($this->repository->isDisabled($infoLevel)) { + return false; + } + return ($infoLevel->isGreaterOrEqual($this->getEffectiveLevel())); + } + + /** + * Log a localized and parameterized message. + */ + function l7dlog($priority, $key, $params, $t) + { + return; + } + + /** + * This generic form is intended to be used by wrappers. + * + * @param LoggerLevel $priority a valid level + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function log($priority, $message, $caller = null) + { + if ($this->repository->isDisabled($priority)) { + return; + } + if ($priority->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $priority, $message); + } + } + + /** + * Remove all previously added appenders from this Category instance. + */ + function removeAllAppenders() + { + $appenderNames = array_keys($this->aai); + $enumAppenders = sizeof($appenderNames); + for ($i = 0; $i < $enumAppenders; $i++) { + $this->removeAppender($appenderNames[$i]); + } + } + + /** + * Remove the appender passed as parameter form the list of appenders. + * + * @param mixed $appender can be an appender name or a {@link LoggerAppender} object + */ + function removeAppender($appender) + { + if (is_a($appender, 'loggerappender')) { + $appender->close(); + unset($this->aai[$appender->getName()]); + } elseif (is_string($appender) and isset($this->aai[$appender])) { + $this->aai[$appender]->close(); + unset($this->aai[$appender]); + } + } + + /** + * Set the additivity flag for this Category instance. + * + * @param boolean $additive + */ + function setAdditivity($additive) + { + $this->additive = (bool)$additive; + } + + /** + * @deprecated Please use {@link setLevel()} instead. + * @see setLevel() + */ + function setPriority($priority) + { + $this->setLevel($priority); + } + + /** + * Only the Hiearchy class can set the hiearchy of a + * category. + * + * @param LoggerHierarchy &$repository + */ + function setHierarchy(&$repository) + { + $this->repository =& $repository; + } + + /** + * Set the level of this Category. + * + * @param LoggerLevel $level a level string or a level costant + */ + function setLevel($level) + { + $this->level = $level; + } + + /** + * Set the resource bundle to be used with localized logging methods + */ + function setResourceBundle($bundle) + { + return; + } + + /** + * @deprecated use {@link LoggerManager::shutdown()} instead. + * @see LoggerManager::shutdown() + */ + function shutdown() + { + LoggerManager::shutdown(); + } + + /** + * Log a message with the WARN level. + * + * @param mixed $message message + * @param mixed $caller caller object or caller string id + */ + function warn($message, $caller = null) + { + $warnLevel = LoggerLevel::getLevelWarn(); + if ($this->repository->isDisabled($warnLevel)) { + return; + } + if ($warnLevel->isGreaterOrEqual($this->getEffectiveLevel())) { + $this->forcedLog($this->fqcn, $caller, $warnLevel, $message); + } + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerDefaultCategoryFactory.php b/log4php.debug/LoggerDefaultCategoryFactory.php new file mode 100644 index 0000000..4962466 --- /dev/null +++ b/log4php.debug/LoggerDefaultCategoryFactory.php @@ -0,0 +1,52 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/spi/LoggerFactory.php'); +require_once(LOG4PHP_DIR . '/Logger.php'); + +/** + * Creates instances of {@link Logger} with a given name. + * + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @since 0.5 + */ +class LoggerDefaultCategoryFactory extends LoggerFactory { + + function LoggerDefaultCategoryFactory() + { + return; + } + + /** + * @param string $name + * @return Logger + */ + function makeNewLoggerInstance($name) + { + return new Logger($name); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/LoggerHierarchy.php b/log4php.debug/LoggerHierarchy.php new file mode 100644 index 0000000..b3b64e0 --- /dev/null +++ b/log4php.debug/LoggerHierarchy.php @@ -0,0 +1,388 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); +require_once(LOG4PHP_DIR . '/LoggerRoot.php'); +require_once(LOG4PHP_DIR . '/or/LoggerRendererMap.php'); +require_once(LOG4PHP_DIR . '/LoggerDefaultCategoryFactory.php'); + +/** + * This class is specialized in retrieving loggers by name and also maintaining + * the logger hierarchy. + * + *

The casual user does not have to deal with this class directly.

+ * + *

The structure of the logger hierarchy is maintained by the + * getLogger method. The hierarchy is such that children link + * to their parent but parents do not have any pointers to their + * children. Moreover, loggers can be instantiated in any order, in + * particular descendant before ancestor.

+ * + *

In case a descendant is created before a particular ancestor, + * then it creates a provision node for the ancestor and adds itself + * to the provision node. Other descendants of the same ancestor add + * themselves to the previously created provision node.

+ * + * @author VxR + * @version $Revision: 1.20 $ + * @package log4php + */ +class LoggerHierarchy { + + /** + * @var object currently unused + */ + var $defaultFactory; + + /** + * @var boolean activate internal logging + * @see LoggerLog + */ + var $debug = false; + + /** + * @var array hierarchy tree. saves here all loggers + */ + var $ht = array(); + + /** + * @var LoggerRoot + */ + var $root = null; + + /** + * @var LoggerRendererMap + */ + var $rendererMap; + + /** + * @var LoggerLevel main level threshold + */ + var $threshold; + + /** + * @var boolean currently unused + */ + var $emittedNoAppenderWarning = false; + + /** + * @var boolean currently unused + */ + var $emittedNoResourceBundleWarning = false; + + +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ +/* --------------------------------------------------------------------------*/ + + function &singleton() + { + static $instance; + + if (!isset($instance)) + $instance = new LoggerHierarchy(new LoggerRoot()); + return $instance; + } + + /** + * Create a new logger hierarchy. + * @param object $root the root logger + */ + function LoggerHierarchy($root) + { + $this->root =& $root; + // Enable all level levels by default. + $this->setThreshold(LoggerLevel::getLevelAll()); + $this->root->setHierarchy($this); + $this->rendererMap = new LoggerRendererMap(); + $this->defaultFactory = new LoggerDefaultCategoryFactory(); + } + + /** + * Add a HierarchyEventListener event to the repository. + * Not Yet Impl. + */ + function addHierarchyEventListener($listener) + { + return; + } + + /** + * Add an object renderer for a specific class. + * Not Yet Impl. + */ + function addRenderer($classToRender, $or) + { + $this->rendererMap->put($classToRender, $or); + } + + /** + * This call will clear all logger definitions from the internal hashtable. + */ + function clear() + { + $this->ht = array(); + } + + function emitNoAppenderWarning($cat) + { + return; + } + + /** + * Check if the named logger exists in the hierarchy. + * @param string $name + * @return boolean + */ + function exists($name) + { + return in_array($name, array_keys($this->ht)); + } + + function fireAddAppenderEvent($logger, $appender) + { + return; + } + + /** + * @deprecated Please use {@link getCurrentLoggers()} instead. + */ + function &getCurrentCategories() + { + return $this->getCurrentLoggers(); + } + + /** + * Returns all the currently defined categories in this hierarchy as an array. + * @return array + */ + function &getCurrentLoggers() + { + $loggers = array(); + $loggerNames = array_keys($this->ht); + $enumLoggers = sizeof($loggerNames); + for ($i = 0; $i < $enumLoggers; $i++) { + $loggerName = $loggerNames[$i]; + $loggers[] =& $this->ht[$loggerName]; + } + return $loggers; + } + + /** + * Return a new logger instance named as the first parameter using the default factory. + * + * @param string $name logger name + * @param LoggerFactory $factory a {@link LoggerFactory} instance or null + * @return Logger + */ + function &getLogger($name, $factory = null) + { + if ($factory === null) { + return $this->getLoggerByFactory($name, $this->defaultFactory); + } else { + return $this->getLoggerByFactory($name, $factory); + } + } + + /** + * Return a new logger instance named as the first parameter using the default factory. + * + * @param string $name logger name + * @return Logger + * @todo merge with {@link getLogger()} + */ + function &getLoggerByFactory($name, $factory) + { + if (!isset($this->ht[$name])) { + LoggerLog::debug("LoggerHierarchy::getLoggerByFactory():name=[$name]:factory=[".get_class($factory)."] creating a new logger..."); + $this->ht[$name] = $factory->makeNewLoggerInstance($name); + $this->ht[$name]->setHierarchy($this); + $nodes = explode('.', $name); + $firstNode = array_shift($nodes); + if ( $firstNode != $name and isset($this->ht[$firstNode])) { + LoggerLog::debug("LoggerHierarchy::getLogger($name) parent is now [$firstNode]"); + $this->ht[$name]->parent =& $this->ht[$firstNode]; + } else { + LoggerLog::debug("LoggerHierarchy::getLogger($name) parent is now [root]"); + $this->ht[$name]->parent =& $this->root; + } + if (sizeof($nodes) > 0) { + // find parent node + foreach ($nodes as $node) { + $parentNode = "$firstNode.$node"; + if (isset($this->ht[$parentNode]) and $parentNode != $name) { + LoggerLog::debug("LoggerHierarchy::getLogger($name) parent is now [$parentNode]"); + $this->ht[$name]->parent =& $this->ht[$parentNode]; + } + $firstNode .= ".$node"; + } + } + // update children + /* + $children = array(); + foreach (array_keys($this->ht) as $nodeName) { + if ($nodeName != $name and substr($nodeName, 0, strlen($name)) == $name) { + $children[] = $nodeName; + } + } + */ + } + return $this->ht[$name]; + } + + /** + * @return LoggerRendererMap Get the renderer map for this hierarchy. + */ + function &getRendererMap() + { + return $this->rendererMap; + } + + /** + * @return LoggerRoot Get the root of this hierarchy. + */ + function &getRootLogger() + { + if (!isset($this->root) or $this->root == null) + $this->root = new LoggerRoot(); + return $this->root; + } + + /** + * @return LoggerLevel Returns the threshold Level. + */ + function getThreshold() + { + return $this->threshold; + } + + /** + * This method will return true if this repository is disabled + * for level object passed as parameter and false otherwise. + * @return boolean + */ + function isDisabled($level) + { + return ($this->threshold->level > $level->level); + } + + /** + * @deprecated Deprecated with no replacement. + */ + function overrideAsNeeded($override) + { + return; + } + + /** + * Reset all values contained in this hierarchy instance to their + * default. + * + * This removes all appenders from all categories, sets + * the level of all non-root categories to null, + * sets their additivity flag to true and sets the level + * of the root logger to {@link LOGGER_LEVEL_DEBUG}. Moreover, + * message disabling is set its default "off" value. + * + *

Existing categories are not removed. They are just reset. + * + *

This method should be used sparingly and with care as it will + * block all logging until it is completed.

+ */ + function resetConfiguration() + { + $root =& $this->getRootLogger(); + + $root->setLevel(LoggerLevel::getLevelDebug()); + $this->setThreshold(LoggerLevel::getLevelAll()); + $this->shutDown(); + $loggers =& $this->getCurrentLoggers(); + $enumLoggers = sizeof($loggers); + for ($i = 0; $i < $enumLoggers; $i++) { + $loggers[$i]->setLevel(null); + $loggers[$i]->setAdditivity(true); + $loggers[$i]->setResourceBundle(null); + } + $this->rendererMap->clear(); + } + + /** + * @deprecated Deprecated with no replacement. + */ + function setDisableOverride($override) + { + return; + } + + /** + * Used by subclasses to add a renderer to the hierarchy passed as parameter. + * @param string $renderedClass a LoggerRenderer class name + * @param LoggerRenderer $renderer + * + */ + function setRenderer($renderedClass, $renderer) + { + $this->rendererMap->put($renderedClass, $renderer); + } + + /** + * set a new threshold level + * + * @param LoggerLevel $l + */ + function setThreshold($l) + { + if ($l !== null) + $this->threshold = $l; + } + + /** + * Shutting down a hierarchy will safely close and remove + * all appenders in all categories including the root logger. + * + *

Some appenders such as {@link LoggerSocketAppender} + * need to be closed before the + * application exists. Otherwise, pending logging events might be + * lost. + * + *

The shutdown method is careful to close nested + * appenders before closing regular appenders. This is allows + * configurations where a regular appender is attached to a logger + * and again to a nested appender. + */ + function shutdown() + { + $this->root->removeAllAppenders(); + $cats =& $this->getCurrentLoggers(); + $enumCats = sizeof($cats); + if ($enumCats > 0) { + for ($i = 0; $i < $enumCats; $i++) { + $cats[$i]->removeAllAppenders(); + } + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerLayout.php b/log4php.debug/LoggerLayout.php new file mode 100644 index 0000000..a5f774f --- /dev/null +++ b/log4php.debug/LoggerLayout.php @@ -0,0 +1,98 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + * Extend this abstract class to create your own log layout format. + * + * @author VxR + * @version $Revision: 1.10 $ + * @package log4php + * @abstract + */ +class LoggerLayout { + + /** + * Creates LoggerLayout instances with the given class name. + * + * @param string $class + * @return LoggerLayout + */ + function factory($class) + { + if (!empty($class)) { + $class = basename($class); + if (!class_exists($class)) + @include_once(LOG4PHP_DIR . "/layouts/{$class}.php"); + if (class_exists($class)) + return new $class(); + } + return null; + } + + /** + * Override this method + */ + function activateOptions() + { + // override; + } + + /** + * Override this method to create your own layout format. + * + * @param LoggerLoggingEvent + * @return string + */ + function format($event) + { + return $event->getRenderedMessage(); + } + + /** + * Returns the content type output by this layout. + * @return string + */ + function getContentType() + { + return "text/plain"; + } + + /** + * Returns the footer for the layout format. + * @return string + */ + function getFooter() + { + return null; + } + + /** + * Returns the header for the layout format. + * @return string + */ + function getHeader() + { + return null; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerLevel.php b/log4php.debug/LoggerLevel.php new file mode 100644 index 0000000..a3e4803 --- /dev/null +++ b/log4php.debug/LoggerLevel.php @@ -0,0 +1,264 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +define('LOG4PHP_LEVEL_OFF_INT', 2147483647); +define('LOG4PHP_LEVEL_FATAL_INT', 50000); +define('LOG4PHP_LEVEL_ERROR_INT', 40000); +define('LOG4PHP_LEVEL_WARN_INT', 30000); +define('LOG4PHP_LEVEL_INFO_INT', 20000); +define('LOG4PHP_LEVEL_DEBUG_INT', 10000); +define('LOG4PHP_LEVEL_ALL_INT', -2147483648); + +/** + * Defines the minimum set of levels recognized by the system, that is + * OFF, FATAL, ERROR, + * WARN, INFODEBUG and + * ALL. + * + *

The LoggerLevel class may be subclassed to define a larger + * level set.

+ * + * @author VxR + * @version $Revision: 1.11 $ + * @package log4php + * @since 0.5 + */ +class LoggerLevel { + + /** + * @var integer + */ + var $level; + + /** + * @var string + */ + var $levelStr; + + /** + * @var integer + */ + var $syslogEquivalent; + + /** + * Constructor + * + * @param integer $level + * @param string $levelStr + * @param integer $syslogEquivalent + */ + function LoggerLevel($level, $levelStr, $syslogEquivalent) + { + $this->level = $level; + $this->levelStr = $levelStr; + $this->syslogEquivalent = $syslogEquivalent; + } + + /** + * Two priorities are equal if their level fields are equal. + * + * @param object $o + * @return boolean + */ + function equals($o) + { + if (is_a($o, 'loggerlevel')) { + return ($this->level == $o->level); + } else { + return false; + } + } + + /** + * Returns an Off Level + * @static + * @return LoggerLevel + */ + function &getLevelOff() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_OFF_INT, 'OFF', 0); + return $level; + } + + /** + * Returns a Fatal Level + * @static + * @return LoggerLevel + */ + function &getLevelFatal() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_FATAL_INT, 'FATAL', 0); + return $level; + } + + /** + * Returns an Error Level + * @static + * @return LoggerLevel + */ + function &getLevelError() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_ERROR_INT, 'ERROR', 3); + return $level; + } + + /** + * Returns a Warn Level + * @static + * @return LoggerLevel + */ + function &getLevelWarn() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_WARN_INT, 'WARN', 4); + return $level; + } + + /** + * Returns an Info Level + * @static + * @return LoggerLevel + */ + function &getLevelInfo() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_INFO_INT, 'INFO', 6); + return $level; + } + + /** + * Returns a Debug Level + * @static + * @return LoggerLevel + */ + function &getLevelDebug() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_DEBUG_INT, 'DEBUG', 7); + return $level; + } + + /** + * Returns an All Level + * @static + * @return LoggerLevel + */ + function &getLevelAll() + { + static $level; + if (!isset($level)) $level = new LoggerLevel(LOG4PHP_LEVEL_ALL_INT, 'ALL', 7); + return $level; + } + + /** + * Return the syslog equivalent of this priority as an integer. + * @final + * @return integer + */ + function getSyslogEquivalent() + { + return $this->syslogEquivalent; + } + + /** + * Returns true if this level has a higher or equal + * level than the level passed as argument, false + * otherwise. + * + *

You should think twice before overriding the default + * implementation of isGreaterOrEqual method. + * + * @param LoggerLevel $r + * @return boolean + */ + function isGreaterOrEqual($r) + { + return $this->level >= $r->level; + } + + /** + * Returns the string representation of this priority. + * @return string + * @final + */ + function toString() + { + return $this->levelStr; + } + + /** + * Returns the integer representation of this level. + * @return integer + */ + function toInt() + { + return $this->level; + } + + /** + * Convert the string passed as argument to a level. If the + * conversion fails, then this method returns a DEBUG Level. + * + * @param mixed $arg + * @param LoggerLevel $default + * @static + */ + function &toLevel($arg, $defaultLevel = null) + { + if ($defaultLevel === null) { + return LoggerLevel::toLevel($arg, LoggerLevel::getLevelDebug()); + } else { + if (is_int($arg)) { + switch($arg) { + case LOG4PHP_LEVEL_ALL_INT: return LoggerLevel::getLevelAll(); + case LOG4PHP_LEVEL_DEBUG_INT: return LoggerLevel::getLevelDebug(); + case LOG4PHP_LEVEL_INFO_INT: return LoggerLevel::getLevelInfo(); + case LOG4PHP_LEVEL_WARN_INT: return LoggerLevel::getLevelWarn(); + case LOG4PHP_LEVEL_ERROR_INT: return LoggerLevel::getLevelError(); + case LOG4PHP_LEVEL_FATAL_INT: return LoggerLevel::getLevelFatal(); + case LOG4PHP_LEVEL_OFF_INT: return LoggerLevel::getLevelOff(); + default: return $defaultLevel; + } + } else { + switch(strtoupper($arg)) { + case 'ALL': return LoggerLevel::getLevelAll(); + case 'DEBUG': return LoggerLevel::getLevelDebug(); + case 'INFO': return LoggerLevel::getLevelInfo(); + case 'WARN': return LoggerLevel::getLevelWarn(); + case 'ERROR': return LoggerLevel::getLevelError(); + case 'FATAL': return LoggerLevel::getLevelFatal(); + case 'OFF': return LoggerLevel::getLevelOff(); + default: return $defaultLevel; + } + } + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerLog.php b/log4php.debug/LoggerLog.php new file mode 100644 index 0000000..558129e --- /dev/null +++ b/log4php.debug/LoggerLog.php @@ -0,0 +1,99 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + * Helper class for internal logging + * + *

It uses php {@link PHP_MANUAL#trigger_error trigger_error()} function + * to output messages.

+ *

You need to recode methods to output messages in a different way.

+ * + * @author VxR + * @version $Revision: 1.9 $ + * @package log4php + */ +class LoggerLog { + + /** + * Log if debug is enabled. + * + * Log using php {@link PHP_MANUAL#trigger_error trigger_error()} function + * with E_USER_NOTICE level by default. + * + * @param string $message log message + * @param integer $errLevel level to log + * @static + */ + function log($message, $errLevel = E_USER_NOTICE) + { + if (LoggerLog::internalDebugging()) + trigger_error($message, $errLevel); + } + + function internalDebugging($value = null) + { + static $debug = false; + + if (is_bool($value)) + $debug = $value; + return $debug; + } + + /** + * Report a debug message. + * + * @param string $message log message + * @static + * @since 0.3 + */ + function debug($message) + { + LoggerLog::log($message, E_USER_NOTICE); + } + + /** + * Report an error message. + * + * @param string $message log message + * @static + * @since 0.3 + */ + function error($message) + { + trigger_error($message, E_USER_ERROR); + } + + /** + * Report a warning message. + * + * @param string $message log message + * @static + * @since 0.3 + */ + function warn($message) + { + trigger_error($message, E_USER_WARNING); + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerMDC.php b/log4php.debug/LoggerMDC.php new file mode 100644 index 0000000..9ebca41 --- /dev/null +++ b/log4php.debug/LoggerMDC.php @@ -0,0 +1,129 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + + +define('LOGGER_MDC_HT_SIZE', 7); + +/** + * This is the global repository of user mappings + */ +$GLOBALS['log4php.LoggerMDC.ht'] = array(); + +/** + * The LoggerMDC class is similar to the {@link LoggerNDC} class except that it is + * based on a map instead of a stack. It provides mapped diagnostic contexts. + * + * A Mapped Diagnostic Context, or + * MDC in short, is an instrument for distinguishing interleaved log + * output from different sources. Log output is typically interleaved + * when a server handles multiple clients near-simultaneously. + * + *

The MDC is managed on a per thread basis. + * + * @author VxR + * @version $Revision: 1.4 $ + * @since 0.3 + * @package log4php + */ +class LoggerMDC { + + /** + * Put a context value as identified with the key parameter into the current thread's + * context map. + * + *

If the current thread does not have a context map it is + * created as a side effect.

+ * + *

Note that you cannot put more than {@link LOGGER_MDC_HT_SIZE} keys.

+ * + * @param string $key the key + * @param string $value the value + * @static + */ + function put($key, $value) + { + if ( sizeof($GLOBALS['log4php.LoggerMDC.ht']) < LOGGER_MDC_HT_SIZE ) + $GLOBALS['log4php.LoggerMDC.ht'][$key] = $value; + } + + /** + * Get the context identified by the key parameter. + * + *

You can use special key identifiers to map values in + * PHP $_SERVER and $_ENV vars. Just put a 'server.' or 'env.' + * followed by the var name you want to refer.

+ * + *

This method has no side effects.

+ * + * @param string $key + * @return string + * @static + */ + function get($key) + { + LoggerLog::debug("LoggerMDC::get() key='$key'"); + + if (!empty($key)) { + if (strpos($key, 'server.') === 0) { + $varName = substr($key, 7); + + LoggerLog::debug("LoggerMDC::get() a _SERVER[$varName] is requested."); + + return $_SERVER[$varName]; + } elseif (strpos($key, 'env.') === 0) { + + $varName = substr($key, 4); + + LoggerLog::debug("LoggerMDC::get() a _ENV[$varName] is requested."); + + return $_ENV[$varName]; + } elseif (isset($GLOBALS['log4php.LoggerMDC.ht'][$key])) { + + LoggerLog::debug("LoggerMDC::get() a user key is requested."); + + return $GLOBALS['log4php.LoggerMDC.ht'][$key]; + } + } + return ''; + } + + /** + * Remove the the context identified by the key parameter. + * + * It only affects user mappings. + * + * @param string $key + * @return string + * @static + */ + function remove($key) + { + unset($GLOBALS['log4php.LoggerMDC.ht'][$key]); + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerManager.php b/log4php.debug/LoggerManager.php new file mode 100644 index 0000000..cd208fc --- /dev/null +++ b/log4php.debug/LoggerManager.php @@ -0,0 +1,262 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * LOG4PHP_DIR points to the log4php root directory. + * + * If not defined it will be set automatically when the first package classfile + * is included + * + * @var string + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/LoggerHierarchy.php'); + +/** + * Use the LoggerManager to get Logger instances. + * + * @author VxR + * @version $Revision: 1.18 $ + * @package log4php + * @see Logger + * @todo create a configurator selector + */ +class LoggerManager { + + /** + * check if a given logger exists. + * + * @param string $name logger name + * @static + * @return boolean + */ + function exists($name) + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->exists($name); + } + + /** + * Returns an array this whole Logger instances. + * + * @static + * @see Logger + * @return array + */ + function getCurrentLoggers() + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->getCurrentLoggers(); + } + + /** + * Returns the root logger. + * + * @static + * @return object + * @see LoggerRoot + */ + function &getRootLogger() + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->getRootLogger(); + } + + /** + * Returns the specified Logger. + * + * @param string $name logger name + * @param LoggerFactory $factory a {@link LoggerFactory} instance or null + * @static + * @return Logger + */ + function &getLogger($name, $factory = null) + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->getLogger($name, $factory); + } + + /** + * Returns the LoggerHierarchy. + * + * @static + * @return LoggerHierarchy + */ + function &getLoggerRepository() + { + return LoggerHierarchy::singleton(); + } + + + /** + * Destroy loggers object tree. + * + * @static + * @return boolean + */ + function resetConfiguration() + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->resetConfiguration(); + } + + /** + * Does nothing. + * @static + */ + function setRepositorySelector($selector, $guard) + { + return; + } + + /** + * Safely close all appenders. + * @static + */ + function shutdown() + { + $repository =& LoggerManager::getLoggerRepository(); + return $repository->shutdown(); + } +} + +// --------------------------------------------------------------------------- +// --------------------------------------------------------------------------- +// --------------------------------------------------------------------------- + +if (!defined('LOG4PHP_DEFAULT_INIT_OVERRIDE')) { + if (isset($_ENV['log4php.defaultInitOverride'])) { + /** + * @ignore + */ + define('LOG4PHP_DEFAULT_INIT_OVERRIDE', + LoggerOptionConverter::toBoolean($_ENV['log4php.defaultInitOverride'], false) + ); + } elseif (isset($GLOBALS['log4php.defaultInitOverride'])) { + /** + * @ignore + */ + define('LOG4PHP_DEFAULT_INIT_OVERRIDE', + LoggerOptionConverter::toBoolean($GLOBALS['log4php.defaultInitOverride'], false) + ); + } else { + /** + * Controls init execution + * + * With this constant users can skip the default init procedure that is + * called when this file is included. + * + *

If it is not user defined, log4php tries to autoconfigure using (in order):

+ * + * - the $_ENV['log4php.defaultInitOverride'] variable. + * - the $GLOBALS['log4php.defaultInitOverride'] global variable. + * - defaults to false + * + * @var boolean + */ + define('LOG4PHP_DEFAULT_INIT_OVERRIDE', false); + } +} + +if (!defined('LOG4PHP_CONFIGURATION')) { + if (isset($_ENV['log4php.configuration'])) { + /** + * @ignore + */ + define('LOG4PHP_CONFIGURATION', trim($_ENV['log4php.configuration'])); + } else { + /** + * Configuration file. + * + *

This constant tells configurator classes where the configuration + * file is located.

+ *

If not set by user, log4php tries to set it automatically using + * (in order):

+ * + * - the $_ENV['log4php.configuration'] enviroment variable. + * - defaults to 'log4php.properties'. + * + * @var string + */ + define('LOG4PHP_CONFIGURATION', 'log4php.properties'); + } +} + +if (!defined('LOG4PHP_CONFIGURATOR_CLASS')) { + if ( strtolower(substr( LOG4PHP_CONFIGURATION, -4 )) == '.xml') { + /** + * @ignore + */ + define('LOG4PHP_CONFIGURATOR_CLASS', LOG4PHP_DIR . '/xml/LoggerDOMConfigurator'); + } else { + /** + * Holds the configurator class name. + * + *

This constant is set with the fullname (path included but non the + * .php extension) of the configurator class that init procedure will use.

+ *

If not set by user, log4php tries to set it automatically.

+ *

If {@link LOG4PHP_CONFIGURATION} has '.xml' extension set the + * constants to '{@link LOG4PHP_DIR}/xml/{@link LoggerDOMConfigurator}'.

+ *

Otherwise set the constants to + * '{@link LOG4PHP_DIR}/{@link LoggerPropertyConfigurator}'.

+ * + *

Security Note: classfile pointed by this constant will be brutally + * included with a: + * @include_once(LOG4PHP_CONFIGURATOR_CLASS . ".php");

+ * + * @var string + */ + define('LOG4PHP_CONFIGURATOR_CLASS', LOG4PHP_DIR . '/LoggerPropertyConfigurator'); + } +} + +if (!LOG4PHP_DEFAULT_INIT_OVERRIDE) { + if (!LoggerManagerDefaultInit()) + LoggerLog::warn("LOG4PHP main() Default Init failed."); +} + +/** + * Default init procedure. + * + *

This procedure tries to configure the {@link LoggerHierarchy} using the + * configurator class defined via {@link LOG4PHP_CONFIGURATOR_CLASS} that tries + * to load the configurator file defined in {@link LOG4PHP_CONFIGURATION}. + * If something goes wrong a warn is raised.

+ *

Users can skip this procedure using {@link LOG4PHP_DEFAULT_INIT_OVERRIDE} + * constant.

+ * + * @return boolean + */ +function LoggerManagerDefaultInit() +{ + $configuratorClass = basename(LOG4PHP_CONFIGURATOR_CLASS); + if (!class_exists($configuratorClass)) { + @include_once(LOG4PHP_CONFIGURATOR_CLASS . ".php"); + } + if (class_exists($configuratorClass)) { + + return call_user_func(array($configuratorClass, 'configure'), LOG4PHP_CONFIGURATION); + + } else { + LoggerLog::warn("LoggerManagerDefaultInit() Configurator '{$configuratorClass}' doesnt exists"); + return false; + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/LoggerNDC.php b/log4php.debug/LoggerNDC.php new file mode 100644 index 0000000..ac94ee4 --- /dev/null +++ b/log4php.debug/LoggerNDC.php @@ -0,0 +1,240 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +define('LOGGER_NDC_HT_SIZE', 7); + +/** + * This is the global repository of NDC stack + */ +$GLOBALS['log4php.LoggerNDC.ht'] = array(); + +/** + * This is the max depth of NDC stack + */ +$GLOBALS['log4php.LoggerNDC.maxDepth'] = LOGGER_NDC_HT_SIZE; + + +/** + * The NDC class implements nested diagnostic contexts as + * defined by Neil Harrison in the article "Patterns for Logging + * Diagnostic Messages" part of the book "Pattern Languages of + * Program Design 3" edited by Martin et al. + * + *

A Nested Diagnostic Context, or NDC in short, is an instrument + * to distinguish interleaved log output from different sources. Log + * output is typically interleaved when a server handles multiple + * clients near-simultaneously. + * + *

Interleaved log output can still be meaningful if each log entry + * from different contexts had a distinctive stamp. This is where NDCs + * come into play. + * + *

Note that NDCs are managed on a per thread + * basis. NDC operations such as {@link push()}, {@link pop()}, + * {@link clear()}, {@link getDepth()} and {@link setMaxDepth()} + * affect the NDC of the current thread only. NDCs of other + * threads remain unaffected. + * + *

For example, a servlet can build a per client request NDC + * consisting the clients host name and other information contained in + * the the request. Cookies are another source of distinctive + * information. To build an NDC one uses the {@link push()} + * operation.

+ * + * Simply put, + * + * - Contexts can be nested. + * - When entering a context, call + * LoggerNDC::push() + * As a side effect, if there is no nested diagnostic context for the + * current thread, this method will create it. + * - When leaving a context, call + * LoggerNDC::pop() + * - When exiting a thread make sure to call {@link remove()} + * + *

There is no penalty for forgetting to match each + * push operation with a corresponding pop, + * except the obvious mismatch between the real application context + * and the context set in the NDC.

+ * + *

If configured to do so, {@link LoggerPatternLayout} and {@link LoggerLayoutTTCC} + * instances automatically retrieve the nested diagnostic + * context for the current thread without any user intervention. + * Hence, even if a servlet is serving multiple clients + * simultaneously, the logs emanating from the same code (belonging to + * the same category) can still be distinguished because each client + * request will have a different NDC tag.

+ * + * + * @author VxR + * @version $Revision: 1.5 $ + * @package log4php + * @since 0.3 + */ +class LoggerNDC { + + /** + * Clear any nested diagnostic information if any. This method is + * useful in cases where the same thread can be potentially used + * over and over in different unrelated contexts. + * + *

This method is equivalent to calling the {@link setMaxDepth()} + * method with a zero maxDepth argument. + * + * @static + */ + function clear() + { + LoggerLog::debug("LoggerNDC::clear()"); + + $GLOBALS['log4php.LoggerNDC.ht'] = array(); + } + + /** + * Never use this method directly, use the {@link LoggerLoggingEvent::getNDC()} method instead. + * @static + * @return array + */ + function get() + { + LoggerLog::debug("LoggerNDC::get()"); + + return $GLOBALS['log4php.LoggerNDC.ht']; + } + + /** + * Get the current nesting depth of this diagnostic context. + * + * @see setMaxDepth() + * @return integer + * @static + */ + function getDepth() + { + LoggerLog::debug("LoggerNDC::getDepth()"); + + return sizeof($GLOBALS['log4php.LoggerNDC.ht']); + } + + /** + * Clients should call this method before leaving a diagnostic + * context. + * + *

The returned value is the value that was pushed last. If no + * context is available, then the empty string "" is returned.

+ * + * @return string The innermost diagnostic context. + * @static + */ + function pop() + { + LoggerLog::debug("LoggerNDC::pop()"); + + if (sizeof($GLOBALS['log4php.LoggerNDC.ht']) > 0) { + return array_pop($GLOBALS['log4php.LoggerNDC.ht']); + } else { + return ''; + } + } + + /** + * Looks at the last diagnostic context at the top of this NDC + * without removing it. + * + *

The returned value is the value that was pushed last. If no + * context is available, then the empty string "" is returned.

+ * @return string The innermost diagnostic context. + * @static + */ + function peek() + { + LoggerLog::debug("LoggerNDC::peek()"); + + if (sizeof($GLOBALS['log4php.LoggerNDC.ht']) > 0) { + return end($GLOBALS['log4php.LoggerNDC.ht']); + } else { + return ''; + } + } + + /** + * Push new diagnostic context information for the current thread. + * + *

The contents of the message parameter is + * determined solely by the client. + * + * @param string $message The new diagnostic context information. + * @static + */ + function push($message) + { + LoggerLog::debug("LoggerNDC::push()"); + + array_push($GLOBALS['log4php.LoggerNDC.ht'], (string)$message); + } + + /** + * Remove the diagnostic context for this thread. + * @static + */ + function remove() + { + LoggerLog::debug("LoggerNDC::remove()"); + + LoggerNDC::clear(); + } + + /** + * Set maximum depth of this diagnostic context. If the current + * depth is smaller or equal to maxDepth, then no + * action is taken. + * + *

This method is a convenient alternative to multiple + * {@link pop()} calls. Moreover, it is often the case that at + * the end of complex call sequences, the depth of the NDC is + * unpredictable. The {@link setMaxDepth()} method circumvents + * this problem. + * + * @param integer $maxDepth + * @see getDepth() + * @static + */ + function setMaxDepth($maxDepth) + { + LoggerLog::debug("LoggerNDC::setMaxDepth() maxDepth='$maxDepth'"); + + $maxDepth = (int)$maxDepth; + if ($maxDepth <= LOGGER_NDC_HT_SIZE) { + if (LoggerNDC::getDepth() > $maxDepth) { + $GLOBALS['log4php.LoggerNDC.ht'] = array_slice($GLOBALS['log4php.LoggerNDC.ht'], $maxDepth); + } + $GLOBALS['log4php.LoggerNDC.maxDepth'] = $maxDepth; + } + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerPropertyConfigurator.php b/log4php.debug/LoggerPropertyConfigurator.php new file mode 100644 index 0000000..9896439 --- /dev/null +++ b/log4php.debug/LoggerPropertyConfigurator.php @@ -0,0 +1,650 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/config/LoggerPropertySetter.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/or/LoggerObjectRenderer.php'); +require_once(LOG4PHP_DIR . '/or/LoggerRendererMap.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerConfigurator.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php'); +require_once(LOG4PHP_DIR . '/LoggerAppender.php'); +require_once(LOG4PHP_DIR . '/LoggerDefaultCategoryFactory.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); +require_once(LOG4PHP_DIR . '/LoggerManager.php'); + +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_CATEGORY_PREFIX', "log4php.category."); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_PREFIX', "log4php.logger."); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_FACTORY_PREFIX', "log4php.factory"); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ADDITIVITY_PREFIX', "log4php.additivity."); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_CATEGORY_PREFIX', "log4php.rootCategory"); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_LOGGER_PREFIX', "log4php.rootLogger"); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_APPENDER_PREFIX', "log4php.appender."); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_RENDERER_PREFIX', "log4php.renderer."); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_THRESHOLD_PREFIX', "log4php.threshold"); + +/** + * Key for specifying the {@link LoggerFactory}. + */ +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_FACTORY_KEY', "log4php.loggerFactory"); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_DEBUG_KEY', "log4php.debug"); +define('LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_INTERNAL_ROOT_NAME', "root"); + + + +/** + * Allows the configuration of log4php from an external file. + * + * See {@link doConfigure()} for the expected format. + * + *

It is sometimes useful to see how log4php is reading configuration + * files. You can enable log4php internal logging by defining the + * log4php.debug variable.

+ * + *

The LoggerPropertyConfigurator does not handle the + * advanced configuration features supported by the {@link LoggerDOMConfigurator} + * such as support for {@link LoggerFilter}, + custom {@link LoggerErrorHandlers}, nested appenders such as the + {@link Logger AsyncAppender}, + * etc. + * + *

All option values admit variable substitution. The + * syntax of variable substitution is similar to that of Unix + * shells. The string between an opening "${" and + * closing "}" is interpreted as a key. The value of + * the substituted variable can be defined as a system property or in + * the configuration file itself. The value of the key is first + * searched in the defined constants, in the enviroments variables + * and if not found there, it is + * then searched in the configuration file being parsed. The + * corresponding value replaces the ${variableName} sequence.

+ *

For example, if $_ENV['home'] env var is set to + * /home/xyz, then every occurrence of the sequence + * ${home} will be interpreted as + * /home/xyz. See {@link LoggerOptionConverter::getSystemProperty()} + * for details.

+ * + * @author VxR + * @version $Revision: 1.6 $ + * @package log4php + * @since 0.5 + */ +class LoggerPropertyConfigurator extends LoggerConfigurator { + + /** + * @var LoggerFactory + */ + var $loggerFactory = null; + + /** + * Constructor + */ + function LoggerPropertyConfigurator() + { + $this->loggerFactory = new LoggerDefaultCategoryFactory(); + } + + /** + * Configure the default repository using the resource pointed by url. + * Url is any valid resurce as defined in {@link PHP_MANUAL#file} function. + * Note that the resource will be search with use_include_path parameter + * set to "1". + * + * @param string $url + * @return boolean configuration result + * @static + */ + function configure($url = '') + { + $configurator = new LoggerPropertyConfigurator(); + $repository =& LoggerManager::getLoggerRepository(); + return $configurator->doConfigure($url, $repository); + } + + /** + * Read configuration from a file. + * + *

The function {@link PHP_MANUAL#parse_ini_file} is used to read the + * file.

+ * + * The existing configuration is not cleared nor reset. + * If you require a different behavior, then call + * {@link LoggerManager::resetConfiguration()} + * method before calling {@link doConfigure()}. + * + *

The configuration file consists of statements in the format + * key=value. The syntax of different configuration + * elements are discussed below. + * + *

Repository-wide threshold

+ * + *

The repository-wide threshold filters logging requests by level + * regardless of logger. The syntax is: + * + *

+     * log4php.threshold=[level]
+     * 
+ * + *

The level value can consist of the string values OFF, FATAL, + * ERROR, WARN, INFO, DEBUG, ALL or a custom level value. A + * custom level value can be specified in the form + * level#classname. By default the repository-wide threshold is set + * to the lowest possible value, namely the level ALL. + *

+ * + * + *

Appender configuration

+ * + *

Appender configuration syntax is:

+ *
+     * ; For appender named appenderName, set its class.
+     * ; Note: The appender name can contain dots.
+     * log4php.appender.appenderName=name_of_appender_class
+     * 
+     * ; Set appender specific options.
+     * 
+     * log4php.appender.appenderName.option1=value1
+     * log4php.appender.appenderName.optionN=valueN
+     * 
+ * + * For each named appender you can configure its {@link LoggerLayout}. The + * syntax for configuring an appender's layout is: + *
+     * log4php.appender.appenderName.layout=name_of_layout_class
+     * log4php.appender.appenderName.layout.option1=value1
+     *  ....
+     * log4php.appender.appenderName.layout.optionN=valueN
+     * 
+ * + *

Configuring loggers

+ * + *

The syntax for configuring the root logger is: + *

+     * log4php.rootLogger=[level], appenderName, appenderName, ...
+     * 
+ * + *

This syntax means that an optional level can be + * supplied followed by appender names separated by commas. + * + *

The level value can consist of the string values OFF, FATAL, + * ERROR, WARN, INFO, DEBUG, ALL or a custom level value. A + * custom level value can be specified in the form

+ * + *
level#classname
+ * + *

If a level value is specified, then the root level is set + * to the corresponding level. If no level value is specified, + * then the root level remains untouched. + * + *

The root logger can be assigned multiple appenders. + * + *

Each appenderName (separated by commas) will be added to + * the root logger. The named appender is defined using the + * appender syntax defined above. + * + *

For non-root categories the syntax is almost the same: + *

+     * log4php.logger.logger_name=[level|INHERITED|NULL], appenderName, appenderName, ...
+     * 
+ * + *

The meaning of the optional level value is discussed above + * in relation to the root logger. In addition however, the value + * INHERITED can be specified meaning that the named logger should + * inherit its level from the logger hierarchy.

+ * + *

If no level value is supplied, then the level of the + * named logger remains untouched.

+ * + *

By default categories inherit their level from the + * hierarchy. However, if you set the level of a logger and later + * decide that that logger should inherit its level, then you should + * specify INHERITED as the value for the level value. NULL is a + * synonym for INHERITED.

+ * + *

Similar to the root logger syntax, each appenderName + * (separated by commas) will be attached to the named logger.

+ * + *

See the appender additivity rule in the user manual for + * the meaning of the additivity flag. + * + *

ObjectRenderers

+ * + *

You can customize the way message objects of a given type are + * converted to String before being logged. This is done by + * specifying a {@link LoggerObjectRenderer} + * for the object type would like to customize.

+ * + *

The syntax is: + * + *

+     * log4php.renderer.name_of_rendered_class=name_of_rendering.class
+     * 
+ * + * As in, + *
+     * log4php.renderer.myFruit=myFruitRenderer
+     * 
+ * + *

Logger Factories

+ * + * The usage of custom logger factories is discouraged and no longer + * documented. + * + *

Example

+ * + *

An example configuration is given below. Other configuration + * file examples are given in the tests folder. + * + *

+     * ; Set options for appender named "A1".
+     * ; Appender "A1" will be a SyslogAppender
+     * log4php.appender.A1=SyslogAppender
+     * 
+     * ; The syslog daemon resides on www.abc.net
+     * log4php.appender.A1.SyslogHost=www.abc.net
+     * 
+     * ; A1's layout is a LoggerPatternLayout, using the conversion pattern
+     * ; %r %-5p %c{2} %M.%L %x - %m%n. Thus, the log output will
+     * ; include the relative time since the start of the application in
+     * ; milliseconds, followed by the level of the log request,
+     * ; followed by the two rightmost components of the logger name,
+     * ; followed by the callers method name, followed by the line number,
+     * ; the nested disgnostic context and finally the message itself.
+     * ; Refer to the documentation of LoggerPatternLayout} for further information
+     * ; on the syntax of the ConversionPattern key.
+     * log4php.appender.A1.layout=LoggerPatternLayout
+     * log4php.appender.A1.layout.ConversionPattern="%-4r %-5p %c{2} %M.%L %x - %m%n"
+     * 
+     * ; Set options for appender named "A2"
+     * ; A2 should be a LoggerAppenderRollingFile, with maximum file size of 10 MB
+     * ; using at most one backup file. A2's layout is TTCC, using the
+     * ; ISO8061 date format with context printing enabled.
+     * log4php.appender.A2=LoggerAppenderRollingFile
+     * log4php.appender.A2.MaxFileSize=10MB
+     * log4php.appender.A2.MaxBackupIndex=1
+     * log4php.appender.A2.layout=LoggerLayoutTTCC
+     * log4php.appender.A2.layout.ContextPrinting="true"
+     * log4php.appender.A2.layout.DateFormat="%c"
+     * 
+     * ; Root logger set to DEBUG using the A2 appender defined above.
+     * log4php.rootLogger=DEBUG, A2
+     * 
+     * ; Logger definitions:
+     * ; The SECURITY logger inherits is level from root. However, it's output
+     * ; will go to A1 appender defined above. It's additivity is non-cumulative.
+     * log4php.logger.SECURITY=INHERIT, A1
+     * log4php.additivity.SECURITY=false
+     * 
+     * ; Only warnings or above will be logged for the logger "SECURITY.access".
+     * ; Output will go to A1.
+     * log4php.logger.SECURITY.access=WARN
+     * 
+     * 
+     * ; The logger "class.of.the.day" inherits its level from the
+     * ; logger hierarchy.  Output will go to the appender's of the root
+     * ; logger, A2 in this case.
+     * log4php.logger.class.of.the.day=INHERIT
+     * 
+ * + *

Refer to the setOption method in each Appender and + * Layout for class specific options.

+ * + *

Use the ";" character at the + * beginning of a line for comments.

+ * + * @param string $url The name of the configuration file where the + * configuration information is stored. + * @param LoggerHierarchy &$repository the repository to apply the configuration + */ + function doConfigure($url, &$repository) + { + $properties = @parse_ini_file($url); + if ($properties === false) { + LoggerLog::warn("LoggerPropertyConfigurator::doConfigure() cannot load '$url' configuration."); + return false; + } + return $this->doConfigureProperties($properties, $repository); + } + + + /** + * Read configuration options from properties. + * + * @see doConfigure(). + * @param array $properties + * @param LoggerHierarchy &$hierarchy + */ + function doConfigureProperties($properties, &$hierarchy) + { + $value = @$properties[LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_DEBUG_KEY]; + + if (!empty($value)) { + LoggerLog::internalDebugging(LoggerOptionConverter::toBoolean($value, LoggerLog::internalDebugging())); + } + + $thresholdStr = @$properties[LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_THRESHOLD_PREFIX]; + $hierarchy->setThreshold(LoggerOptionConverter::toLevel($thresholdStr, LoggerLevel::getLevelAll())); + + $this->configureRootCategory($properties, $hierarchy); + $this->configureLoggerFactory($properties); + $this->parseCatsAndRenderers($properties, $hierarchy); + + LoggerLog::debug("LoggerPropertyConfigurator::doConfigureProperties() Finished configuring."); + + return true; + } + + // -------------------------------------------------------------------------- + // Internal stuff + // -------------------------------------------------------------------------- + + /** + * Check the provided Properties object for a + * {@link LoggerFactory} entry specified by + * {@link LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_FACTORY_KEY}. + * + * If such an entry exists, an attempt is made to create an instance using + * the default constructor. + * This instance is used for subsequent Category creations + * within this configurator. + * + * @see parseCatsAndRenderers() + * @param array $props array of properties + */ + function configureLoggerFactory($props) + { + $factoryFqcn = @$props[LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_FACTORY_KEY]; + if(!empty($factoryFqcn)) { + $factoryClassName = basename($factoryFqcn); + LoggerLog::debug( + "LoggerPropertyConfigurator::configureLoggerFactory() Trying to load factory [" . + $factoryClassName . + "]." + ); + + if (!class_exists($factoryClassName)) + @include_once("{$factoryFqcn}.php"); + if (class_exists($factoryClassName)) { + $loggerFactory = new $factoryClassName(); + } else { + LoggerLog::debug( + "LoggerPropertyConfigurator::configureLoggerFactory() Unable to load factory [" . + $factoryClassName . + "]. Using default." + ); + $loggerFactory = $this->loggerFactory; + } + + LoggerLog::debug( + "LoggerPropertyConfigurator::configureLoggerFactory() ". + "Setting properties for category factory [" . get_class($loggerFactory) . "]." + ); + + LoggerPropertySetter::setPropertiesByObject($loggerFactory, $props, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_FACTORY_PREFIX . "."); + } + } + + /** + * @param array $props array of properties + * @param LoggerHierarchy &$hierarchy + */ + function configureRootCategory($props, &$hierarchy) + { + $effectivePrefix = LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_LOGGER_PREFIX; + $value = @$props[LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_LOGGER_PREFIX]; + + if(empty($value)) { + $value = @$props[LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_CATEGORY_PREFIX]; + $effectivePrefix = LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ROOT_CATEGORY_PREFIX; + } + + if (empty($value)) { + LoggerLog::debug( + "LoggerPropertyConfigurator::configureRootCategory() ". + "Could not find root logger information. Is this OK?" + ); + } else { + $root =& $hierarchy->getRootLogger(); + // synchronized(root) { + $this->parseCategory( + $props, + $root, + $effectivePrefix, + LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_INTERNAL_ROOT_NAME, + $value + ); + // } + } + } + + /** + * Parse non-root elements, such non-root categories and renderers. + * + * @param array $props array of properties + * @param LoggerHierarchy &$hierarchy + */ + function parseCatsAndRenderers($props, &$hierarchy) + { + while(list($key,$value) = each($props)) { + if( strpos($key, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_CATEGORY_PREFIX) === 0 or + strpos($key, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_PREFIX) === 0) { + if(strpos($key, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_CATEGORY_PREFIX) === 0) { + $loggerName = substr($key, strlen(LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_CATEGORY_PREFIX)); + } elseif (strpos($key, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_PREFIX) === 0) { + $loggerName = substr($key, strlen(LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_LOGGER_PREFIX)); + } + $logger =& $hierarchy->getLogger($loggerName, $this->loggerFactory); + // synchronized(logger) { + $this->parseCategory($props, $logger, $key, $loggerName, $value); + $this->parseAdditivityForLogger($props, $logger, $loggerName); + // } + } elseif (strpos($key, LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_RENDERER_PREFIX) === 0) { + $renderedClass = substr($key, strlen(LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_RENDERER_PREFIX)); + $renderingClass = $value; + if (method_exists($hierarchy, 'addrenderer')) { + LoggerRendererMap::addRenderer($hierarchy, $renderedClass, $renderingClass); + } + } + } + } + + /** + * Parse the additivity option for a non-root category. + * + * @param array $props array of properties + * @param Logger &$cat + * @param string $loggerName + */ + function parseAdditivityForLogger($props, &$cat, $loggerName) + { + $value = LoggerOptionConverter::findAndSubst( + LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ADDITIVITY_PREFIX . $loggerName, + $props + ); + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAdditivityForLogger() ". + "Handling " . LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_ADDITIVITY_PREFIX . $loggerName . "=[{$value}]" + ); + // touch additivity only if necessary + if(!empty($value)) { + $additivity = LoggerOptionConverter::toBoolean($value, true); + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAdditivityForLogger() ". + "Setting additivity for [{$loggerName}] to [{$additivity}]" + ); + $cat->setAdditivity($additivity); + } + } + + /** + * This method must work for the root category as well. + * + * @param array $props array of properties + * @param Logger &$logger + * @param string $optionKey + * @param string $loggerName + * @param string $value + * @return Logger + */ + function &parseCategory($props, &$logger, $optionKey, $loggerName, $value) + { + LoggerLog::debug( + "LoggerPropertyConfigurator::parseCategory() ". + "Parsing for [{$loggerName}] with value=[{$value}]." + ); + + // We must skip over ',' but not white space + $st = explode(',', $value); + + // If value is not in the form ", appender.." or "", then we should set + // the level of the loggeregory. + + if(!(@$value{0} == ',' || empty($value))) { + // just to be on the safe side... + if(sizeof($st) == 0) + return; + + $levelStr = current($st); + LoggerLog::debug( + "LoggerPropertyConfigurator::parseCategory() ". + "Level token is [$levelStr]." + ); + + // If the level value is inherited, set category level value to + // null. We also check that the user has not specified inherited for the + // root category. + if('INHERITED' == strtoupper($levelStr) || 'NULL' == strtoupper($levelStr)) { + if ($loggerName == LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_INTERNAL_ROOT_NAME) { + LoggerLog::warn( + "LoggerPropertyConfigurator::parseCategory() ". + "The root logger cannot be set to null." + ); + } else { + $logger->setLevel(null); + } + } else { + $logger->setLevel(LoggerOptionConverter::toLevel($levelStr, LoggerLevel::getLevelDebug())); + } + } + + // Begin by removing all existing appenders. + $logger->removeAllAppenders(); + while($appenderName = next($st)) { + $appenderName = trim($appenderName); + if(empty($appenderName)) + continue; + LoggerLog::debug( + "LoggerPropertyConfigurator::parseCategory() ". + "Parsing appender named [{$appenderName}]." + ); + $appender =& $this->parseAppender($props, $appenderName); + if($appender !== null) { + $logger->addAppender($appender); + } + } + } + + /** + * @param array $props array of properties + * @param string $appenderName + * @return LoggerAppender + */ + function &parseAppender($props, $appenderName) + { + $appender =& LoggerAppender::singleton($appenderName); + if($appender !== null) { + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAppender() ". + "Appender [{$appenderName}] was already parsed." + ); + return $appender; + } + // Appender was not previously initialized. + $prefix = LOG4PHP_LOGGER_PROPERTY_CONFIGURATOR_APPENDER_PREFIX . $appenderName; + $layoutPrefix = $prefix . ".layout"; + $appenderClass = @$props[$prefix]; + if (!empty($appenderClass)) { + $appender =& LoggerAppender::singleton($appenderName, $appenderClass); + if($appender === null) { + LoggerLog::warn( + "LoggerPropertyConfigurator::parseAppender() ". + "Could not instantiate appender named [$appenderName]." + ); + return null; + } + } else { + LoggerLog::warn( + "LoggerPropertyConfigurator::parseAppender() ". + "Could not instantiate appender named [$appenderName] with null className." + ); + return null; + } + + $appender->setName($appenderName); + if( $appender->requiresLayout() ) { + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAppender() ". + "Parsing layout section for [$appenderName]." + ); + $layoutClass = @$props[$layoutPrefix]; + $layoutClass = LoggerOptionConverter::substVars($layoutClass, $props); + if (empty($layoutClass)) { + LoggerLog::warn( + "LoggerPropertyConfigurator::parseAppender() ". + "layout class is empty in '$layoutPrefix'. Using Simple layout" + ); + $layout = LoggerLayout::factory('LoggerLayoutSimple'); + } else { + $layout = LoggerLayout::factory($layoutClass); + + if($layout === null) { + LoggerLog::warn( + "LoggerPropertyConfigurator::parseAppender() ". + "cannot create layout '$layoutClass'. Using Simple layout" + ); + $layout = LoggerLayout::factory('LoggerLayoutSimple'); + } + } + + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAppender() ". + "Parsing layout options for [$appenderName]." + ); + LoggerPropertySetter::setPropertiesByObject($layout, $props, $layoutPrefix . "."); + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAppender() ". + "End Parsing layout options for [$appenderName]." + ); + $appender->setLayout($layout); + + } + LoggerPropertySetter::setPropertiesByObject($appender, $props, $prefix . "."); + LoggerLog::debug( + "LoggerPropertyConfigurator::parseAppender() ". + "Parsed [{$appenderName}] options." + ); + return $appender; + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/LoggerRoot.php b/log4php.debug/LoggerRoot.php new file mode 100644 index 0000000..c25a401 --- /dev/null +++ b/log4php.debug/LoggerRoot.php @@ -0,0 +1,101 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + */ +require_once(LOG4PHP_DIR . '/Logger.php'); +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); + +/** + * The root logger. + * + * @author VxR + * @version $Revision: 1.9 $ + * @package log4php + * @see Logger + */ +class LoggerRoot extends Logger { + + /** + * @var string name of logger + */ + var $name = 'root'; + + /** + * @var object must be null for LoggerRoot + */ + var $parent = null; + + + /** + * Constructor + * + * @param integer $level initial log level + */ + function LoggerRoot($level = null) + { + $this->Logger($this->name); + if ($level == null) + $level = LoggerLevel::getLevelAll(); + $this->setLevel($level); + } + + /** + * @return integer the level + */ + function getChainedLevel() + { + return $this->level; + } + + /** + * Setting a null value to the level of the root category may have catastrophic results. + * @param LoggerLevel $level + */ + function setLevel($level) + { + $this->level = $level; + } + + /** + * Please use setLevel() instead. + * @param LoggerLevel $level + * @deprecated + */ + function setPriority($level) + { + $this->setLevel($level); + } + + /** + * Always returns false. + * Because LoggerRoot has no parents, it returns false. + * @param Logger $parent + * @return boolean + */ + function setParent($parent) + { + return false; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderConsole.php b/log4php.debug/appenders/LoggerAppenderConsole.php new file mode 100644 index 0000000..c0508c7 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderConsole.php @@ -0,0 +1,139 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + + +define('LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT', 'php://stdout'); +define('LOG4PHP_LOGGER_APPENDER_CONSOLE_STDERR', 'php://stderr'); + +/** + * ConsoleAppender appends log events to STDOUT or STDERR using a layout specified by the user. + * + *

Optional parameter is {@link $target}. The default target is Stdout.

+ *

Note: Use this Appender with command-line php scripts. + * On web scripts this appender has no effects.

+ *

This appender requires a layout.

+ * + * @author VxR + * @version $Revision: 1.11 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderConsole extends LoggerAppenderSkeleton { + + /** + * Can be 'php://stdout' or 'php://stderr'. But it's better to use keywords STDOUT and STDERR (case insensitive). + * Default is STDOUT + * @var string + */ + var $target = 'php://stdout'; + + /** + * @var boolean + * @access private + */ + var $requiresLayout = true; + + /** + * @var mixed the resource used to open stdout/stderr + * @access private + */ + var $fp = false; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderConsole($name) + { + $this->LoggerAppenderSkeleton($name); + } + + /** + * Set console target. + * @param mixed $value a constant or a string + */ + function setTarget($value) + { + $v = trim($value); + if ($v == LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT or strtoupper($v) == 'STDOUT') { + $this->target = LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT; + } elseif ($v == LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT or strtoupper($v) == 'STDERR') { + $target = LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT; + } else { + LoggerLog::debug( + "LoggerAppenderConsole::targetWarn() ". + "Invalid target. Using '".LOG4PHP_LOGGER_APPENDER_CONSOLE_STDOUT."' by default." + ); + } + } + + function getTarget() + { + return $this->target; + } + + function activateOptions() + { + LoggerLog::debug("LoggerAppenderConsole::activateOptions()"); + + $this->fp = @fopen($this->getTarget(), 'w'); + + if ($this->fp and $this->layout !== null) + @fwrite($this->fp, $this->layout->getHeader()); + + $this->closed = (bool)($this->fp === false); + } + + /** + * @see LoggerAppender::close() + */ + function close() + { + LoggerLog::debug("LoggerAppenderConsole::close()"); + + if ($this->fp and $this->layout !== null) { + @fwrite($this->fp, $this->layout->getFooter()); + } + @fclose($this->fp); + $this->closed = true; + } + + function append($event) + { + if ($this->fp and $this->layout !== null) { + + LoggerLog::debug("LoggerAppenderConsole::append()"); + + @fwrite($this->fp, $this->layout->format($event)); + } + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderDailyFile.php b/log4php.debug/appenders/LoggerAppenderDailyFile.php new file mode 100644 index 0000000..3966bf6 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderDailyFile.php @@ -0,0 +1,97 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/appenders/LoggerAppenderFile.php'); + +/** + * LoggerAppenderDailyFile appends log events to a file ne. + * + * A formatted version of the date pattern is used as to create the file name + * using the {@link PHP_MANUAL#sprintf} function. + *

Parameters are {@link $datePattern}, {@link $file}. Note that file + * parameter should include a '%s' identifier and should always be set + * before {@link $file} param.

+ * + * @author Abel Gonzalez + * @version $Revision: 1.7 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderDailyFile extends LoggerAppenderFile { + + /** + * Format date. + * It follows the {@link PHP_MANUAL#date()} formatting rules and should always be set before {@link $file} param. + * @var string + */ + var $datePattern = "Ymd"; + + /** + * Constructor + * + * @param string $name appender name + */ + function LoggerAppenderDailyFile($name) + { + $this->LoggerAppenderFile($name); + } + + /** + * Sets date format for the file name. + * @param string $format a regular date() string format + */ + function setDatePattern ( $format ) + { + $this->datePattern = $format; + } + + /** + * @return string returns date format for the filename + */ + function getDatePattern ( ) + { + return $this->datePattern; + } + + /** + * The File property takes a string value which should be the name of the file to append to. + * Sets and opens the file where the log output will go. + * + * @see LoggerAppenderFile::setFile() + */ + function setFile() + { + $numargs = func_num_args(); + $args = func_get_args(); + + if ($numargs == 1 and is_string($args[0])) { + parent::setFile( sprintf((string)$args[0], date($this->getDatePattern())) ); + } elseif ($numargs == 2 and is_string($args[0]) and is_bool($args[1])) { + parent::setFile( sprintf((string)$args[0], date($this->getDatePattern())), $args[1] ); + } + } + +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderDb.php b/log4php.debug/appenders/LoggerAppenderDb.php new file mode 100644 index 0000000..021d517 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderDb.php @@ -0,0 +1,209 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); +require_once('DB.php'); + +/** + * Appends log events to a db table using PEAR::DB class. + * + *

This appender uses a table in a database to log events.

+ *

Parameters are {@link $dsn}, {@link $createTable}, {@link table} and {@link $sql}.

+ *

See examples in test directory.

+ * + * @author VxR + * @version $Revision: 1.7 $ + * @package log4php + * @subpackage appenders + * @since 0.3 + */ +class LoggerAppenderDb extends LoggerAppenderSkeleton { + + /** + * Create the log table if it does not exists (optional). + * @var boolean + */ + var $createTable = true; + + /** + * PEAR::Db Data source name. Read PEAR::Db for dsn syntax (mandatory). + * @var string + */ + var $dsn; + + /** + * A {@link LoggerPatternLayout} string used to format a valid insert query (mandatory). + * @var string + */ + var $sql; + + /** + * Table name to write events. Used only if {@link $createTable} is true. + * @var string + */ + var $table; + + /** + * @var object PEAR::Db instance + * @access private + */ + var $db = null; + + /** + * @var boolean used to check if all conditions to append are true + * @access private + */ + var $canAppend = true; + + /** + * @access private + */ + var $requiresLayout = false; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderDb($name) + { + $this->LoggerAppenderSkeleton($name); + } + + /** + * Setup db connection. + * Based on defined options, this method connects to db defined in {@link $dsn} + * and creates a {@link $table} table if {@link $createTable} is true. + * @return boolean true if all ok. + */ + function activateOptions() + { + $this->db = DB::connect($this->dsn); + + if (DB::isError($this->db)) { + LoggerLog::debug("LoggerAppenderDb::activateOptions() DB Connect Error [".$this->db->getMessage()."]"); + $this->db = null; + $this->closed = true; + $this->canAppend = false; + + } else { + + $this->layout = LoggerLayout::factory('LoggerPatternLayout'); + $this->layout->setConversionPattern($this->getSql()); + + // test if log table exists + $tableInfo = $this->db->tableInfo($this->table, $mode = null); + if (DB::isError($tableInfo) and $this->getCreateTable()) { + $query = "CREATE TABLE {$this->table} (timestamp varchar(32),logger varchar(32),level varchar(32),message varchar(64),thread varchar(32),file varchar(64),line varchar(4) );"; + + LoggerLog::debug("LoggerAppenderDb::activateOptions() creating table '{$this->table}'... using sql='$query'"); + + $result = $this->db->query($query); + if (DB::isError($result)) { + LoggerLog::debug("LoggerAppenderDb::activateOptions() error while creating '{$this->table}'. Error is ".$result->getMessage()); + $this->canAppend = false; + return; + } + } + $this->canAppend = true; + } + + } + + function append($event) + { + if ($this->canAppend) { + + $query = $this->layout->format($event); + + LoggerLog::debug("LoggerAppenderDb::append() query='$query'"); + + $this->db->query($query); + } + } + + function close() + { + if ($this->db !== null) + $this->db->disconnect(); + $this->closed = true; + } + + /** + * @return boolean + */ + function getCreateTable() + { + return $this->createTable; + } + + /** + * @return string the defined dsn + */ + function getDsn() + { + return $this->dsn; + } + + /** + * @return string the sql pattern string + */ + function getSql() + { + return $this->sql; + } + + /** + * @return string the table name to create + */ + function getTable() + { + return $this->table; + } + + function setCreateTable($flag) + { + $this->createTable = LoggerOptionConverter::toBoolean($flag, true); + } + + function setDsn($newDsn) + { + $this->dsn = $newDsn; + } + + function setSql($sql) + { + $this->sql = $sql; + } + + function setTable($table) + { + $this->table = $table; + } + +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderEcho.php b/log4php.debug/appenders/LoggerAppenderEcho.php new file mode 100644 index 0000000..a615dfc --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderEcho.php @@ -0,0 +1,89 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * LoggerAppenderEcho uses {@link PHP_MANUAL#echo echo} function to output events. + * + *

This appender requires a layout.

+ * + * @author VxR + * @version $Revision: 1.5 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderEcho extends LoggerAppenderSkeleton { + + /** + * @access private + */ + var $requiresLayout = true; + + /** + * @var boolean used internally to mark first append + * @access private + */ + var $firstAppend = true; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderEcho($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + return; + } + + function close() + { + if (!$this->firstAppend) + echo $this->layout->getFooter(); + $this->closed = true; + } + + function append($event) + { + LoggerLog::debug("LoggerAppenderEcho::append()"); + + if ($this->layout !== null) { + if ($this->firstAppend) { + echo $this->layout->getHeader(); + $this->firstAppend = false; + } + echo $this->layout->format($event); + } + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderFile.php b/log4php.debug/appenders/LoggerAppenderFile.php new file mode 100644 index 0000000..8fa312a --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderFile.php @@ -0,0 +1,184 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * FileAppender appends log events to a file. + * + * Parameters are ({@link $fileName} but option name is file), + * {@link $append}. + * + * @author VxR + * @version $Revision: 1.15 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderFile extends LoggerAppenderSkeleton { + + /** + * @var boolean if {@link $file} exists, appends events. + */ + var $append = true; + + /** + * @var string the file name used to append events + */ + var $fileName; + + /** + * @var mixed file resource + * @access private + */ + var $fp = false; + + /** + * @access private + */ + var $requiresLayout = true; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderFile($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + $fileName = $this->getFile(); + LoggerLog::debug("LoggerAppenderFile::activateOptions() opening file '{$fileName}'"); + $this->fp = @fopen($fileName, ($this->getAppend()? 'a':'w')); + + // Denying read option for log file. Added for Vulnerability fix + if (is_readable($fileName)) chmod ($fileName,0222); + + if ($this->fp) { + if ($this->getAppend()) + fseek($this->fp, 0, SEEK_END); + @fwrite($this->fp, $this->layout->getHeader()); + $this->closed = false; + } else { + $this->closed = true; + } + } + + function close() + { + if ($this->fp and $this->layout !== null) + @fwrite($this->fp, $this->layout->getFooter()); + + $this->closeFile(); + $this->closed = true; + } + + /** + * Closes the previously opened file. + */ + function closeFile() + { + if ($this->fp) + @fclose($this->fp); + } + + /** + * @return boolean + */ + function getAppend() + { + return $this->append; + } + + /** + * @return string + */ + function getFile() + { + return $this->getFileName(); + } + + /** + * @return string + */ + function getFileName() + { + return $this->fileName; + } + + /** + * Close any previously opened file and call the parent's reset. + */ + function reset() + { + $this->closeFile(); + $this->fileName = null; + parent::reset(); + } + + function setAppend($flag) + { + $this->append = LoggerOptionConverter::toBoolean($flag, true); + } + + /** + * Sets and opens the file where the log output will go. + * + * This is an overloaded method. It can be called with: + * - setFile(string $fileName) to set filename. + * - setFile(string $fileName, boolean $append) to set filename and append. + */ + function setFile() + { + $numargs = func_num_args(); + $args = func_get_args(); + + if ($numargs == 1 and is_string($args[0])) { + $this->setFileName($args[0]); + } elseif ($numargs >=2 and is_string($args[0]) and is_bool($args[1])) { + $this->setFile($args[0]); + $this->setAppend($args[1]); + } + } + + function setFileName($fileName) + { + $this->fileName = $fileName; + } + + function append($event) + { + if ($this->fp and $this->layout !== null) { + + LoggerLog::debug("LoggerAppenderFile::append()"); + + @fwrite($this->fp, $this->layout->format($event)); + } + } +} +?> diff --git a/log4php.debug/appenders/LoggerAppenderMail.php b/log4php.debug/appenders/LoggerAppenderMail.php new file mode 100644 index 0000000..c211e4a --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderMail.php @@ -0,0 +1,148 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Appends log events to mail using php function {@link PHP_MANUAL#mail}. + * + *

Parameters are {@link $from}, {@link $to}, {@link $subject}.

+ *

This appender requires a layout.

+ * + * @author VxR + * @version $Revision: 1.8 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderMail extends LoggerAppenderSkeleton { + + /** + * @var string 'from' field + */ + var $from = null; + + /** + * @var string 'subject' field + */ + var $subject = 'Log4php Report'; + + /** + * @var string 'to' field + */ + var $to = null; + + /** + * @var string used to create mail body + * @access private + */ + var $body = ''; + + /** + * @access private + */ + var $requiresLayout = true; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderMail($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + $this->closed = false; + return; + } + + function close() + { + $from = $this->getFrom(); + $to = $this->getTo(); + + if (!empty($this->body) and $from !== null and $to !== null and $this->layout !== null) { + + $subject = $this->getSubject(); + + LoggerLog::debug("LoggerAppenderMail::close() sending mail from=[{$from}] to=[{$to}] subject=[{$subject}]"); + + @mail( + $to, $subject, + $this->layout->getHeader() . $this->body . $this->layout->getFooter(), + "From: {$from}\r\n" + ); + } + $this->closed = true; + } + + /** + * @return string + */ + function getFrom() + { + return $this->from; + } + + /** + * @return string + */ + function getSubject() + { + return $this->subject; + } + + /** + * @return string + */ + function getTo() + { + return $this->to; + } + + function setSubject($subject) + { + $this->subject = $subject; + } + + function setTo($to) + { + $this->to = $to; + } + + function setFrom($from) + { + $this->from = $from; + } + + function append($event) + { + if ($this->layout !== null) + $this->body .= $this->layout->format($event); + } +} +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderMailEvent.php b/log4php.debug/appenders/LoggerAppenderMailEvent.php new file mode 100644 index 0000000..1152255 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderMailEvent.php @@ -0,0 +1,170 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Log events to an email address. It will be created an email for each event. + * + *

Parameters are + * {@link $smtpHost} (optional), + * {@link $port} (optional), + * {@link $from} (optional), + * {@link $to}, + * {@link $subject} (optional).

+ *

A layout is required.

+ * + * @author Domenico Lordi + * @author VxR + * @version $Revision: 1.10 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderMailEvent extends LoggerAppenderSkeleton { + + /** + * @var string 'from' field + */ + var $from = null; + + /** + * @var integer 'from' field + */ + var $port = 25; + + /** + * @var string hostname. + */ + var $smtpHost = null; + + /** + * @var string 'subject' field + */ + var $subject = ''; + + /** + * @var string 'to' field + */ + var $to = null; + + /** + * @access private + */ + var $requiresLayout = true; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderMailEvent($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + $this->closed = false; + } + + function close() + { + $this->closed = true; + } + + /** + * @return string + */ + function getFrom() { return $this->from; } + + /** + * @return integer + */ + function getPort() { return $this->port; } + + /** + * @return string + */ + function getSmtpHost() { return $this->smtpHost; } + + /** + * @return string + */ + function getSubject() { return $this->subject; } + + /** + * @return string + */ + function getTo() { return $this->to; } + + function setFrom($from) { $this->from = $from; } + function setPort($port) { $this->port = (int)$port; } + function setSmtpHost($smtphost) { $this->smtpHost = $smtpHost; } + function setSubject($subject) { $this->subject = $subject; } + function setTo($to) { $this->to = $to; } + + function append($event) + { + $from = $this->getFrom(); + $to = $this->getTo(); + if (empty($from) or empty($to)) + return; + + $smtpHost = $this->getSmtpHost(); + $prevSmtpHost = ini_get('SMTP'); + if (!empty($smtpHost)) { + ini_set('SMTP', $smtpHost); + } else { + $smtpHost = $prevSmtpHost; + } + + $smtpPort = $this->getPort(); + $prevSmtpPort= ini_get('smtp_port'); + if ($smtpPort > 0 and $smtpPort < 65535) { + ini_set('smtp_port', $smtpPort); + } else { + $smtpPort = $prevSmtpPort; + } + + LoggerLog::debug( + "LoggerAppenderMailEvent::append()" . + ":from=[{$from}]:to=[{$to}]:smtpHost=[{$smtpHost}]:smtpPort=[{$smtpPort}]" + ); + + if (!@mail( $to, $this->getSubject(), + $this->layout->getHeader() . $this->layout->format($event) . $this->layout->getFooter($event), + "From: {$from}\r\n" + )) { + LoggerLog::debug("LoggerAppenderMailEvent::append() mail error"); + } + + ini_set('SMTP', $prevSmtpHost); + ini_set('smtp_port', $prevSmtpPort); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderNull.php b/log4php.debug/appenders/LoggerAppenderNull.php new file mode 100644 index 0000000..36a2f54 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderNull.php @@ -0,0 +1,72 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * A NullAppender merely exists, it never outputs a message to any device. + * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderNull extends LoggerAppenderSkeleton { + + /** + * @access private + */ + var $requiresLayout = false; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderNull($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + $this->closed = false; + } + + function close() + { + $this->closed = true; + } + + /** + * Do nothing. How I Love it !! :) + */ + function append($event) + { + LoggerLog::debug("LoggerAppenderNull::append()"); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderPhp.php b/log4php.debug/appenders/LoggerAppenderPhp.php new file mode 100644 index 0000000..69db345 --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderPhp.php @@ -0,0 +1,85 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Log events using php {@link PHP_MANUAL#trigger_error} function and a {@link LoggerLayoutTTCC} default layout. + * + *

Levels are mapped as follows:

+ * - level < WARN mapped to E_USER_NOTICE + * - WARN <= level < ERROR mapped to E_USER_WARNING + * - level >= ERROR mapped to E_USER_ERROR + * + * @author VxR + * @version $Revision: 1.11 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderPhp extends LoggerAppenderSkeleton { + + /** + * @access private + */ + var $requiresLayout = false; + + /** + * Constructor + * + * @param string $name appender name + */ + function LoggerAppenderPhp($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + $this->layout = LoggerLayout::factory('LoggerLayoutTTCC'); + $this->closed = false; + } + + function close() + { + $this->closed = true; + } + + function append($event) + { + if ($this->layout !== null) { + LoggerLog::debug("LoggerAppenderPhp::append()"); + $level = $event->getLevel(); + if ($level->isGreaterOrEqual(LoggerLevel::getLevelError())) { + trigger_error($this->layout->format($event), E_USER_ERROR); + } elseif ($level->isGreaterOrEqual(LoggerLevel::getLevelWarn())) { + trigger_error($this->layout->format($event), E_USER_WARNING); + } else { + trigger_error($this->layout->format($event), E_USER_NOTICE); + } + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderRollingFile.php b/log4php.debug/appenders/LoggerAppenderRollingFile.php new file mode 100644 index 0000000..87d1aab --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderRollingFile.php @@ -0,0 +1,241 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/appenders/LoggerAppenderFile.php'); + +/** + * LoggerAppenderRollingFile extends LoggerAppenderFile to backup the log files + * when they reach a certain size. + * + *

Parameters are {@link $maxFileSize}, {@link $maxBackupIndex}.

+ * + *

Contributors: Sergio Strampelli.

+ * + * @author VxR + * @version $Revision: 1.14 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderRollingFile extends LoggerAppenderFile { + + /** + * Set the maximum size that the output file is allowed to reach + * before being rolled over to backup files. + * + *

In configuration files, the MaxFileSize option takes a + * long integer in the range 0 - 2^63. You can specify the value + * with the suffixes "KB", "MB" or "GB" so that the integer is + * interpreted being expressed respectively in kilobytes, megabytes + * or gigabytes. For example, the value "10KB" will be interpreted + * as 10240.

+ *

The default maximum file size is 10MB.

+ * + *

Note that MaxFileSize cannot exceed 2 GB.

+ * + * @var integer + */ + var $maxFileSize = 10485760; + + /** + * Set the maximum number of backup files to keep around. + * + *

The MaxBackupIndex option determines how many backup + * files are kept before the oldest is erased. This option takes + * a positive integer value. If set to zero, then there will be no + * backup files and the log file will be truncated when it reaches + * MaxFileSize.

+ *

There is one backup file by default.

+ * + * @var integer + */ + var $maxBackupIndex = 1; + + /** + * @var string the filename expanded + * @access private + */ + var $expandedFileName = null; + + /** + * Constructor. + * + * @param string $name appender name + */ + function LoggerAppenderRollingFile($name) + { + $this->LoggerAppenderFile($name); + } + + /** + * Returns the value of the MaxBackupIndex option. + * @return integer + */ + function getExpandedFileName() { + return $this->expandedFileName; + } + + /** + * Returns the value of the MaxBackupIndex option. + * @return integer + */ + function getMaxBackupIndex() { + return $this->maxBackupIndex; + } + + /** + * Get the maximum size that the output file is allowed to reach + * before being rolled over to backup files. + * @return integer + */ + function getMaximumFileSize() { + return $this->maxFileSize; + } + + /** + * Implements the usual roll over behaviour. + * + *

If MaxBackupIndex is positive, then files File.1, ..., File.MaxBackupIndex -1 are renamed to File.2, ..., File.MaxBackupIndex. + * Moreover, File is renamed File.1 and closed. A new File is created to receive further log output. + * + *

If MaxBackupIndex is equal to zero, then the File is truncated with no backup files created. + */ + function rollOver() + { + // If maxBackups <= 0, then there is no file renaming to be done. + if($this->maxBackupIndex > 0) { + $fileName = $this->getExpandedFileName(); + // Delete the oldest file, to keep Windows happy. + $file = $fileName . '.' . $this->maxBackupIndex; + if (is_writable($file)) + unlink($file); + // Map {(maxBackupIndex - 1), ..., 2, 1} to {maxBackupIndex, ..., 3, 2} + for ($i = $this->maxBackupIndex - 1; $i >= 1; $i--) { + $file = $fileName . "." . $i; + if (is_readable($file)) { + $target = $fileName . '.' . ($i + 1); + rename($file, $target); + } + } + + // Rename fileName to fileName.1 + $target = $fileName . ".1"; + + $this->closeFile(); // keep windows happy. + + $file = $fileName; + + //As of now suppress the error in rename. we have to handle in future + @rename($file, $target); + } + + $this->setFile($fileName, false); + unset($this->fp); + $this->activateOptions(); + } + + function setFileName($fileName) + { + $this->fileName = $fileName; + $this->expandedFileName = realpath($fileName); + LoggerLog::debug("LoggerAppenderRollingFile::setFileName():filename=[{$fileName}]:expandedFileName=[{$this->expandedFileName}]"); + } + + + /** + * Set the maximum number of backup files to keep around. + * + *

The MaxBackupIndex option determines how many backup + * files are kept before the oldest is erased. This option takes + * a positive integer value. If set to zero, then there will be no + * backup files and the log file will be truncated when it reaches + * MaxFileSize. + * + * @param mixed $maxBackups + */ + function setMaxBackupIndex($maxBackups) + { + if (is_numeric($maxBackups)) + $this->maxBackupIndex = abs((int)$maxBackups); + } + + /** + * Set the maximum size that the output file is allowed to reach + * before being rolled over to backup files. + * + * @param mixed $maxFileSize + * @see setMaxFileSize() + */ + function setMaximumFileSize($maxFileSize) + { + $this->setMaxFileSize($maxFileSize); + } + + /** + * Set the maximum size that the output file is allowed to reach + * before being rolled over to backup files. + *

In configuration files, the MaxFileSize option takes an + * long integer in the range 0 - 2^63. You can specify the value + * with the suffixes "KB", "MB" or "GB" so that the integer is + * interpreted being expressed respectively in kilobytes, megabytes + * or gigabytes. For example, the value "10KB" will be interpreted + * as 10240. + * + * @param mixed $value + */ + function setMaxFileSize($value) + { + $maxFileSize = null; + $numpart = substr($value,0, strlen($value) -2); + $suffix = strtoupper(substr($value, -2)); + + switch ($suffix) { + case 'KB': $maxFileSize = (int)((int)$numpart * 1024); break; + case 'MB': $maxFileSize = (int)((int)$numpart * 1024 * 1024); break; + case 'GB': $maxFileSize = (int)((int)$numpart * 1024 * 1024 * 1024); break; + default: + if (is_numeric($value)) { + $maxFileSize = (int)$value; + } + } + + if ($maxFileSize === null) { + LoggerLog::debug("LoggerAppenderRollingFile::setMaxFileSize():value=[$value] wrong declaration"); + } else { + $this->maxFileSize = abs($maxFileSize); + } + } + + /** + * @param LoggerLoggingEvent $event + */ + function append($event) + { + if ($this->fp) { + parent::append($event); + if (ftell($this->fp) > $this->getMaximumFileSize()) + $this->rollOver(); + } + } +} +?> diff --git a/log4php.debug/appenders/LoggerAppenderSocket.php b/log4php.debug/appenders/LoggerAppenderSocket.php new file mode 100644 index 0000000..8bc9dcd --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderSocket.php @@ -0,0 +1,285 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +define('LOG4PHP_LOGGER_APPENDER_SOCKET_DEFAULT_PORT', 4446); +define('LOG4PHP_LOGGER_APPENDER_SOCKET_DEFAULT_TIMEOUT', 30); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Serialize events and send them to a network socket. + * + * Parameters are {@link $remoteHost}, {@link $port}, {@link $timeout}, + * {@link $locationInfo}, {@link $useXml} and {@link $log4jNamespace}. + * + * @author VxR + * @version $Revision: 1.17 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderSocket extends LoggerAppenderSkeleton { + + /** + * @var mixed socket connection resource + * @access private + */ + var $sp = false; + + /** + * Target host. On how to define remote hostaname see + * {@link PHP_MANUAL#fsockopen} + * @var string + */ + var $remoteHost = ''; + + /** + * @var integer the network port. + */ + var $port = LOG4PHP_LOGGER_APPENDER_SOCKET_DEFAULT_PORT; + + /** + * @var boolean get event's location info. + */ + var $locationInfo = false; + + /** + * @var integer connection timeout + */ + var $timeout = LOG4PHP_LOGGER_APPENDER_SOCKET_DEFAULT_TIMEOUT; + + /** + * @var boolean output events via {@link LoggerXmlLayout} + */ + var $useXml = false; + + /** + * @var boolean forward this option to {@link LoggerXmlLayout}. + * Ignored if {@link $useXml} is false. + */ + var $log4jNamespace = false; + + /** + * @var LoggerXmlLayout + * @access private + */ + var $xmlLayout = null; + + /** + * @var boolean + * @access private + */ + var $requiresLayout = false; + + /** + * Constructor + * + * @param string $name appender name + */ + function LoggerAppenderSocket($name) + { + $this->LoggerAppenderSkeleton($name); + } + + /** + * Create a socket connection using defined parameters + */ + function activateOptions() + { + LoggerLog::debug("LoggerAppenderSocket::activateOptions() creating a socket..."); + $errno = 0; + $errstr = ''; + $this->sp = @fsockopen($this->getRemoteHost(), $this->getPort(), $errno, $errstr, $this->getTimeout()); + if ($errno) { + LoggerLog::debug("LoggerAppenderSocket::activateOptions() socket error [$errno] $errstr"); + $this->closed = true; + } else { + LoggerLog::debug("LoggerAppenderSocket::activateOptions() socket created [".$this->sp."]"); + if ($this->getUseXml()) { + $this->xmlLayout = LoggerLayout::factory('LoggerXmlLayout'); + if ($this->xmlLayout === null) { + LoggerLog::debug("LoggerAppenderSocket::activateOptions() useXml is true but layout is null"); + $this->setUseXml(false); + } else { + $this->xmlLayout->setLocationInfo($this->getLocationInfo()); + $this->xmlLayout->setLog4jNamespace($this->getLog4jNamespace()); + $this->xmlLayout->activateOptions(); + } + } + $this->closed = false; + } + } + + function close() + { + @fclose($this->sp); + $this->closed = true; + } + + /** + * @return string + */ + function getHostname() + { + return $this->getRemoteHost(); + } + + /** + * @return boolean + */ + function getLocationInfo() + { + return $this->locationInfo; + } + + /** + * @return boolean + */ + function getLog4jNamespace() + { + return $this->log4jNamespace; + } + + /** + * @return integer + */ + function getPort() + { + return $this->port; + } + + function getRemoteHost() + { + return $this->remoteHost; + } + + /** + * @return integer + */ + function getTimeout() + { + return $this->timeout; + } + + /** + * @var boolean + */ + function getUseXml() + { + return $this->useXml; + } + + function reset() + { + $this->close(); + parent::reset(); + } + + /** + * @param string + * @deprecated Please, use {@link setRemoteHost} + */ + function setHostname($hostname) + { + $this->setRemoteHost($hostname); + } + + /** + * @param mixed + */ + function setLocationInfo($flag) + { + $this->locationInfo = LoggerOptionConverter::toBoolean($flag, $this->getLocationInfo()); + } + + /** + * @param mixed + */ + function setLog4jNamespace($flag) + { + $this->log4jNamespace = LoggerOptionConverter::toBoolean($flag, $this->getLog4jNamespace()); + } + + /** + * @param integer + */ + function setPort($port) + { + $port = LoggerOptionConverter::toInt($port, 0); + if ($port > 0 and $port < 65535) + $this->port = $port; + } + + /** + * @param string + */ + function setRemoteHost($hostname) + { + $this->remoteHost = $hostname; + } + + /** + * @param integer + */ + function setTimeout($timeout) + { + $this->timeout = LoggerOptionConverter::toInt($timeout, $this->getTimeout()); + } + + /** + * @param mixed + */ + function setUseXml($flag) + { + $this->useXml = LoggerOptionConverter::toBoolean($flag, $this->getUseXml()); + } + + /** + * @param LoggerLoggingEvent + */ + function append($event) + { + if ($this->sp) { + + LoggerLog::debug("LoggerAppenderSocket::append()"); + + if ($this->getLocationInfo()) + $event->getLocationInfo(); + + if (!$this->getUseXml()) { + $sEvent = serialize($event); + @fwrite($this->sp, $sEvent, strlen($sEvent)); + } else { + @fwrite($this->sp, $this->xmlLayout->format($event)); + } + + // not sure about it... + @fflush ($this->sp); + } + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/appenders/LoggerAppenderSyslog.php b/log4php.debug/appenders/LoggerAppenderSyslog.php new file mode 100644 index 0000000..05195be --- /dev/null +++ b/log4php.debug/appenders/LoggerAppenderSyslog.php @@ -0,0 +1,85 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage appenders + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerAppenderSkeleton.php'); +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Log events using php {@link PHP_MANUAL#syslog} function. + * + * Levels are mapped as follows: + * - level >= FATAL to LOG_ALERT + * - FATAL > level >= ERROR to LOG_ERR + * - ERROR > level >= WARN to LOG_WARNING + * - WARN > level >= INFO to LOG_INFO + * - INFO > level >= DEBUG to LOG_DEBUG + * + * @author VxR + * @version $Revision: 1.11 $ + * @package log4php + * @subpackage appenders + */ +class LoggerAppenderSyslog extends LoggerAppenderSkeleton { + + /** + * Constructor + * + * @param string $name appender name + */ + function LoggerAppenderSyslog($name) + { + $this->LoggerAppenderSkeleton($name); + } + + function activateOptions() + { + define_syslog_variables(); + $this->closed = false; + } + + function close() + { + closelog(); + $this->closed = true; + } + + function append($event) + { + $level = $event->getLevel(); + $message = $event->getRenderedMessage(); + if ($level->isGreaterOrEqual(LoggerLevel::getLevelFatal())) { + syslog(LOG_ALERT, $message); + } elseif ($level->isGreaterOrEqual(LoggerLevel::getLevelError())) { + syslog(LOG_ERR, $message); + } elseif ($level->isGreaterOrEqual(LoggerLevel::getLevelWarn())) { + syslog(LOG_WARNING, $message); + } elseif ($level->isGreaterOrEqual(LoggerLevel::getLevelInfo())) { + syslog(LOG_INFO, $message); + } elseif ($level->isGreaterOrEqual(LoggerLevel::getLevelDebug())) { + syslog(LOG_DEBUG, $message); + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/config/LoggerPropertyGetter.php b/log4php.debug/config/LoggerPropertyGetter.php new file mode 100644 index 0000000..9f4a380 --- /dev/null +++ b/log4php.debug/config/LoggerPropertyGetter.php @@ -0,0 +1,37 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage config + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @subpackage config + * @since 0.5 + * @todo Ehm... try to guess... + */ +class LoggerPropertyGetter { + +} + +?> \ No newline at end of file diff --git a/log4php.debug/config/LoggerPropertySetter.php b/log4php.debug/config/LoggerPropertySetter.php new file mode 100644 index 0000000..08e3f05 --- /dev/null +++ b/log4php.debug/config/LoggerPropertySetter.php @@ -0,0 +1,161 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage config + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerLog.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); + +/** + * General purpose Object property setter. Clients repeatedly invokes + * {@link setProperty()} in order to invoke setters + * on the Object specified in the constructor. + * + * Usage: + * + * $ps = new LoggerPropertySetter($anObject); + * $ps->set("name", "Joe"); + * $ps->set("age", 32); + * $ps->set("isMale", true); + * + * will cause the invocations + * + * $anObject->setName("Joe"); + * $anObject->setAge(32); + * $anObject->setMale(true) + * + * if such methods exist. + * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage config + * @since 0.5 + */ +class LoggerPropertySetter { + + /** + * @var object the target object + * @access private + */ + var $obj; + + /** + * Create a new LoggerPropertySetter for the specified Object. + * This is done in prepartion for invoking {@link setProperty()} + * one or more times. + * @param object &$obj the object for which to set properties + */ + function LoggerPropertySetter(&$obj) + { + $this->obj =& $obj; + } + + /** + * Set the properties of an object passed as a parameter in one + * go. The properties are parsed relative to a + * prefix. + * + * @param object &$obj The object to configure. + * @param array $properties An array containing keys and values. + * @param string $prefix Only keys having the specified prefix will be set. + * @static + */ + function setPropertiesByObject(&$obj, $properties, $prefix) + { + $pSetter = new LoggerPropertySetter($obj); + return $pSetter->setProperties($properties, $prefix); + } + + + /** + * Set the properites for the object that match the + * prefix passed as parameter. + * + * @param array $properties An array containing keys and values. + * @param string $prefix Only keys having the specified prefix will be set. + */ + function setProperties($properties, $prefix) + { + LoggerLog::debug("LoggerOptionConverter::setProperties():prefix=[{$prefix}]"); + + $len = strlen($prefix); + while (list($key,) = each($properties)) { + if (strpos($key, $prefix) === 0) { + if (strpos($key, '.', ($len + 1)) > 0) + continue; + $value = LoggerOptionConverter::findAndSubst($key, $properties); + $key = substr($key, $len); + if ($key == 'layout' and is_a($this->obj, 'loggerappender')) { + continue; + } + $this->setProperty($key, $value); + } + } + $this->activate(); + } + + /** + * Set a property on this PropertySetter's Object. If successful, this + * method will invoke a setter method on the underlying Object. The + * setter is the one for the specified property name and the value is + * determined partly from the setter argument type and partly from the + * value specified in the call to this method. + * + *

If the setter expects a String no conversion is necessary. + * If it expects an int, then an attempt is made to convert 'value' + * to an int using new Integer(value). If the setter expects a boolean, + * the conversion is by new Boolean(value). + * + * @param string $name name of the property + * @param string $value String value of the property + */ + function setProperty($name, $value) + { + LoggerLog::debug("LoggerOptionConverter::setProperty():name=[{$name}]:value=[{$value}]"); + + if ($value === null) return; + + $method = "set" . ucfirst($name); + + if (!method_exists($this->obj, $method)) { + LoggerLog::warn( + "LoggerOptionConverter::setProperty() No such setter method for [{$name}] property in " . + get_class($this->obj) . "." + ); + } else { + return call_user_func(array(&$this->obj, $method), $value); + } + } + + function activate() + { + LoggerLog::debug("LoggerOptionConverter::activate()"); + + if (method_exists($this->obj, 'activateoptions')) { + return call_user_func(array(&$this->obj, 'activateoptions')); + } else { + LoggerLog::debug("LoggerOptionConverter::activate() Nothing to activate."); + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/helpers/LoggerFormattingInfo.php b/log4php.debug/helpers/LoggerFormattingInfo.php new file mode 100644 index 0000000..f642b63 --- /dev/null +++ b/log4php.debug/helpers/LoggerFormattingInfo.php @@ -0,0 +1,61 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage helpers + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * This class encapsulates the information obtained when parsing + * formatting modifiers in conversion modifiers. + * + * @author VxR + * @package log4php + * @subpackage spi + * @since 0.3 + */ +class LoggerFormattingInfo { + + var $min = -1; + var $max = 0x7FFFFFFF; + var $leftAlign = false; + + /** + * Constructor + */ + function LoggerFormattingInfo() {} + + function reset() + { + $this->min = -1; + $this->max = 0x7FFFFFFF; + $this->leftAlign = false; + } + + function dump() + { + LoggerLog::debug("LoggerFormattingInfo::dump() min={$this->min}, max={$this->max}, leftAlign={$this->leftAlign}"); + } +} +?> \ No newline at end of file diff --git a/log4php.debug/helpers/LoggerOptionConverter.php b/log4php.debug/helpers/LoggerOptionConverter.php new file mode 100644 index 0000000..0dd1439 --- /dev/null +++ b/log4php.debug/helpers/LoggerOptionConverter.php @@ -0,0 +1,350 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage helpers + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/LoggerLevel.php'); + +define('LOG4PHP_OPTION_CONVERTER_DELIM_START', '${'); +define('LOG4PHP_OPTION_CONVERTER_DELIM_STOP', '}'); +define('LOG4PHP_OPTION_CONVERTER_DELIM_START_LEN', 2); +define('LOG4PHP_OPTION_CONVERTER_DELIM_STOP_LEN', 1); + +/** + * A convenience class to convert property values to specific types. + * + * @author VxR + * @version $Revision: 1.6 $ + * @package log4php + * @subpackage helpers + * @static + * @since 0.5 + */ +class LoggerOptionConverter { + + /** + * OptionConverter is a static class. + */ + function OptionConverter() + { + return; + } + + /** + * @param array $l + * @param array $r + * @return array + * + * @static + */ + function concatanateArrays($l, $r) + { + return array_merge($l, $r); + } + + /** + * Read a predefined var. + * + * It returns a value referenced by $key using this search criteria: + * - if $key is a constant then return it. Else + * - if $key is set in $_ENV then return it. Else + * - return $def. + * + * @param string $key The key to search for. + * @param string $def The default value to return. + * @return string the string value of the system property, or the default + * value if there is no property with that key. + * + * @static + */ + function getSystemProperty($key, $def) + { + LoggerLog::debug("LoggerOptionConverter::getSystemProperty():key=[{$key}]:def=[{$def}]."); + + if (defined($key)) { + return (string)constant($key); + } elseif (isset($_ENV[$key])) { + return (string)$_ENV[$key]; + } else { + return $def; + } + } + + /** + * If $value is true, then true is + * returned. If $value is false, then + * true is returned. Otherwise, $default is + * returned. + * + *

Case of value is unimportant.

+ * + * @param string $value + * @param boolean $default + * @return boolean + * + * @static + */ + function toBoolean($value, $default) + { + if($value === null) + return $default; + if ($value == 1) + return true; + $trimmedVal = strtolower(trim($value)); + if ("true" == $trimmedVal or "yes" == $trimmedVal) + return true; + if ("false" == $trimmedVal) + return false; + return $default; + } + + /** + * @param string $value + * @param integer $default + * @return integer + * @static + */ + function toInt($value, $default) + { + $value = trim($value); + if (is_numeric($value)) { + return (int)$value; + } else { + return $default; + } + } + + /** + * Converts a standard or custom priority level to a Level + * object. + * + *

If $value is of form "level#full_file_classname", + * where full_file_classname means the class filename with path + * but without php extension, then the specified class' toLevel() method + * is called to process the specified level string; if no '#' + * character is present, then the default {@link LoggerLevel} + * class is used to process the level value.

+ * + *

As a special case, if the $value parameter is + * equal to the string "NULL", then the value null will + * be returned.

+ * + *

If any error occurs while converting the value to a level, + * the $defaultValue parameter, which may be + * null, is returned.

+ * + *

Case of $value is insignificant for the level level, but is + * significant for the class name part, if present.

+ * + * @param string $value + * @param LoggerLevel $defaultValue + * @return LoggerLevel a {@link LoggerLevel} or null + * @static + */ + function toLevel($value, $defaultValue) + { + if($value === null) + return $defaultValue; + + $hashIndex = strpos($value, '#'); + if ($hashIndex === false) { + if("NULL" == strtoupper($value)) { + return null; + } else { + // no class name specified : use standard Level class + return LoggerLevel::toLevel($value, $defaultValue); + } + } + + $result = $defaultValue; + + $clazz = substr($value, ($hashIndex + 1)); + $levelName = substr($value, 0, $hashIndex); + + // This is degenerate case but you never know. + if("NULL" == strtoupper($levelName)) { + return null; + } + + LoggerLog::debug("LoggerOptionConverter::toLevel():class=[{$clazz}]:pri=[{$levelName}]"); + + if (!class_exists($clazz)) + @include_once("{$clazz}.php"); + + $clazz = basename($clazz); + + if (class_exists($clazz)) { + $result = @call_user_func(array($clazz, 'toLevel'), $value, $defaultValue); + if (!is_a($result, 'loggerlevel')) { + LoggerLog::debug("LoggerOptionConverter::toLevel():class=[{$clazz}] cannot call toLevel(). Returning default."); + $result = $defaultValue; + } + } else { + LoggerLog::warn("LoggerOptionConverter::toLevel() class '{$clazz}' doesnt exists."); + } + return $result; + } + + /** + * @param string $value + * @param float $default + * @return float + * + * @static + */ + function toFileSize($value, $default) + { + if ($value === null) + return $default; + + $s = strtoupper(trim($value)); + $multiplier = (float)1; + if(($index = strpos($s, 'KB')) !== false) { + $multiplier = 1024; + $s = substr($s, 0, $index); + } elseif(($index = strpos($s, 'MB')) !== false) { + $multiplier = 1024 * 1024; + $s = substr($s, 0, $index); + } elseif(($index = strpos($s, 'GB')) !== false) { + $multiplier = 1024 * 1024 * 1024; + $s = substr($s, 0, $index); + } + if(is_numeric($s)) { + return (float)$s * $multiplier; + } else { + LoggerLog::warn("LoggerOptionConverter::toFileSize() [{$s}] is not in proper form."); + } + return $default; + } + + /** + * Find the value corresponding to $key in + * $props. Then perform variable substitution on the + * found value. + * + * @param string $key + * @param array $props + * @return string + * + * @static + */ + function findAndSubst($key, $props) + { + $value = @$props[$key]; + if(empty($value)) { + return null; + } + return LoggerOptionConverter::substVars($value, $props); + } + + /** + * Perform variable substitution in string $val from the + * values of keys found with the {@link getSystemProperty()} method. + * + *

The variable substitution delimeters are ${ and }. + * + *

For example, if the "MY_CONSTANT" contains "value", then + * the call + * + * $s = LoggerOptionConverter::substituteVars("Value of key is ${MY_CONSTANT}."); + * + * will set the variable $s to "Value of key is value.".

+ * + *

If no value could be found for the specified key, then the + * $props parameter is searched, if the value could not + * be found there, then substitution defaults to the empty string.

+ * + *

For example, if {@link getSystemProperty()} cannot find any value for the key + * "inexistentKey", then the call + * + * $s = LoggerOptionConverter::substVars("Value of inexistentKey is [${inexistentKey}]"); + * + * will set $s to "Value of inexistentKey is []".

+ * + *

A warn is thrown if $val contains a start delimeter "${" + * which is not balanced by a stop delimeter "}" and an empty string is returned.

+ * + * @log4j-author Avy Sharell + * + * @param string $val The string on which variable substitution is performed. + * @param array $props + * @return string + * + * @static + */ + function substVars($val, $props = null) + { + LoggerLog::debug("LoggerOptionConverter::substVars():val=[{$val}]"); + + $sbuf = ''; + $i = 0; + while(true) { + $j = strpos($val, LOG4PHP_OPTION_CONVERTER_DELIM_START, $i); + if ($j === false) { + LoggerLog::debug("LoggerOptionConverter::substVars() no more variables"); + // no more variables + if ($i == 0) { // this is a simple string + LoggerLog::debug("LoggerOptionConverter::substVars() simple string"); + return $val; + } else { // add the tail string which contails no variables and return the result. + $sbuf .= substr($val, $i); + LoggerLog::debug("LoggerOptionConverter::substVars():sbuf=[{$sbuf}]. Returning sbuf"); + return $sbuf; + } + } else { + + $sbuf .= substr($val, $i, $j-$i); + LoggerLog::debug("LoggerOptionConverter::substVars():sbuf=[{$sbuf}]:i={$i}:j={$j}."); + $k = strpos($val, LOG4PHP_OPTION_CONVERTER_DELIM_STOP, $j); + if ($k === false) { + LoggerLog::warn( + "LoggerOptionConverter::substVars() " . + "'{$val}' has no closing brace. Opening brace at position {$j}." + ); + return ''; + } else { + $j += LOG4PHP_OPTION_CONVERTER_DELIM_START_LEN; + $key = substr($val, $j, $k - $j); + // first try in System properties + $replacement = LoggerOptionConverter::getSystemProperty($key, null); + // then try props parameter + if($replacement == null and $props !== null) { + $replacement = @$props[$key]; + } + + if(!empty($replacement)) { + // Do variable substitution on the replacement string + // such that we can solve "Hello ${x2}" as "Hello p1" + // the where the properties are + // x1=p1 + // x2=${x1} + $recursiveReplacement = LoggerOptionConverter::substVars($replacement, $props); + $sbuf .= $recursiveReplacement; + } + $i = $k + LOG4PHP_OPTION_CONVERTER_DELIM_STOP_LEN; + } + } + } + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/helpers/LoggerPatternConverter.php b/log4php.debug/helpers/LoggerPatternConverter.php new file mode 100644 index 0000000..3d68be8 --- /dev/null +++ b/log4php.debug/helpers/LoggerPatternConverter.php @@ -0,0 +1,504 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage helpers + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Array for fast space padding + * Used by {@link LoggerPatternConverter::spacePad()}. + */ +$GLOBALS['log4php.LoggerPatternConverter.spaces'] = array(" ", " ", " ", " ", //1,2,4,8 spaces + " ", // 16 spaces + " " ); // 32 spaces + +/** + * LoggerPatternConverter is an abstract class that provides the formatting + * functionality that derived classes need. + * + *

Conversion specifiers in a conversion patterns are parsed to + * individual PatternConverters. Each of which is responsible for + * converting a logging event in a converter specific manner.

+ * + * @author VxR + * @version $Revision: 1.13 $ + * @package log4php + * @subpackage helpers + * @abstract + * @since 0.3 + */ +class LoggerPatternConverter { + + /** + * @var LoggerPatternConverter next converter in converter chain + */ + var $next = null; + + var $min = -1; + var $max = 0x7FFFFFFF; + var $leftAlign = false; + + /** + * Constructor + * + * @param LoggerFormattingInfo $fi + */ + function LoggerPatternConverter($fi = null) + { + if ($fi !== null) { + $this->min = $fi->min; + $this->max = $fi->max; + $this->leftAlign = $fi->leftAlign; + } + } + + /** + * Derived pattern converters must override this method in order to + * convert conversion specifiers in the correct way. + * + * @param LoggerLoggingEvent $event + */ + function convert($event) {} + + /** + * A template method for formatting in a converter specific way. + * + * @param string &$sbuf string buffer + * @param LoggerLoggingEvent $e + */ + function format(&$sbuf, $e) + { + LoggerLog::debug("LoggerPatternConverter::format() sbuf='$sbuf'"); + + $s = $this->convert($e); + + LoggerLog::debug("LoggerPatternConverter::format() converted event is '$s'"); + + + if($s == null or empty($s)) { + if(0 < $this->min) + $this->spacePad($sbuf, $this->min); + return; + } + + $len = strlen($s); + + if($len > $this->max) { + $sbuf .= substr($s , 0, ($len - $this->max)); + } elseif($len < $this->min) { + if($this->leftAlign) { + $sbuf .= $s; + $this->spacePad($sbuf, ($this->min - $len)); + } else { + $this->spacePad($sbuf, ($this->min - $len)); + $sbuf .= $s; + } + } else { + $sbuf .= $s; + } + } + + + /** + * Fast space padding method. + * + * @param string &$sbuf string buffer + * @param integer $length pad length + * + * @todo reimplement using PHP string functions + */ + function spacePad(&$sbuf, $length) + { + LoggerLog::debug("LoggerPatternConverter::spacePad() sbuf='$sbuf' len='$length'"); + + while($length >= 32) { + $sbuf .= $GLOBALS['log4php.LoggerPatternConverter.spaces'][5]; + $length -= 32; + } + + for($i = 4; $i >= 0; $i--) { + if(($length & (1<<$i)) != 0) { + $sbuf .= $GLOBALS['log4php.LoggerPatternConverter.spaces'][$i]; + } + } + + // $sbuf = str_pad($sbuf, $length); + } +} + +// --------------------------------------------------------------------- +// PatternConverters +// --------------------------------------------------------------------- + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerBasicPatternConverter extends LoggerPatternConverter { + + /** + * @var integer + */ + var $type; + + /** + * Constructor + * + * @param string $formattingInfo + * @param integer $type + */ + function LoggerBasicPatternConverter($formattingInfo, $type) + { + LoggerLog::debug("LoggerBasicPatternConverter::LoggerBasicPatternConverter() type='$type'"); + + $this->LoggerPatternConverter($formattingInfo); + $this->type = $type; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + switch($this->type) { + case LOG4PHP_LOGGER_PATTERN_PARSER_RELATIVE_TIME_CONVERTER: + $timeStamp = $event->getTimeStamp(); + $startTime = LoggerLoggingEvent::getStartTime(); + return (string)(int)($timeStamp * 1000 - $startTime * 1000); + + case LOG4PHP_LOGGER_PATTERN_PARSER_THREAD_CONVERTER: + return $event->getThreadName(); + + case LOG4PHP_LOGGER_PATTERN_PARSER_LEVEL_CONVERTER: + $level = $event->getLevel(); + return $level->toString(); + + case LOG4PHP_LOGGER_PATTERN_PARSER_NDC_CONVERTER: + return $event->getNDC(); + + case LOG4PHP_LOGGER_PATTERN_PARSER_MESSAGE_CONVERTER: + return $event->getRenderedMessage(); + + default: + return ''; + } + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerLiteralPatternConverter extends LoggerPatternConverter { + + /** + * @var string + */ + var $literal; + + /** + * Constructor + * + * @param string $value + */ + function LoggerLiteralPatternConverter($value) + { + LoggerLog::debug("LoggerLiteralPatternConverter::LoggerLiteralPatternConverter() value='$value'"); + + $this->literal = $value; + } + + /** + * @param string &$sbuf + * @param LoggerLoggingEvent $event + */ + function format(&$sbuf, $event) + { + $sbuf .= $this->literal; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + return $this->literal; + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerDatePatternConverter extends LoggerPatternConverter { + + /** + * @var string + */ + var $df; + + /** + * Constructor + * + * @param string $formattingInfo + * @param string $df + */ + function LoggerDatePatternConverter($formattingInfo, $df) + { + LoggerLog::debug("LoggerDatePatternConverter::LoggerDatePatternConverter() dateFormat='$df'"); + + $this->LoggerPatternConverter($formattingInfo); + $this->df = $df; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + $timeStamp = $event->getTimeStamp(); + $usecs = round(($timeStamp - (int)$timeStamp) * 1000); + $this->df = str_replace("\u", "u", ereg_replace("[^\\]u", sprintf(',%03d', $usecs), $this->df)); + + return date($this->df, $event->getTimeStamp()); + + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerMDCPatternConverter extends LoggerPatternConverter { + + /** + * @var string + */ + var $key; + + /** + * Constructor + * + * @param string $formattingInfo + * @param string $key + */ + function LoggerMDCPatternConverter($formattingInfo, $key) + { + LoggerLog::debug("LoggerMDCPatternConverter::LoggerMDCPatternConverter() key='$key'"); + + $this->LoggerPatternConverter($formattingInfo); + $this->key = $key; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + return $event->getMDC($this->key); + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerLocationPatternConverter extends LoggerPatternConverter { + + /** + * @var integer + */ + var $type; + + /** + * Constructor + * + * @param string $formattingInfo + * @param integer $type + */ + function LoggerLocationPatternConverter($formattingInfo, $type) + { + LoggerLog::debug("LoggerLocationPatternConverter::LoggerLocationPatternConverter() type='$type'"); + + $this->LoggerPatternConverter($formattingInfo); + $this->type = $type; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + $locationInfo = $event->getLocationInformation(); + switch($this->type) { + case LOG4PHP_LOGGER_PATTERN_PARSER_FULL_LOCATION_CONVERTER: + return $locationInfo->fullInfo; + case LOG4PHP_LOGGER_PATTERN_PARSER_METHOD_LOCATION_CONVERTER: + return $locationInfo->getMethodName(); + case LOG4PHP_LOGGER_PATTERN_PARSER_LINE_LOCATION_CONVERTER: + return $locationInfo->getLineNumber(); + case LOG4PHP_LOGGER_PATTERN_PARSER_FILE_LOCATION_CONVERTER: + return $locationInfo->getFileName(); + default: + return ''; + } + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + * @abstract + */ +class LoggerNamedPatternConverter extends LoggerPatternConverter { + + /** + * @var integer + */ + var $precision; + + /** + * Constructor + * + * @param string $formattingInfo + * @param integer $precision + */ + function LoggerNamedPatternConverter($formattingInfo, $precision) + { + LoggerLog::debug("LoggerNamedPatternConverter::LoggerNamedPatternConverter() precision='$precision'"); + + $this->LoggerPatternConverter($formattingInfo); + $this->precision = $precision; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + * @abstract + */ + function getFullyQualifiedName($event) + { + // abstract + return; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function convert($event) + { + $n = $this->getFullyQualifiedName($event); + if ($this->precision <= 0) { + return $n; + } else { + $len = strlen($n); + + // We substract 1 from 'len' when assigning to 'end' to avoid out of + // bounds exception in return r.substring(end+1, len). This can happen if + // precision is 1 and the category name ends with a dot. + $end = $len -1 ; + for($i = $this->precision; $i > 0; $i--) { + $end = strrpos(substr($n, 0, ($end - 1)), '.'); + if ($end == false) + return $n; + } + return substr($n, ($end + 1), $len); + } + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerClassNamePatternConverter extends LoggerNamedPatternConverter { + + /** + * Constructor + * + * @param string $formattingInfo + * @param integer $precision + */ + function LoggerClassNamePatternConverter($formattingInfo, $precision) + { + LoggerLog::debug("LoggerClassNamePatternConverter::LoggerClassNamePatternConverter() precision='$precision'"); + + $this->LoggerNamedPatternConverter($formattingInfo, $precision); + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function getFullyQualifiedName($event) + { + return $event->fqcn; + } +} + +/** + * @author VxR + * @package log4php + * @subpackage helpers + */ +class LoggerCategoryPatternConverter extends LoggerNamedPatternConverter { + + /** + * Constructor + * + * @param string $formattingInfo + * @param integer $precision + */ + function LoggerCategoryPatternConverter($formattingInfo, $precision) + { + LoggerLog::debug("LoggerCategoryPatternConverter::LoggerCategoryPatternConverter() precision='$precision'"); + + $this->LoggerNamedPatternConverter($formattingInfo, $precision); + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function getFullyQualifiedName($event) + { + return $event->getLoggerName(); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/helpers/LoggerPatternParser.php b/log4php.debug/helpers/LoggerPatternParser.php new file mode 100644 index 0000000..307fbd7 --- /dev/null +++ b/log4php.debug/helpers/LoggerPatternParser.php @@ -0,0 +1,419 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage helpers + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +if (!defined('LOG4PHP_LINE_SEP')) { + if (substr(php_uname(), 0, 7) == "Windows") { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\r\n"); + } else { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\n"); + } +} + +/** + */ +require_once(LOG4PHP_DIR . '/helpers/LoggerFormattingInfo.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerPatternConverter.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +define('LOG4PHP_LOGGER_PATTERN_PARSER_ESCAPE_CHAR', '%'); + +define('LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE', 0); +define('LOG4PHP_LOGGER_PATTERN_PARSER_CONVERTER_STATE', 1); +define('LOG4PHP_LOGGER_PATTERN_PARSER_MINUS_STATE', 2); +define('LOG4PHP_LOGGER_PATTERN_PARSER_DOT_STATE', 3); +define('LOG4PHP_LOGGER_PATTERN_PARSER_MIN_STATE', 4); +define('LOG4PHP_LOGGER_PATTERN_PARSER_MAX_STATE', 5); + +define('LOG4PHP_LOGGER_PATTERN_PARSER_FULL_LOCATION_CONVERTER', 1000); +define('LOG4PHP_LOGGER_PATTERN_PARSER_METHOD_LOCATION_CONVERTER', 1001); +define('LOG4PHP_LOGGER_PATTERN_PARSER_CLASS_LOCATION_CONVERTER', 1002); +define('LOG4PHP_LOGGER_PATTERN_PARSER_FILE_LOCATION_CONVERTER', 1003); +define('LOG4PHP_LOGGER_PATTERN_PARSER_LINE_LOCATION_CONVERTER', 1004); + +define('LOG4PHP_LOGGER_PATTERN_PARSER_RELATIVE_TIME_CONVERTER', 2000); +define('LOG4PHP_LOGGER_PATTERN_PARSER_THREAD_CONVERTER', 2001); +define('LOG4PHP_LOGGER_PATTERN_PARSER_LEVEL_CONVERTER', 2002); +define('LOG4PHP_LOGGER_PATTERN_PARSER_NDC_CONVERTER', 2003); +define('LOG4PHP_LOGGER_PATTERN_PARSER_MESSAGE_CONVERTER', 2004); + +define('LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ISO8601', 'Y-m-d H:i:s,u'); +define('LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ABSOLUTE', 'H:i:s'); +define('LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_DATE', 'd M Y H:i:s,u'); + +/** + * Most of the work of the {@link LoggerPatternLayout} class + * is delegated to the {@link LoggerPatternParser} class. + * + *

It is this class that parses conversion patterns and creates + * a chained list of {@link LoggerPatternConverter} converters.

+ * + * @author VxR + * @version $Revision: 1.10 $ + * @package log4php + * @subpackage helpers + * + * @since 0.3 + */ +class LoggerPatternParser { + + var $state; + var $currentLiteral; + var $patternLength; + var $i; + + /** + * @var LoggerPatternConverter + */ + var $head = null; + + /** + * @var LoggerPatternConverter + */ + var $tail = null; + + /** + * @var LoggerFormattingInfo + */ + var $formattingInfo; + + /** + * @var string pattern to parse + */ + var $pattern; + + /** + * Constructor + * + * @param string $pattern + */ + function LoggerPatternParser($pattern) + { + LoggerLog::debug("LoggerPatternParser::LoggerPatternParser() pattern='$pattern'"); + + $this->pattern = $pattern; + $this->patternLength = strlen($pattern); + $this->formattingInfo = new LoggerFormattingInfo(); + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE; + } + + /** + * @param LoggerPatternConverter $pc + */ + function addToList($pc) + { + // LoggerLog::debug("LoggerPatternParser::addToList()"); + + if($this->head == null) { + $this->head = $pc; + $this->tail =& $this->head; + } else { + $this->tail->next = $pc; + $this->tail =& $this->tail->next; + } + } + + /** + * @return string + */ + function extractOption() + { + if(($this->i < $this->patternLength) and ($this->pattern{$this->i} == '{')) { + $end = strpos($this->pattern, '}' , $this->i); + if ($end !== false) { + $r = substr($this->pattern, ($this->i + 1), ($end - $this->i - 1)); + $this->i= $end + 1; + return $r; + } + } + return null; + } + + /** + * The option is expected to be in decimal and positive. In case of + * error, zero is returned. + */ + function extractPrecisionOption() + { + $opt = $this->extractOption(); + $r = 0; + if ($opt !== null) { + if (is_numeric($opt)) { + $r = (int)$opt; + if($r <= 0) { + LoggerLog::warn("Precision option ({$opt}) isn't a positive integer."); + $r = 0; + } + } else { + LoggerLog::warn("Category option \"{$opt}\" not a decimal integer."); + } + } + return $r; + } + + function parse() + { + LoggerLog::debug("LoggerPatternParser::parse()"); + + $c = ''; + $this->i = 0; + $this->currentLiteral = ''; + while ($this->i < $this->patternLength) { + $c = $this->pattern{$this->i++}; +// LoggerLog::debug("LoggerPatternParser::parse() char is now '$c' and currentLiteral is '{$this->currentLiteral}'"); + switch($this->state) { + case LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE: + // LoggerLog::debug("LoggerPatternParser::parse() state is 'LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE'"); + // In literal state, the last char is always a literal. + if($this->i == $this->patternLength) { + $this->currentLiteral .= $c; + continue; + } + if($c == LOG4PHP_LOGGER_PATTERN_PARSER_ESCAPE_CHAR) { + // LoggerLog::debug("LoggerPatternParser::parse() char is an escape char"); + // peek at the next char. + switch($this->pattern{$this->i}) { + case LOG4PHP_LOGGER_PATTERN_PARSER_ESCAPE_CHAR: + // LoggerLog::debug("LoggerPatternParser::parse() next char is an escape char"); + $this->currentLiteral .= $c; + $this->i++; // move pointer + break; + case 'n': + // LoggerLog::debug("LoggerPatternParser::parse() next char is 'n'"); + $this->currentLiteral .= LOG4PHP_LINE_SEP; + $this->i++; // move pointer + break; + default: + if(strlen($this->currentLiteral) != 0) { + $this->addToList(new LoggerLiteralPatternConverter($this->currentLiteral)); + LoggerLog::debug("LoggerPatternParser::parse() Parsed LITERAL converter: \"{$this->currentLiteral}\"."); + } + $this->currentLiteral = $c; + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_CONVERTER_STATE; + $this->formattingInfo->reset(); + } + } else { + $this->currentLiteral .= $c; + } + break; + case LOG4PHP_LOGGER_PATTERN_PARSER_CONVERTER_STATE: + // LoggerLog::debug("LoggerPatternParser::parse() state is 'LOG4PHP_LOGGER_PATTERN_PARSER_CONVERTER_STATE'"); + $this->currentLiteral .= $c; + switch($c) { + case '-': + $this->formattingInfo->leftAlign = true; + break; + case '.': + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_DOT_STATE; + break; + default: + if(ord($c) >= ord('0') and ord($c) <= ord('9')) { + $this->formattingInfo->min = ord($c) - ord('0'); + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_MIN_STATE; + } else { + $this->finalizeConverter($c); + } + } // switch + break; + case LOG4PHP_LOGGER_PATTERN_PARSER_MIN_STATE: + // LoggerLog::debug("LoggerPatternParser::parse() state is 'LOG4PHP_LOGGER_PATTERN_PARSER_MIN_STATE'"); + $this->currentLiteral .= $c; + if(ord($c) >= ord('0') and ord($c) <= ord('9')) { + $this->formattingInfo->min = ($this->formattingInfo->min * 10) + (ord(c) - ord('0')); + } elseif ($c == '.') { + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_DOT_STATE; + } else { + $this->finalizeConverter($c); + } + break; + case LOG4PHP_LOGGER_PATTERN_PARSER_DOT_STATE: + // LoggerLog::debug("LoggerPatternParser::parse() state is 'LOG4PHP_LOGGER_PATTERN_PARSER_DOT_STATE'"); + $this->currentLiteral .= $c; + if(ord($c) >= ord('0') and ord($c) <= ord('9')) { + $this->formattingInfo->max = ord($c) - ord('0'); + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_MAX_STATE; + } else { + LoggerLog::warn("LoggerPatternParser::parse() Error occured in position {$this->i}. Was expecting digit, instead got char \"{$c}\"."); + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE; + } + break; + case LOG4PHP_LOGGER_PATTERN_PARSER_MAX_STATE: + // LoggerLog::debug("LoggerPatternParser::parse() state is 'LOG4PHP_LOGGER_PATTERN_PARSER_MAX_STATE'"); + $this->currentLiteral .= $c; + if(ord($c) >= ord('0') and ord($c) <= ord('9')) { + $this->formattingInfo->max = ($this->formattingInfo->max * 10) + (ord($c) - ord('0')); + } else { + $this->finalizeConverter($c); + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE; + } + break; + } // switch + } // while + if(strlen($this->currentLiteral) != 0) { + $this->addToList(new LoggerLiteralPatternConverter($this->currentLiteral)); + // LoggerLog::debug("LoggerPatternParser::parse() Parsed LITERAL converter: \"{$this->currentLiteral}\"."); + } + return $this->head; + } + + function finalizeConverter($c) + { + LoggerLog::debug("LoggerPatternParser::finalizeConverter() with char '$c'"); + + $pc = null; + switch($c) { + case 'c': + $pc = new LoggerCategoryPatternConverter($this->formattingInfo, $this->extractPrecisionOption()); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() CATEGORY converter."); + // $this->formattingInfo->dump(); + $this->currentLiteral = ''; + break; + case 'C': + $pc = new LoggerClassNamePatternConverter($this->formattingInfo, $this->extractPrecisionOption()); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() CLASSNAME converter."); + //$this->formattingInfo->dump(); + $this->currentLiteral = ''; + break; + case 'd': + $dateFormatStr = LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ISO8601; // ISO8601_DATE_FORMAT; + $dOpt = $this->extractOption(); + + if($dOpt !== null) + $dateFormatStr = $dOpt; + + if ($dateFormatStr == 'ISO8601') { + $df = LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ISO8601; + } elseif($dateFormatStr == 'ABSOLUTE') { + $df = LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ABSOLUTE; + } elseif($dateFormatStr == 'DATE') { + $df = LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_DATE; + } else { + $df = $dateFormatStr; + if ($df == null) { + $df = LOG4PHP_LOGGER_PATTERN_PARSER_DATE_FORMAT_ISO8601; + } + } + $pc = new LoggerDatePatternConverter($this->formattingInfo, $df); + $this->currentLiteral = ''; + break; + case 'F': + $pc = new LoggerLocationPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_FILE_LOCATION_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() File name converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'l': + $pc = new LoggerLocationPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_FULL_LOCATION_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() Location converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'L': + $pc = new LoggerLocationPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_LINE_LOCATION_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() LINE NUMBER converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'm': + $pc = new LoggerBasicPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_MESSAGE_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() MESSAGE converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'M': + $pc = new LoggerLocationPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_METHOD_LOCATION_CONVERTER); + //LogLog.debug("METHOD converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'p': + $pc = new LoggerBasicPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_LEVEL_CONVERTER); + //LogLog.debug("LEVEL converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'r': + $pc = new LoggerBasicPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_RELATIVE_TIME_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() RELATIVE TIME converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 't': + $pc = new LoggerBasicPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_THREAD_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() THREAD converter."); + //formattingInfo.dump(); + $this->currentLiteral = ''; + break; + case 'u': + if($this->i < $this->patternLength) { + $cNext = $this->pattern{$this->i}; + if(ord($cNext) >= ord('0') and ord($cNext) <= ord('9')) { + $pc = new LoggerUserFieldPatternConverter($this->formattingInfo, (string)(ord($cNext) - ord('0'))); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() USER converter [{$cNext}]."); + // formattingInfo.dump(); + $this->currentLiteral = ''; + $this->i++; + } else { + LoggerLog::warn("LoggerPatternParser::finalizeConverter() Unexpected char '{$cNext}' at position {$this->i}."); + } + } + break; + case 'x': + $pc = new LoggerBasicPatternConverter($this->formattingInfo, LOG4PHP_LOGGER_PATTERN_PARSER_NDC_CONVERTER); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() NDC converter."); + $this->currentLiteral = ''; + break; + + case 'X': + $xOpt = $this->extractOption(); + $pc = new LoggerMDCPatternConverter($this->formattingInfo, $xOpt); + LoggerLog::debug("LoggerPatternParser::finalizeConverter() MDC converter."); + $this->currentLiteral = ''; + break; + default: + LoggerLog::warn("LoggerPatternParser::finalizeConverter() Unexpected char [$c] at position {$this->i} in conversion pattern."); + $pc = new LoggerLiteralPatternConverter($this->currentLiteral); + $this->currentLiteral = ''; + } + $this->addConverter($pc); + } + + function addConverter($pc) + { + $this->currentLiteral = ''; + // Add the pattern converter to the list. + $this->addToList($pc); + // Next pattern is assumed to be a literal. + $this->state = LOG4PHP_LOGGER_PATTERN_PARSER_LITERAL_STATE; + // Reset formatting info + $this->formattingInfo->reset(); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/helpers/LoggerTransform.php b/log4php.debug/helpers/LoggerTransform.php new file mode 100644 index 0000000..6aef42d --- /dev/null +++ b/log4php.debug/helpers/LoggerTransform.php @@ -0,0 +1,95 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage helpers + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +define('LOG4PHP_LOGGER_TRANSFORM_CDATA_START', ''); +define('LOG4PHP_LOGGER_TRANSFORM_CDATA_PSEUDO_END', ']]>'); +define('LOG4PHP_LOGGER_TRANSFORM_CDATA_EMBEDDED_END', + LOG4PHP_LOGGER_TRANSFORM_CDATA_END . + LOG4PHP_LOGGER_TRANSFORM_CDATA_PSEUDO_END . + LOG4PHP_LOGGER_TRANSFORM_CDATA_START +); + +/** + * Utility class for transforming strings. + * + * @log4j-class org.apache.log4j.helpers.Transform + * + * @author VxR + * @package log4php + * @subpackage helpers + * @since 0.7 + */ +class LoggerTransform { + + /** + * This method takes a string which may contain HTML tags (ie, + * <b>, <table>, etc) and replaces any '<' and '>' + * characters with respective predefined entity references. + * + * @param string $input The text to be converted. + * @return string The input string with the characters '<' and '>' replaced with + * &lt; and &gt; respectively. + * @static + */ + function escapeTags($input) + { + //Check if the string is null or zero length -- if so, return + //what was sent in. + + if(empty($input)) + return $input; + + //Use a StringBuffer in lieu of String concatenation -- it is + //much more efficient this way. + + return htmlspecialchars($input, ENT_NOQUOTES); + } + + /** + * Ensures that embeded CDEnd strings (]]>) are handled properly + * within message, NDC and throwable tag text. + * + * @param string $buf String holding the XML data to this point. The + * initial CDStart () + * of the CDATA section are the responsibility of + * the calling method. + * @param string &str The String that is inserted into an existing + * CDATA Section within buf. + * @static + */ + function appendEscapingCDATA(&$buf, $str) + { + if(empty($str)) + return; + + $rStr = str_replace( + LOG4PHP_LOGGER_TRANSFORM_CDATA_END, + LOG4PHP_LOGGER_TRANSFORM_CDATA_EMBEDDED_END, + $str + ); + $buf .= $rStr; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/layouts/LoggerLayoutHtml.php b/log4php.debug/layouts/LoggerLayoutHtml.php new file mode 100644 index 0000000..1c3410b --- /dev/null +++ b/log4php.debug/layouts/LoggerLayoutHtml.php @@ -0,0 +1,256 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage layouts + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +if (!defined('LOG4PHP_LINE_SEP')) { + if (substr(php_uname(), 0, 7) == "Windows") { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\r\n"); + } else { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\n"); + } +} + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerLoggingEvent.php'); + +/** + * This layout outputs events in a HTML table. + * + * Parameters are: {@link $title}, {@link $locationInfo}. + * + * @author VxR + * @version $Revision: 1.14 $ + * @package log4php + * @subpackage layouts + */ +class LoggerLayoutHtml extends LoggerLayout { + + /** + * The LocationInfo option takes a boolean value. By + * default, it is set to false which means there will be no location + * information output by this layout. If the the option is set to + * true, then the file name and line number of the statement + * at the origin of the log statement will be output. + * + *

If you are embedding this layout within a {@link LoggerAppenderMail} + * or a {@link LoggerAppenderMailEvent} then make sure to set the + * LocationInfo option of that appender as well. + * @var boolean + */ + var $locationInfo = false; + + /** + * The Title option takes a String value. This option sets the + * document title of the generated HTML document. + * Defaults to 'Log4php Log Messages'. + * @var string + */ + var $title = "Log4php Log Messages"; + + /** + * Constructor + */ + function LoggerLayoutHtml() + { + return; + } + + /** + * The LocationInfo option takes a boolean value. By + * default, it is set to false which means there will be no location + * information output by this layout. If the the option is set to + * true, then the file name and line number of the statement + * at the origin of the log statement will be output. + * + *

If you are embedding this layout within a {@link LoggerAppenderMail} + * or a {@link LoggerAppenderMailEvent} then make sure to set the + * LocationInfo option of that appender as well. + */ + function setLocationInfo($flag) + { + if (is_bool($flag)) { + $this->locationInfo = $flag; + } else { + $this->locationInfo = (bool)(strtolower($flag) == 'true'); + } + } + + /** + * Returns the current value of the LocationInfo option. + */ + function getLocationInfo() + { + return $this->locationInfo; + } + + /** + * The Title option takes a String value. This option sets the + * document title of the generated HTML document. + * Defaults to 'Log4php Log Messages'. + */ + function setTitle($title) + { + $this->title = $title; + } + + /** + * @return string Returns the current value of the Title option. + */ + function getTitle() + { + return $this->title; + } + + /** + * @return string Returns the content type output by this layout, i.e "text/html". + */ + function getContentType() + { + return "text/html"; + } + + /** + * No options to activate. + */ + function activateOptions() + { + return true; + } + + /** + * @param LoggerLoggingEvent $event + * @return string + */ + function format($event) + { + $sbuf = LOG4PHP_LINE_SEP . "" . LOG4PHP_LINE_SEP; + + $sbuf .= ""; + + $eventTime = (float)$event->getTimeStamp(); + $eventStartTime = (float)LoggerLoggingEvent::getStartTime(); + $sbuf .= number_format(($eventTime - $eventStartTime) * 1000, 0, '', ''); + $sbuf .= "" . LOG4PHP_LINE_SEP; + + $sbuf .= "getThreadName() . " thread\">"; + $sbuf .= $event->getThreadName(); + $sbuf .= "" . LOG4PHP_LINE_SEP; + + $sbuf .= ""; + + $level = $event->getLevel(); + + if ($level->equals(LoggerLevel::getLevelDebug())) { + $sbuf .= ""; + $sbuf .= $level->toString(); + $sbuf .= ""; + }elseif($level->equals(LoggerLevel::getLevelWarn())) { + $sbuf .= ""; + $sbuf .= $level->toString(); + $sbuf .= ""; + } else { + $sbuf .= $level->toString(); + } + $sbuf .= "" . LOG4PHP_LINE_SEP; + + $sbuf .= "getLoggerName(), ENT_QUOTES) . " category\">"; + $sbuf .= htmlentities($event->getLoggerName(), ENT_QUOTES); + $sbuf .= "" . LOG4PHP_LINE_SEP; + + if ($this->locationInfo) { + $locInfo = $event->getLocationInformation(); + $sbuf .= ""; + $sbuf .= htmlentities($locInfo->getFileName(), ENT_QUOTES). ':' . $locInfo->getLineNumber(); + $sbuf .= "" . LOG4PHP_LINE_SEP; + } + + $sbuf .= ""; + $sbuf .= htmlentities($event->getRenderedMessage(), ENT_QUOTES); + $sbuf .= "" . LOG4PHP_LINE_SEP; + + $sbuf .= "" . LOG4PHP_LINE_SEP; + + if ($event->getNDC() != null) { + $sbuf .= ""; + $sbuf .= "NDC: " . htmlentities($event->getNDC(), ENT_QUOTES); + $sbuf .= "" . LOG4PHP_LINE_SEP; + } + + return $sbuf; + } + + /** + * @return string Returns appropriate HTML headers. + */ + function getHeader() + { + $sbuf = "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . $this->title . "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "


" . LOG4PHP_LINE_SEP; + $sbuf .= "Log session start time " . strftime('%c', time()) . "
" . LOG4PHP_LINE_SEP; + $sbuf .= "
" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + if ($this->locationInfo) + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + $sbuf .= "" . LOG4PHP_LINE_SEP; + + return $sbuf; + } + + /** + * @return string Returns the appropriate HTML footers. + */ + function getFooter() + { + $sbuf = "
TimeThreadLevelCategoryFile:LineMessage
" . LOG4PHP_LINE_SEP; + $sbuf .= "
" . LOG4PHP_LINE_SEP; + $sbuf .= ""; + + return $sbuf; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/layouts/LoggerLayoutSimple.php b/log4php.debug/layouts/LoggerLayoutSimple.php new file mode 100644 index 0000000..3a479a3 --- /dev/null +++ b/log4php.debug/layouts/LoggerLayoutSimple.php @@ -0,0 +1,84 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage layouts + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +if (!defined('LOG4PHP_LINE_SEP')) { + if (substr(php_uname(), 0, 7) == "Windows") { + define('LOG4PHP_LINE_SEP', "\r\n"); + } else { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\n"); + } +} + + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); + +/** + * A simple layout. + * + * Returns the log statement in a format consisting of the + * level, followed by " - " and then the message. + * For example, + * INFO - "A message" + * + * @author VxR + * @version $Revision: 1.8 $ + * @package log4php + * @subpackage layouts + */ +class LoggerLayoutSimple extends LoggerLayout { + + /** + * Constructor + */ + function LoggerLayoutSimple() + { + return; + } + + function activateOptions() + { + return; + } + + /** + * Returns the log statement in a format consisting of the + * level, followed by " - " and then the + * message. For example, + * INFO - "A message" + * + * @param LoggerLoggingEvent $event + * @return string + */ + function format($event) + { + $level = $event->getLevel(); + return $level->toString() . ' - ' . $event->getRenderedMessage(). LOG4PHP_LINE_SEP; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/layouts/LoggerLayoutTTCC.php b/log4php.debug/layouts/LoggerLayoutTTCC.php new file mode 100644 index 0000000..e90524f --- /dev/null +++ b/log4php.debug/layouts/LoggerLayoutTTCC.php @@ -0,0 +1,240 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage layouts + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +if (!defined('LOG4PHP_LINE_SEP')) { + if (substr(php_uname(), 0, 7) == "Windows") { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\r\n"); + } else { + /** + * @ignore + */ + define('LOG4PHP_LINE_SEP', "\n"); + } +} + +/** + */ +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); + +/** + * String constant designating no time information. Current value of + * this constant is NULL. + */ +define ('LOG4PHP_LOGGER_LAYOUT_NULL_DATE_FORMAT', 'NULL'); + +/** + * String constant designating relative time. Current value of + * this constant is RELATIVE. + */ +define ('LOG4PHP_LOGGER_LAYOUT_RELATIVE_TIME_DATE_FORMAT', 'RELATIVE'); + +/** + * TTCC layout format consists of time, thread, category and nested + * diagnostic context information, hence the name. + * + *

Each of the four fields can be individually enabled or + * disabled. The time format depends on the DateFormat used.

+ * + *

If no dateFormat is specified it defaults to '%c'. + * See php {@link PHP_MANUAL#date} function for details.

+ * + * Params: + * - {@link $threadPrinting} (true|false) enable/disable pid reporting. + * - {@link $categoryPrefixing} (true|false) enable/disable logger category reporting. + * - {@link $contextPrinting} (true|false) enable/disable NDC reporting. + * - {@link $microSecondsPrinting} (true|false) enable/disable micro seconds reporting in timestamp. + * - {@link $dateFormat} (string) set date format. See php {@link PHP_MANUAL#date} function for details. + * + * @author VxR + * @version $Revision: 1.12 $ + * @package log4php + * @subpackage layouts + */ +class LoggerLayoutTTCC extends LoggerLayout { + + // Internal representation of options + var $threadPrinting = true; + var $categoryPrefixing = true; + var $contextPrinting = true; + var $microSecondsPrinting = true; + + /** + * @var string date format. See {@link PHP_MANUAL#strftime} for details + */ + var $dateFormat = '%c'; + + /** + * Constructor + * + * @param string date format + * @see dateFormat + */ + function LoggerLayoutTTCC($dateFormat = '') + { + if (!empty($dateFormat)) + $this->dateFormat = $dateFormat; + return; + } + + /** + * The ThreadPrinting option specifies whether the name of the + * current thread is part of log output or not. This is true by default. + */ + function setThreadPrinting($threadPrinting) + { + + $this->threadPrinting = is_bool($threadPrinting) ? + $threadPrinting : + (bool)(strtolower($threadPrinting) == 'true'); + } + + /** + * @return boolean Returns value of the ThreadPrinting option. + */ + function getThreadPrinting() { + return $this->threadPrinting; + } + + /** + * The CategoryPrefixing option specifies whether {@link Category} + * name is part of log output or not. This is true by default. + */ + function setCategoryPrefixing($categoryPrefixing) + { + $this->categoryPrefixing = is_bool($categoryPrefixing) ? + $categoryPrefixing : + (bool)(strtolower($categoryPrefixing) == 'true'); + } + + /** + * @return boolean Returns value of the CategoryPrefixing option. + */ + function getCategoryPrefixing() { + return $this->categoryPrefixing; + } + + /** + * The ContextPrinting option specifies log output will include + * the nested context information belonging to the current thread. + * This is true by default. + */ + function setContextPrinting($contextPrinting) { + $this->contextPrinting = is_bool($contextPrinting) ? + $contextPrinting : + (bool)(strtolower($contextPrinting) == 'true'); + } + + /** + * @return boolean Returns value of the ContextPrinting option. + */ + function getContextPrinting() + { + return $this->contextPrinting; + } + + /** + * The MicroSecondsPrinting option specifies if microseconds infos + * should be printed at the end of timestamp. + * This is true by default. + */ + function setMicroSecondsPrinting($microSecondsPrinting) { + $this->microSecondsPrinting = is_bool($microSecondsPrinting) ? + $microSecondsPrinting : + (bool)(strtolower($microSecondsPrinting) == 'true'); + } + + /** + * @return boolean Returns value of the MicroSecondsPrinting option. + */ + function getMicroSecondsPrinting() + { + return $this->microSecondsPrinting; + } + + + function setDateFormat($dateFormat) + { + $this->dateFormat = $dateFormat; + } + + /** + * @return string + */ + function getDateFormat() + { + return $this->dateFormat; + } + + /** + * In addition to the level of the statement and message, the + * returned string includes time, thread, category. + *

Time, thread, category are printed depending on options. + * + * @param LoggerLoggingEvent $event + * @return string + */ + function format($event) + { + $timeStamp = (float)$event->getTimeStamp(); + $format = strftime($this->dateFormat, (int)$timeStamp); + + if ($this->microSecondsPrinting) { + $usecs = round(($timeStamp - (int)$timeStamp) * 1000); + $format .= sprintf(',%03d', $usecs); + } + + $format .= ' '; + + if ($this->threadPrinting) + $format .= '['.getmypid().'] '; + + $level = $event->getLevel(); + $format .= $level->toString().' '; + + if($this->categoryPrefixing) { + $format .= $event->getLoggerName().' '; + } + + if($this->contextPrinting) { + $ndc = $event->getNDC(); + if($ndc != null) { + $format .= $ndc.' '; + } + } + + $format .= '- '.$event->getRenderedMessage(); + $format .= LOG4PHP_LINE_SEP; + + return $format; + } + + function ignoresThrowable() + { + return true; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/layouts/LoggerPatternLayout.php b/log4php.debug/layouts/LoggerPatternLayout.php new file mode 100644 index 0000000..6c21ef2 --- /dev/null +++ b/log4php.debug/layouts/LoggerPatternLayout.php @@ -0,0 +1,260 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage layouts + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/helpers/LoggerPatternParser.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Default conversion Pattern + */ +define('LOG4PHP_LOGGER_PATTERN_LAYOUT_DEFAULT_CONVERSION_PATTERN', '%m%n'); + +define('LOG4PHP_LOGGER_PATTERN_LAYOUT_TTCC_CONVERSION_PATTERN', '%r [%t] %p %c %x - %m%n'); + +/** + * A flexible layout configurable with pattern string. + * + *

The goal of this class is to {@link format()} a {@link LoggerLoggingEvent} and return the results as a string. + * The results depend on the conversion pattern. + * The conversion pattern is closely related to the conversion pattern of the printf function in C. + * A conversion pattern is composed of literal text and format control expressions called conversion specifiers. + * You are free to insert any literal text within the conversion pattern.

+ * + *

Each conversion specifier starts with a percent sign (%) and is followed by optional + * format modifiers and a conversion character.

+ * + *

The conversion character specifies the type of data, e.g. category, priority, date, thread name. + * The format modifiers control such things as field width, padding, left and right justification.

+ * + * The following is a simple example. + * + *

Let the conversion pattern be "%-5p [%t]: %m%n" and assume that the log4php environment + * was set to use a LoggerPatternLayout.

+ * + * Then the statements + * + * $root =& LoggerManager::getRoot(); + * $root->debug("Message 1"); + * $root->warn("Message 2"); + * + * would yield the output + *
+ *  DEBUG [main]: Message 1
+ *  WARN  [main]: Message 2
+ * 
+ * + *

Note that there is no explicit separator between text and conversion specifiers.

+ * + *

The pattern parser knows when it has reached the end of a conversion specifier when it reads a conversion character. + * In the example above the conversion specifier %-5p means the priority of the logging event should be + * left justified to a width of five characters.

+ * + * Not all log4j conversion characters are implemented. The recognized conversion characters are: + * - c Used to output the category of the logging event. The category conversion specifier can be optionally followed by precision specifier, that is a decimal constant in brackets. + * If a precision specifier is given, then only the corresponding number of right most components of the category name will be printed. + * By default the category name is printed in full. + * For example, for the category name "a.b.c" the pattern %c{2} will output "b.c". + * - C Used to output the fully qualified class name of the caller issuing the logging request. + * This conversion specifier can be optionally followed by precision specifier, that is a decimal constant in brackets. + * If a precision specifier is given, then only the corresponding number of right most components of the class name will be printed. + * By default the class name is output in fully qualified form. + * For example, for the class name "org.apache.xyz.SomeClass", the pattern %C{1} will output "SomeClass". + * - d Used to output the date of the logging event. + * The date conversion specifier may be followed by a date format specifier enclosed between braces. + * The format specifier follows the {@link PHP_MANUAL#date} function. + * Note that the special character u is used to as microseconds replacement (to avoid replacement, + * use \u). + * For example, %d{H:i:s,u} or %d{d M Y H:i:s,u}. If no date format specifier is given then ISO8601 format is assumed. + * The date format specifier admits the same syntax as the time pattern string of the SimpleDateFormat. + * It is recommended to use the predefined log4php date formatters. + * These can be specified using one of the strings "ABSOLUTE", "DATE" and "ISO8601" for specifying + * AbsoluteTimeDateFormat, DateTimeDateFormat and respectively ISO8601DateFormat. + * For example, %d{ISO8601} or %d{ABSOLUTE}. + * - F Used to output the file name where the logging request was issued. + * - l Used to output location information of the caller which generated the logging event. + * - L Used to output the line number from where the logging request was issued. + * - m Used to output the application supplied message associated with the logging event. + * - M Used to output the method name where the logging request was issued. + * - p Used to output the priority of the logging event. + * - r Used to output the number of milliseconds elapsed since the start of + * the application until the creation of the logging event. + * - t Used to output the name of the thread that generated the logging event. + * - x Used to output the NDC (nested diagnostic context) associated with + * the thread that generated the logging event. + * - X Used to output the MDC (mapped diagnostic context) associated with + * the thread that generated the logging event. + * The X conversion character must be followed by the key for the map placed between braces, + * as in %X{clientNumber} where clientNumber is the key. + * The value in the MDC corresponding to the key will be output. + * See {@link LoggerMDC} class for more details. + * - % The sequence %% outputs a single percent sign. + * + *

By default the relevant information is output as is. + * However, with the aid of format modifiers it is possible to change the minimum field width, + * the maximum field width and justification.

+ * + *

The optional format modifier is placed between the percent sign and the conversion character.

+ *

The first optional format modifier is the left justification flag which is just the minus (-) character. + * Then comes the optional minimum field width modifier. + * This is a decimal constant that represents the minimum number of characters to output. + * If the data item requires fewer characters, it is padded on either the left or the right until the minimum width is reached. The default is to pad on the left (right justify) but you can specify right padding with the left justification flag. The padding character is space. If the data item is larger than the minimum field width, the field is expanded to accommodate the data. + * The value is never truncated.

+ * + *

This behavior can be changed using the maximum field width modifier which is designated by a period + * followed by a decimal constant. + * If the data item is longer than the maximum field, + * then the extra characters are removed from the beginning of the data item and not from the end. + * For example, it the maximum field width is eight and the data item is ten characters long, + * then the first two characters of the data item are dropped. + * This behavior deviates from the printf function in C where truncation is done from the end.

+ * + *

Below are various format modifier examples for the category conversion specifier.

+ *
+ *   Format modifier  left justify  minimum width  maximum width  comment
+ *   %20c             false         20             none           Left pad with spaces if the category name 
+ *                                                                is less than 20 characters long.
+ *   %-20c            true          20             none           Right pad with spaces if the category name 
+ *                                                                is less than 20 characters long.  
+ *   %.30c            NA            none           30             Truncate from the beginning if the category name 
+ *                                                                is longer than 30 characters.  
+ *   %20.30c          false         20             30             Left pad with spaces if the category name 
+ *                                                                is shorter than 20 characters. 
+ *                                                                However, if category name is longer than 30 chars, 
+ *                                                                then truncate from the beginning.  
+ *   %-20.30c         true          20             30             Right pad with spaces if the category name is 
+ *                                                                shorter than 20 chars. 
+ *                                                                However, if category name is longer than 30 chars, 
+ *                                                                then truncate from the beginning.  
+ * 
+ * + * @author VxR + * @version $Revision: 1.7 $ + * @package log4php + * @subpackage layouts + * @since 0.3 + */ +class LoggerPatternLayout extends LoggerLayout { + + /** + * @var string output buffer appended to when format() is invoked + */ + var $sbuf; + + /** + * @var string + */ + var $pattern; + + /** + * @var LoggerPatternConverter head chain + */ + var $head; + + var $timezone; + + /** + * Constructs a PatternLayout using the + * {@link LOG4PHP_LOGGER_PATTERN_LAYOUT_DEFAULT_LAYOUT_PATTERN}. + * The default pattern just produces the application supplied message. + */ + function LoggerPatternLayout($pattern = null) + { + if ($pattern === null) { + $this->LoggerPatternLayout(LOG4PHP_LOGGER_PATTERN_LAYOUT_DEFAULT_CONVERSION_PATTERN); + } else { + $this->pattern = $pattern; + } + } + + /** + * Set the ConversionPattern option. This is the string which + * controls formatting and consists of a mix of literal content and + * conversion specifiers. + */ + function setConversionPattern($conversionPattern) + { + $this->pattern = $conversionPattern; + $patternParser = $this->createPatternParser($this->pattern); + $this->head = $patternParser->parse(); + } + + /** + * @return string Returns the value of the ConversionPattern option. + */ + function getConversionPattern() + { + return $this->pattern; + } + + /** + * Does not do anything as options become effective + */ + function activateOptions() + { + // nothing to do. + } + + function ignoresThrowable() + { + return true; + } + + /** + * Returns LoggerPatternParser used to parse the conversion string. Subclasses + * may override this to return a subclass of PatternParser which recognize + * custom conversion characters. + * + * @param string $pattern + * @return LoggerPatternParser + */ + function createPatternParser($pattern) + { + return new LoggerPatternParser($pattern); + } + + /** + * Produces a formatted string as specified by the conversion pattern. + * + * @param LoggerLoggingEvent $event + * @return string + */ + function format($event) + { + LoggerLog::debug("LoggerPatternLayout::format()"); + + // Reset working stringbuffer + $this->sbuf = ''; + $c = $this->head; + while($c !== null) { + $c->format($this->sbuf, $event); + $c = $c->next; + } + return $this->sbuf; + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/layouts/LoggerXmlLayout.php b/log4php.debug/layouts/LoggerXmlLayout.php new file mode 100644 index 0000000..d8c61dd --- /dev/null +++ b/log4php.debug/layouts/LoggerXmlLayout.php @@ -0,0 +1,206 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage layouts + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +define('LOG4PHP_LOGGER_XML_LAYOUT_LOG4J_NS_PREFIX', 'log4j'); +define('LOG4PHP_LOGGER_XML_LAYOUT_LOG4J_NS', 'http://jakarta.apache.org/log4j/'); + +define('LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS_PREFIX', 'log4php'); +define('LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS', 'http://www.vxr.it/log4php/'); + +/** + */ +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/helpers/LoggerTransform.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); + +/** + * The output of the LoggerXmlLayout consists of a series of log4php:event elements. + * + *

Parameters: {@link $locationInfo}.

+ * + *

It does not output a complete well-formed XML file. + * The output is designed to be included as an external entity in a separate file to form + * a correct XML file.

+ * + * @author VxR + * @version $Revision: 1.16 $ + * @package log4php + * @subpackage layouts + */ +class LoggerXmlLayout extends LoggerLayout { + + /** + * The LocationInfo option takes a boolean value. By default, + * it is set to false which means there will be no location + * information output by this layout. If the the option is set to + * true, then the file name and line number of the statement at the + * origin of the log statement will be output. + * @var boolean + */ + var $locationInfo = true; + + /** + * @var boolean set the elements namespace + */ + var $log4jNamespace = false; + + + /** + * @var string namespace + * @private + */ + var $_namespace = LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS; + + /** + * @var string namespace prefix + * @private + */ + var $_namespacePrefix = LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS_PREFIX; + + /** + * No options to activate. + */ + function activateOptions() + { + if ($this->getLog4jNamespace()) { + $this->_namespace = LOG4PHP_LOGGER_XML_LAYOUT_LOG4J_NS; + $this->_namespacePrefix = LOG4PHP_LOGGER_XML_LAYOUT_LOG4J_NS_PREFIX; + } else { + $this->_namespace = LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS; + $this->_namespacePrefix = LOG4PHP_LOGGER_XML_LAYOUT_LOG4PHP_NS_PREFIX; + } + } + + /** + * @return string + */ + function getHeader() + { + return "<{$this->_namespacePrefix}:eventSet ". + "xmlns:{$this->_namespacePrefix}=\"{$this->_namespace}\" ". + "version=\"0.3\" ". + "includesLocationInfo=\"".($this->getLocationInfo() ? "true" : "false")."\"". + ">\r\n"; + } + + /** + * Formats a {@link LoggerLoggingEvent} in conformance with the log4php.dtd. + * + * @param LoggerLoggingEvent $event + * @return string + */ + function format($event) + { + $loggerName = $event->getLoggerName(); + $timeStamp = number_format((float)($event->getTimeStamp() * 1000), 0, '', ''); + $thread = $event->getThreadName(); + $level = $event->getLevel(); + $levelStr = $level->toString(); + + $buf = "<{$this->_namespacePrefix}:event logger=\"{$loggerName}\" level=\"{$levelStr}\" thread=\"{$thread}\" timestamp=\"{$timeStamp}\">\r\n"; + $buf .= "<{$this->_namespacePrefix}:message>getRenderedMessage()); + $buf .= "]]>_namespacePrefix}:message>\r\n"; + + $ndc = $event->getNDC(); + if($ndc != null) { + $buf .= "<{$this->_namespacePrefix}:NDC>_namespacePrefix}:NDC>\r\n"; + } + + if ($this->getLocationInfo()) { + $locationInfo = $event->getLocationInformation(); + $buf .= "<{$this->_namespacePrefix}:locationInfo ". + "class=\"" . $locationInfo->getClassName() . "\" ". + "file=\"" . htmlentities($locationInfo->getFileName(), ENT_QUOTES) . "\" ". + "line=\"" . $locationInfo->getLineNumber() . "\" ". + "method=\"" . $locationInfo->getMethodName() . "\" "; + $buf .= "/>\r\n"; + + } + + $buf .= "_namespacePrefix}:event>\r\n\r\n"; + + return $buf; + + } + + /** + * @return string + */ + function getFooter() + { + + return "_namespacePrefix}:eventSet>\r\n"; + } + + /** + * @return boolean + */ + function getLocationInfo() + { + return $this->locationInfo; + } + + /** + * @return boolean + */ + function getLog4jNamespace() + { + return $this->log4jNamespace; + } + + /** + * The XMLLayout prints and does not ignore exceptions. Hence the + * return value false. + * @return boolean + */ + function ignoresThrowable() + { + return false; + } + + /** + * The {@link $locationInfo} option takes a boolean value. By default, + * it is set to false which means there will be no location + * information output by this layout. If the the option is set to + * true, then the file name and line number of the statement at the + * origin of the log statement will be output. + */ + function setLocationInfo($flag) + { + $this->locationInfo = LoggerOptionConverter::toBoolean($flag, true); + } + + /** + * @param boolean + */ + function setLog4jNamespace($flag) + { + $this->log4jNamespace = LoggerOptionConverter::toBoolean($flag, true); + } +} + +?> \ No newline at end of file diff --git a/log4php.debug/or/LoggerDefaultRenderer.php b/log4php.debug/or/LoggerDefaultRenderer.php new file mode 100644 index 0000000..c2e44c3 --- /dev/null +++ b/log4php.debug/or/LoggerDefaultRenderer.php @@ -0,0 +1,58 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage or + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/or/LoggerObjectRenderer.php'); + +/** + * The default Renderer renders objects by type casting + * + * @author VxR + * @package log4php + * @subpackage or + * @since 0.3 + */ +class LoggerDefaultRenderer extends LoggerObjectRenderer{ + + /** + * Constructor + */ + function LoggerDefaultRenderer() + { + return; + } + + /** + * Render objects by type casting + * + * @param mixed $o the object to render + * @return string + */ + function doRender($o) + { + return var_export($o, true); + } +} +?> \ No newline at end of file diff --git a/log4php.debug/or/LoggerObjectRenderer.php b/log4php.debug/or/LoggerObjectRenderer.php new file mode 100644 index 0000000..5279690 --- /dev/null +++ b/log4php.debug/or/LoggerObjectRenderer.php @@ -0,0 +1,63 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage or + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + * Subclass this abstract class in order to render objects as strings. + * + * @author VxR + * @version $Revision: 1.3 $ + * @package log4php + * @subpackage or + * @abstract + * @since 0.3 + */ +class LoggerObjectRenderer { + + /** + * @param string $class classname + * @return LoggerObjectRenderer create LoggerObjectRenderer instances + */ + function factory($class) + { + if (!empty($class)) { + $class = basename($class); + @include_once(LOG4PHP_DIR . "/or/{$class}.php"); + if (class_exists($class)) { + return new $class(); + } + } + return null; + } + + /** + * Render the entity passed as parameter as a String. + * @param mixed $o entity to render + * @return string + */ + function doRender($o) + { + // abstract + } +} +?> \ No newline at end of file diff --git a/log4php.debug/or/LoggerRendererMap.php b/log4php.debug/or/LoggerRendererMap.php new file mode 100644 index 0000000..1d9d29e --- /dev/null +++ b/log4php.debug/or/LoggerRendererMap.php @@ -0,0 +1,184 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage or + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/or/LoggerDefaultRenderer.php'); +require_once(LOG4PHP_DIR . '/or/LoggerObjectRenderer.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Map class objects to an {@link LoggerObjectRenderer}. + * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage or + * @since 0.3 + */ +class LoggerRendererMap { + + /** + * @var array + */ + var $map; + + /** + * @var LoggerDefaultRenderer + */ + var $defaultRenderer; + + /** + * Constructor + */ + function LoggerRendererMap() + { + $this->map = array(); + $this->defaultRenderer = new LoggerDefaultRenderer(); + } + + /** + * Add a renderer to a hierarchy passed as parameter. + * Note that hierarchy must implement getRendererMap() and setRenderer() methods. + * + * @param LoggerHierarchy &$repository a logger repository. + * @param string &$renderedClassName + * @param string &$renderingClassName + * @static + */ + function addRenderer(&$repository, $renderedClassName, $renderingClassName) + { + LoggerLog::debug("LoggerRendererMap::addRenderer() Rendering class: [{$renderingClassName}], Rendered class: [{$renderedClassName}]."); + $renderer = LoggerObjectRenderer::factory($renderingClassName); + if($renderer == null) { + LoggerLog::warn("LoggerRendererMap::addRenderer() Could not instantiate renderer [{$renderingClassName}]."); + return; + } else { + $repository->setRenderer($renderedClassName, $renderer); + } + } + + + /** + * Find the appropriate renderer for the class type of the + * o parameter. + * + * This is accomplished by calling the {@link getByObject()} + * method if o is object or using {@link LoggerDefaultRenderer}. + * Once a renderer is found, it is applied on the object o and + * the result is returned as a string. + * + * @param mixed $o + * @return string + */ + function findAndRender($o) + { + if($o == null) { + return null; + } else { + if (is_object($o)) { + $renderer = $this->getByObject($o); + if ($renderer !== null) { + return $renderer->doRender($o); + } else { + return null; + } + } else { + $renderer = $this->defaultRenderer; + return $renderer->doRender($o); + } + } + } + + /** + * Syntactic sugar method that calls {@link PHP_MANUAL#get_class} with the + * class of the object parameter. + * + * @param mixed $o + * @return string + */ + function &getByObject($o) + { + return ($o == null) ? null : $this->getByClassName(get_class($o)); + } + + + /** + * Search the parents of clazz for a renderer. + * + * The renderer closest in the hierarchy will be returned. If no + * renderers could be found, then the default renderer is returned. + * + * @param string $class + * @return LoggerObjectRenderer + */ + function &getByClassName($class) + { + $r = null; + for($c = strtolower($class); !empty($c); $c = get_parent_class($c)) { + if (isset($this->map[$c])) { + return $this->map[$c]; + } + } + return $this->defaultRenderer; + } + + /** + * @return LoggerDefaultRenderer + */ + function &getDefaultRenderer() + { + return $this->defaultRenderer; + } + + + function clear() + { + $this->map = array(); + } + + /** + * Register a {@link LoggerObjectRenderer} for clazz. + * @param string $class + * @param LoggerObjectRenderer $or + */ + function put($class, $or) + { + $this->map[strtolower($class)] = $or; + } + + /** + * @param string $class + * @return boolean + */ + function rendererExists($class) + { + $class = basename($class); + if (!class_exists($class)) { + @include_once(LOG4PHP_DIR ."/or/{$class}.php"); + } + return class_exists($class); + } +} +?> \ No newline at end of file diff --git a/log4php.debug/spi/LoggerConfigurator.php b/log4php.debug/spi/LoggerConfigurator.php new file mode 100644 index 0000000..944f188 --- /dev/null +++ b/log4php.debug/spi/LoggerConfigurator.php @@ -0,0 +1,65 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage spi + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +/** + * Special level value signifying inherited behaviour. The current + * value of this string constant is inherited. + * {@link LOG4PHP_LOGGER_CONFIGURATOR_NULL} is a synonym. + */ +define('LOG4PHP_LOGGER_CONFIGURATOR_INHERITED', 'inherited'); + +/** + * Special level signifying inherited behaviour, same as + * {@link LOG4PHP_LOGGER_CONFIGURATOR_INHERITED}. + * The current value of this string constant is null. + */ +define('LOG4PHP_LOGGER_CONFIGURATOR_NULL', 'null'); + +/** + * Implemented by classes capable of configuring log4php using a URL. + * + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @subpackage spi + * @since 0.5 + * @abstract + */ +class LoggerConfigurator { + + /** + * Interpret a resource pointed by a url and configure accordingly. + * + * The configuration is done relative to the repository + * parameter. + * + * @param string $url The URL to parse + * @param LoggerHierarchy &$repository The hierarchy to operation upon. + */ + function doConfigure($url, &$repository) + { + return; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/spi/LoggerFactory.php b/log4php.debug/spi/LoggerFactory.php new file mode 100644 index 0000000..5a8164e --- /dev/null +++ b/log4php.debug/spi/LoggerFactory.php @@ -0,0 +1,52 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage spi + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__)); + +require_once(LOG4PHP_DIR . '/LoggerLog.php'); + +/** + * Extend and implement this abstract class to create new instances of + * {@link Logger} or a sub-class of {@link Logger}. + * + * @author VxR + * @version $Revision: 1.3 $ + * @package log4php + * @subpackage spi + * @since 0.5 + * @abstract + */ +class LoggerFactory { + + /** + * @abstract + * @param string $name + * @return Logger + */ + function makeNewLoggerInstance($name) + { + LoggerLog::warn("LoggerFactory:: makeNewLoggerInstance() is abstract."); + return null; + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/spi/LoggerFilter.php b/log4php.debug/spi/LoggerFilter.php new file mode 100644 index 0000000..8baf547 --- /dev/null +++ b/log4php.debug/spi/LoggerFilter.php @@ -0,0 +1,113 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage spi + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + * The log event must be logged immediately without consulting with + * the remaining filters, if any, in the chain. + */ +define('LOG4PHP_LOGGER_FILTER_ACCEPT', 1); + +/** + * This filter is neutral with respect to the log event. The + * remaining filters, if any, should be consulted for a final decision. + */ +define('LOG4PHP_LOGGER_FILTER_NEUTRAL', 0); + +/** + * The log event must be dropped immediately without consulting + * with the remaining filters, if any, in the chain. + */ +define('LOG4PHP_LOGGER_FILTER_DENY', -1); + +/** + * Users should extend this class to implement customized logging + * event filtering. Note that {@link LoggerCategory} and {@link LoggerAppenderSkeleton}, + * the parent class of all standard + * appenders, have built-in filtering rules. It is suggested that you + * first use and understand the built-in rules before rushing to write + * your own custom filters. + * + *

This abstract class assumes and also imposes that filters be + * organized in a linear chain. The {@link #decide + * decide(LoggerLoggingEvent)} method of each filter is called sequentially, + * in the order of their addition to the chain. + * + *

The {@link decide()} method must return one + * of the integer constants {@link LOG4PHP_LOG4PHP_LOGGER_FILTER_DENY}, + * {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} or {@link LOG4PHP_LOGGER_FILTER_ACCEPT}. + * + *

If the value {@link LOG4PHP_LOGGER_FILTER_DENY} is returned, then the log event is + * dropped immediately without consulting with the remaining + * filters. + * + *

If the value {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} is returned, then the next filter + * in the chain is consulted. If there are no more filters in the + * chain, then the log event is logged. Thus, in the presence of no + * filters, the default behaviour is to log all logging events. + * + *

If the value {@link LOG4PHP_LOGGER_FILTER_ACCEPT} is returned, then the log + * event is logged without consulting the remaining filters. + * + *

The philosophy of log4php filters is largely inspired from the + * Linux ipchains. + * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage spi + */ +class LoggerFilter { + + /** + * @var LoggerFilter Points to the next {@link LoggerFilter} in the filter chain. + */ + var $next; + + /** + * Usually filters options become active when set. We provide a + * default do-nothing implementation for convenience. + */ + function activateOptions() + { + return; + } + + /** + * Decide what to do. + *

If the decision is {@link LOG4PHP_LOGGER_FILTER_DENY}, then the event will be + * dropped. If the decision is {@link LOG4PHP_LOGGER_FILTER_NEUTRAL}, then the next + * filter, if any, will be invoked. If the decision is {@link LOG4PHP_LOGGER_FILTER_ACCEPT} then + * the event will be logged without consulting with other filters in + * the chain. + * + * @param LoggerLoggingEvent $event The {@link LoggerLoggingEvent} to decide upon. + * @return integer {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} or {@link LOG4PHP_LOGGER_FILTER_DENY}|{@link LOG4PHP_LOGGER_FILTER_ACCEPT} + */ + function decide($event) + { + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + } + +} +?> \ No newline at end of file diff --git a/log4php.debug/spi/LoggerLocationInfo.php b/log4php.debug/spi/LoggerLocationInfo.php new file mode 100644 index 0000000..cc46133 --- /dev/null +++ b/log4php.debug/spi/LoggerLocationInfo.php @@ -0,0 +1,116 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage spi + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + * When location information is not available the constant + * NA is returned. Current value of this string + * constant is ?. + */ +define('LOG4PHP_LOGGER_LOCATION_INFO_NA', 'NA'); + +/** + * The internal representation of caller location information. + * + * @author VxR + * @version $Revision: 1.5 $ + * @package log4php + * @subpackage spi + * @since 0.3 + */ +class LoggerLocationInfo { + + /** + * @var string Caller's line number. + */ + var $lineNumber = null; + + /** + * @var string Caller's file name. + */ + var $fileName = null; + + /** + * @var string Caller's fully qualified class name. + */ + var $className = null; + + /** + * @var string Caller's method name. + */ + var $methodName = null; + + /** + * @var string + */ + var $fullInfo = null; + + /** + * Instantiate location information based on a {@link PHP_MANUAL#debug_backtrace}. + * + * @param array $trace + * @param mixed $caller + */ + function LoggerLocationInfo($trace, $fqcn = null) + { + $this->lineNumber = isset($trace['line']) ? $trace['line'] : null; + $this->fileName = isset($trace['file']) ? $trace['file'] : null; + $this->className = isset($trace['class']) ? $trace['class'] : null; + $this->methodName = isset($trace['function']) ? $trace['function'] : null; + + $this->fullInfo = $this->getClassName() . '.' . $this->getMethodName() . + '(' . $this->getFileName() . ':' . $this->getLineNumber() . ')'; + } + + function getClassName() + { + return ($this->className === null) ? LOG4PHP_LOGGER_LOCATION_INFO_NA : $this->className; + } + + /** + * Return the file name of the caller. + *

This information is not always available. + */ + function getFileName() + { + return ($this->fileName === null) ? LOG4PHP_LOGGER_LOCATION_INFO_NA : $this->fileName; + } + + /** + * Returns the line number of the caller. + *

This information is not always available. + */ + function getLineNumber() + { + return ($this->lineNumber === null) ? LOG4PHP_LOGGER_LOCATION_INFO_NA : $this->lineNumber; + } + + /** + * Returns the method name of the caller. + */ + function getMethodName() + { + return ($this->methodName === null) ? LOG4PHP_LOGGER_LOCATION_INFO_NA : $this->methodName; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/spi/LoggerLoggingEvent.php b/log4php.debug/spi/LoggerLoggingEvent.php new file mode 100644 index 0000000..d842c0f --- /dev/null +++ b/log4php.debug/spi/LoggerLoggingEvent.php @@ -0,0 +1,384 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage spi + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/spi/LoggerLocationInfo.php'); +require_once(LOG4PHP_DIR . '/LoggerManager.php'); +require_once(LOG4PHP_DIR . '/LoggerMDC.php'); +require_once(LOG4PHP_DIR . '/LoggerNDC.php'); + +/** + * The internal representation of logging event. + * + * @author VxR + * @version $Revision: 1.16 $ + * @package log4php + * @subpackage spi + */ +class LoggerLoggingEvent { + + /** + * @var string Fully Qualified Class Name of the calling category class. + */ + var $fqcn; + + /** + * @var Logger reference + */ + var $logger = null; + + /** + * The category (logger) name. + * This field will be marked as private in future + * releases. Please do not access it directly. + * Use the {@link getLoggerName()} method instead. + * @deprecated + */ + var $categoryName; + + /** + * Level of logging event. + *

This field should not be accessed directly. You shoud use the + * {@link getLevel()} method instead. + * + * @deprecated + * @var LoggerLevel + */ + var $level; + + /** + * @var string The nested diagnostic context (NDC) of logging event. + */ + var $ndc; + + /** + * Have we tried to do an NDC lookup? If we did, there is no need + * to do it again. Note that its value is always false when + * serialized. Thus, a receiving SocketNode will never use it's own + * (incorrect) NDC. See also writeObject method. + * @var boolean + */ + var $ndcLookupRequired = true; + + /** + * Have we tried to do an MDC lookup? If we did, there is no need + * to do it again. Note that its value is always false when + * serialized. See also the getMDC and getMDCCopy methods. + * @var boolean + */ + var $mdcCopyLookupRequired = true; + + /** + * @var mixed The application supplied message of logging event. + */ + var $message; + + /** + * The application supplied message rendered through the log4php + * objet rendering mechanism. At present renderedMessage == message. + * @var string + */ + var $renderedMessage; + + /** + * The name of thread in which this logging event was generated. + * log4php saves here the process id via {@link PHP_MANUAL#getmypid getmypid()} + * @var mixed + */ + var $threadName = null; + + /** + * The number of seconds elapsed from 1/1/1970 until logging event + * was created plus microseconds if available. + * @var float + */ + var $timeStamp; + + /** + * @var LoggerLocationInfo Location information for the caller. + */ + var $locationInfo = null; + + // Serialization + /* + var $serialVersionUID = -868428216207166145L; + var $PARAM_ARRAY = array(); + var $TO_LEVEL = "toLevel"; + var $TO_LEVEL_PARAMS = null; + var $methodCache = array(); // use a tiny table + */ + + /** + * Instantiate a LoggingEvent from the supplied parameters. + * + *

Except {@link $timeStamp} all the other fields of + * LoggerLoggingEvent are filled when actually needed. + * + * @param string $fqcn name of the caller class. + * @param mixed &$logger The {@link Logger} category of this event or the logger name. + * @param LoggerLevel $priority The level of this event. + * @param mixed $message The message of this event. + * @param integer $timeStamp the timestamp of this logging event. + */ + function LoggerLoggingEvent($fqcn, &$logger, $priority, $message, $timeStamp = null) + { + $this->fqcn = $fqcn; + if (is_a($logger, 'logger')) { + $this->logger =& $logger; + $this->categoryName = $logger->getName(); + } else { + $this->categoryName = (string)$logger; + } + $this->level = $priority; + $this->message = $message; + if ($timeStamp !== null and is_float($timeStamp)) { + $this->timeStamp = $timeStamp; + } else { + if (function_exists('microtime')) { + list($usecs, $secs) = explode(' ', microtime()); + $this->timeStamp = ((float)$usecs + (float)$secs); + } else { + $this->timeStamp = time(); + } + } + } + + /** + * Set the location information for this logging event. The collected + * information is cached for future use. + * + *

This method uses {@link PHP_MANUAL#debug_backtrace debug_backtrace()} function (if exists) + * to collect informations about caller.

+ *

It only recognize informations generated by {@link Logger} and its subclasses.

+ * @return LoggerLocationInfo + */ + function getLocationInformation() + { + if($this->locationInfo === null) { + + $locationInfo = array(); + + if (function_exists('debug_backtrace')) { + $trace = debug_backtrace(); + $prevHop = null; + // make a downsearch to identify the caller + $hop = array_pop($trace); + while ($hop !== null) { + $className = @$hop['class']; + if ( !empty($className) and ($className == 'logger' or get_parent_class($className) == 'logger') ) { + $locationInfo['line'] = $hop['line']; + $locationInfo['file'] = $hop['file']; + break; + } + $prevHop = $hop; + $hop = array_pop($trace); + } + $locationInfo['class'] = isset($prevHop['class']) ? $prevHop['class'] : 'main'; + if (isset($prevHop['function']) and + $prevHop['function'] !== 'include' and + $prevHop['function'] !== 'include_once' and + $prevHop['function'] !== 'require' and + $prevHop['function'] !== 'require_once') { + + $locationInfo['function'] = $prevHop['function']; + } else { + $locationInfo['function'] = 'main'; + } + } + + $this->locationInfo = new LoggerLocationInfo($locationInfo, $this->fqcn); + } + return $this->locationInfo; + } + + /** + * Return the level of this event. Use this form instead of directly + * accessing the {@link $level} field. + * @return LoggerLevel + */ + function getLevel() + { + return $this->level; + } + + /** + * Return the name of the logger. Use this form instead of directly + * accessing the {@link $categoryName} field. + * @return string + */ + function getLoggerName() + { + return $this->categoryName; + } + + /** + * Return the message for this logging event. + * + *

Before serialization, the returned object is the message + * passed by the user to generate the logging event. After + * serialization, the returned value equals the String form of the + * message possibly after object rendering. + * @return mixed + */ + function getMessage() + { + if($this->message !== null) { + return $this->message; + } else { + return $this->getRenderedMessage(); + } + } + + /** + * This method returns the NDC for this event. It will return the + * correct content even if the event was generated in a different + * thread or even on a different machine. The {@link LoggerNDC::get()} method + * should never be called directly. + * @return string + */ + function getNDC() + { + if ($this->ndcLookupRequired) { + $this->ndcLookupRequired = false; + $this->ndc = implode(' ',LoggerNDC::get()); + } + return $this->ndc; + } + + + /** + * Returns the the context corresponding to the key + * parameter. + * @return string + */ + function getMDC($key) + { + return LoggerMDC::get($key); + } + + /** + * Render message. + * @return string + */ + function getRenderedMessage() + { + if($this->renderedMessage === null and $this->message !== null) { + if (is_string($this->message)) { + $this->renderedMessage = $this->message; + } else { + if ($this->logger !== null) { + $repository =& $this->logger->getLoggerRepository(); + } else { + $repository =& LoggerManager::getLoggerRepository(); + } + if (method_exists($repository, 'getrenderermap')) { + $rendererMap =& $repository->getRendererMap(); + $this->renderedMessage= $rendererMap->findAndRender($this->message); + } else { + $this->renderedMessage = (string)$this->message; + } + } + } + return $this->renderedMessage; + } + + /** + * Returns the time when the application started, in seconds + * elapsed since 01.01.1970 plus microseconds if available. + * + * @return float + * @static + */ + function getStartTime() + { + static $startTime; + + if (!isset($startTime)) { + if (function_exists('microtime')) { + list($usec, $sec) = explode(' ', microtime()); + $startTime = ((float)$usec + (float)$sec); + } else { + $startTime = time(); + } + } + return $startTime; + } + + /** + * @return float + */ + function getTimeStamp() + { + return $this->timeStamp; + } + + /** + * @return mixed + */ + function getThreadName() + { + if ($this->threadName === null) + $this->threadName = (string)getmypid(); + return $this->threadName; + } + + /** + * @return mixed null + */ + function getThrowableInformation() + { + return null; + } + + /** + * Serialize this object + * @return string + */ + function toString() + { + serialize($this); + } + + /** + * Avoid serialization of the {@link $logger} object + */ + function __sleep() + { + return array( + 'fqcn','categoryName', + 'level', + 'ndc','ndcLookupRequired', + 'message','renderedMessage', + 'threadName', + 'timestamp', + 'locationInfo' + ); + } + +} + +LoggerLoggingEvent::getStartTime(); + +?> \ No newline at end of file diff --git a/log4php.debug/varia/LoggerDenyAllFilter.php b/log4php.debug/varia/LoggerDenyAllFilter.php new file mode 100644 index 0000000..ce8699f --- /dev/null +++ b/log4php.debug/varia/LoggerDenyAllFilter.php @@ -0,0 +1,57 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage varia + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php'); + +/** + * This filter drops all logging events. + * + *

You can add this filter to the end of a filter chain to + * switch from the default "accept all unless instructed otherwise" + * filtering behaviour to a "deny all unless instructed otherwise" + * behaviour.

+ * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage varia + * @since 0.3 + */ +class LoggerDenyAllFilter extends LoggerFilter { + + /** + * Always returns the integer constant {@link LOG4PHP_LOGGER_FILTER_DENY} + * regardless of the {@link LoggerLoggingEvent} parameter. + * + * @param LoggerLoggingEvent $event The {@link LoggerLoggingEvent} to filter. + * @return LOG4PHP_LOGGER_FILTER_DENY Always returns {@link LOG4PHP_LOGGER_FILTER_DENY} + */ + function decide($event) + { + return LOG4PHP_LOGGER_FILTER_DENY; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/varia/LoggerLevelMatchFilter.php b/log4php.debug/varia/LoggerLevelMatchFilter.php new file mode 100644 index 0000000..2b7af04 --- /dev/null +++ b/log4php.debug/varia/LoggerLevelMatchFilter.php @@ -0,0 +1,119 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage varia + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php'); + +/** + * This is a very simple filter based on level matching. + * + *

The filter admits two options LevelToMatch and + * AcceptOnMatch. If there is an exact match between the value + * of the LevelToMatch option and the level of the + * {@link LoggerLoggingEvent}, then the {@link decide()} method returns + * {@link LOG4PHP_LOGGER_FILTER_ACCEPT} in case the AcceptOnMatch + * option value is set to true, if it is false then + * {@link LOG4PHP_LOGGER_FILTER_DENY} is returned. If there is no match, + * {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} is returned.

+ * + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @subpackage varia + * @since 0.6 + */ +class LoggerLevelMatchFilter extends LoggerFilter { + + /** + * @var boolean + */ + var $acceptOnMatch = true; + + /** + * @var LoggerLevel + */ + var $levelToMatch; + + /** + * @return boolean + */ + function getAcceptOnMatch() + { + return $this->acceptOnMatch; + } + + /** + * @param boolean $acceptOnMatch + */ + function setAcceptOnMatch($acceptOnMatch) + { + $this->acceptOnMatch = LoggerOptionConverter::toBoolean($acceptOnMatch, true); + } + + /** + * @return LoggerLevel + */ + function getLevelToMatch() + { + return $this->levelToMatch; + } + + /** + * @param string $l the level to match + */ + function setLevelToMatch($l) + { + $this->levelToMatch = LoggerOptionConverter::toLevel($l, null); + } + + /** + * Return the decision of this filter. + * + * Returns {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} if the LevelToMatch + * option is not set or if there is not match. Otherwise, if there is a + * match, then the returned decision is {@link LOG4PHP_LOGGER_FILTER_ACCEPT} if the + * AcceptOnMatch property is set to true. The + * returned decision is {@link LOG4PHP_LOGGER_FILTER_DENY} if the + * AcceptOnMatch property is set to false. + * + * @param LoggerLoggingEvent $event + * @return integer + */ + function decide($event) + { + if($this->levelToMatch === null) + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + + if ($this->levelToMatch->equals($event->getLevel())) { + return $this->getAcceptOnMatch() ? + LOG4PHP_LOGGER_FILTER_ACCEPT : + LOG4PHP_LOGGER_FILTER_DENY; + } else { + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/varia/LoggerLevelRangeFilter.php b/log4php.debug/varia/LoggerLevelRangeFilter.php new file mode 100644 index 0000000..d54bedd --- /dev/null +++ b/log4php.debug/varia/LoggerLevelRangeFilter.php @@ -0,0 +1,168 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage varia + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php'); + +/** + * This is a very simple filter based on level matching, which can be + * used to reject messages with priorities outside a certain range. + * + *

The filter admits three options LevelMin, LevelMax + * and AcceptOnMatch.

+ * + *

If the level of the {@link LoggerLoggingEvent} is not between Min and Max + * (inclusive), then {@link LOG4PHP_LOGGER_FILTER_DENY} is returned.

+ * + *

If the Logging event level is within the specified range, then if + * AcceptOnMatch is true, + * {@link LOG4PHP_LOGGER_FILTER_ACCEPT} is returned, and if + * AcceptOnMatch is false, + * {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} is returned.

+ * + *

If LevelMin is not defined, then there is no + * minimum acceptable level (ie a level is never rejected for + * being too "low"/unimportant). If LevelMax is not + * defined, then there is no maximum acceptable level (ie a + * level is never rejected for beeing too "high"/important).

+ * + *

Refer to the {@link LoggerAppenderSkeleton::setThreshold()} method + * available to all appenders extending {@link LoggerAppenderSkeleton} + * for a more convenient way to filter out events by level.

+ * + * @log4j-class org.apache.log4j.varia.LevelRangeFilter + * @log4j-author Simon Kitching + * @log4j-author based on code by Ceki Gülcü + * + * @author VxR + * @version $Revision: 1.2 $ + * @package log4php + * @subpackage varia + * @since 0.6 + */ +class LoggerLevelRangeFilter extends LoggerFilter { + + /** + * @var boolean + */ + var $acceptOnMatch = true; + + /** + * @var LoggerLevel + */ + var $levelMin; + + /** + * @var LoggerLevel + */ + var $levelMax; + + /** + * @return boolean + */ + function getAcceptOnMatch() + { + return $this->acceptOnMatch; + } + + /** + * @param boolean $acceptOnMatch + */ + function setAcceptOnMatch($acceptOnMatch) + { + $this->acceptOnMatch = LoggerOptionConverter::toBoolean($acceptOnMatch, true); + } + + /** + * @return LoggerLevel + */ + function getLevelMin() + { + return $this->levelMin; + } + + /** + * @param string $l the level min to match + */ + function setLevelMin($l) + { + $this->levelMin = LoggerOptionConverter::toLevel($l, null); + } + + /** + * @return LoggerLevel + */ + function getLevelMax() + { + return $this->levelMax; + } + + /** + * @param string $l the level max to match + */ + function setLevelMax($l) + { + $this->levelMax = LoggerOptionConverter::toLevel($l, null); + } + + /** + * Return the decision of this filter. + * + * @param LoggerLoggingEvent $event + * @return integer + */ + function decide($event) + { + $level = $event->getLevel(); + + if($this->levelMin !== null) { + if ($level->isGreaterOrEqual($this->levelMin) == false) { + // level of event is less than minimum + return LOG4PHP_LOGGER_FILTER_DENY; + } + } + + if($this->levelMax !== null) { + if ($level->toInt() > $this->levelMax->toInt()) { + // level of event is greater than maximum + // Alas, there is no Level.isGreater method. and using + // a combo of isGreaterOrEqual && !Equal seems worse than + // checking the int values of the level objects.. + return LOG4PHP_LOGGER_FILTER_DENY; + } + } + + if ($this->getAcceptOnMatch()) { + // this filter set up to bypass later filters and always return + // accept if level in range + return LOG4PHP_LOGGER_FILTER_ACCEPT; + } else { + // event is ok for this filter; allow later filters to have a look.. + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + } + } +} +?> \ No newline at end of file diff --git a/log4php.debug/varia/LoggerStringMatchFilter.php b/log4php.debug/varia/LoggerStringMatchFilter.php new file mode 100644 index 0000000..9594e89 --- /dev/null +++ b/log4php.debug/varia/LoggerStringMatchFilter.php @@ -0,0 +1,108 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage varia + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +/** + */ +require_once(LOG4PHP_DIR . '/spi/LoggerFilter.php'); + +/** + * This is a very simple filter based on string matching. + * + *

The filter admits two options {@link $stringToMatch} and + * {@link $acceptOnMatch}. If there is a match (using {@link PHP_MANUAL#strpos} + * between the value of the {@link $stringToMatch} option and the message + * of the {@link LoggerLoggingEvent}, + * then the {@link decide()} method returns {@link LOG4PHP_LOGGER_FILTER_ACCEPT} if + * the AcceptOnMatch option value is true, if it is false then + * {@link LOG4PHP_LOGGER_FILTER_DENY} is returned. If there is no match, {@link LOG4PHP_LOGGER_FILTER_NEUTRAL} + * is returned.

+ * + * @author VxR + * @version $Revision: 1.4 $ + * @package log4php + * @subpackage varia + * @since 0.3 + */ +class LoggerStringMatchFilter extends LoggerFilter { + + /** + * @var boolean + */ + var $acceptOnMatch = true; + + /** + * @var string + */ + var $stringToMatch = null; + + /** + * @return boolean + */ + function getAcceptOnMatch() + { + return $this->acceptOnMatch; + } + + /** + * @param mixed $acceptOnMatch a boolean or a string ('true' or 'false') + */ + function setAcceptOnMatch($acceptOnMatch) + { + $this->acceptOnMatch = is_bool($acceptOnMatch) ? + $acceptOnMatch : + (bool)(strtolower($acceptOnMatch) == 'true'); + } + + /** + * @return string + */ + function getStringToMatch() + { + return $this->stringToMatch; + } + + /** + * @param string $s the string to match + */ + function setStringToMatch($s) + { + $this->stringToMatch = $s; + } + + /** + * @return integer a {@link LOGGER_FILTER_NEUTRAL} is there is no string match. + */ + function decide($event) + { + $msg = $event->getRenderedMessage(); + + if($msg === null or $this->stringToMatch === null) + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + if( strpos($msg, $this->stringToMatch) !== false ) { + return ($this->acceptOnMatch) ? LOG4PHP_LOGGER_FILTER_ACCEPT : LOG4PHP_LOGGER_FILTER_DENY ; + } + return LOG4PHP_LOGGER_FILTER_NEUTRAL; + } +} +?> \ No newline at end of file diff --git a/log4php.debug/xml/LoggerDOMConfigurator.php b/log4php.debug/xml/LoggerDOMConfigurator.php new file mode 100644 index 0000000..3337437 --- /dev/null +++ b/log4php.debug/xml/LoggerDOMConfigurator.php @@ -0,0 +1,609 @@ +This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).

+ *

Design, strategies and part of the methods documentation are developed by log4j team + * (Ceki Glc as log4j project founder and + * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).

+ * + *

PHP port, extensions and modifications by VxR. All rights reserved.
+ * For more information, please see {@link http://www.vxr.it/log4php/}.

+ * + *

This software is published under the terms of the LGPL License + * a copy of which has been included with this distribution in the LICENSE file.

+ * + * @package log4php + * @subpackage xml + */ + +/** + * @ignore + */ +if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__) . '/..'); + +require_once(LOG4PHP_DIR . '/helpers/LoggerOptionConverter.php'); +require_once(LOG4PHP_DIR . '/or/LoggerObjectRenderer.php'); +require_once(LOG4PHP_DIR . '/spi/LoggerConfigurator.php'); +require_once(LOG4PHP_DIR . '/LoggerAppender.php'); +require_once(LOG4PHP_DIR . '/LoggerLayout.php'); +require_once(LOG4PHP_DIR . '/LoggerLog.php'); +require_once(LOG4PHP_DIR . '/LoggerManager.php'); + +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_APPENDER_STATE', 1000); +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_LAYOUT_STATE', 1010); +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_ROOT_STATE', 1020); +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_LOGGER_STATE', 1030); +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_FILTER_STATE', 1040); + +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_DEFAULT_FILENAME', './log4php.xml'); + +/** + * @var string the default configuration document + */ +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_DEFAULT_CONFIGURATION', +' + + + + + + + + +'); + +/** + * @var string the elements namespace + */ +define('LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS', 'HTTP://WWW.VXR.IT/LOG4PHP/'); + +/** + * Use this class to initialize the log4php environment using expat parser. + * + *

Read the log4php.dtd included in the documentation directory. Note that + * php parser does not validate the document.

+ * + *

Sometimes it is useful to see how log4php is reading configuration + * files. You can enable log4php internal logging by setting the debug + * attribute in the log4php:configuration element. As in + *

+ * <log4php:configuration debug="true" xmlns:log4php="http://www.vxr.it/log4php/">
+ * ...
+ * </log4php:configuration>
+ * 
+ * + *

There are sample XML files included in the package under tests/ + * subdirectories.

+ * + * @author VxR + * @version $Revision: 1.12 $ + * @package log4php + * @subpackage xml + * @since 0.4 + */ +class LoggerDOMConfigurator extends LoggerConfigurator { + + /** + * @var LoggerHierarchy + */ + var $repository; + + /** + * @var array state stack + */ + var $state; + + /** + * @var Logger parsed Logger + */ + var $logger; + + /** + * @var LoggerAppender parsed LoggerAppender + */ + var $appender; + + /** + * @var LoggerFilter parsed LoggerFilter + */ + var $filter; + + /** + * @var LoggerLayout parsed LoggerLayout + */ + var $layout; + + /** + * Constructor + */ + function LoggerDOMConfigurator() + { + $this->state = array(); + $this->logger = null; + $this->appender = null; + $this->filter = null; + $this->layout = null; + } + + /** + * Configure the default repository using the resource pointed by url. + * Url is any valid resurce as defined in {@link PHP_MANUAL#file} function. + * Note that the resource will be search with use_include_path parameter + * set to "1". + * + * @param string $url + * @static + */ + function configure($url = '') + { + $configurator = new LoggerDOMConfigurator(); + $repository =& LoggerManager::getLoggerRepository(); + return $configurator->doConfigure($url, $repository); + } + + /** + * Configure the given repository using the resource pointed by url. + * Url is any valid resurce as defined in {@link PHP_MANUAL#file} function. + * Note that the resource will be search with use_include_path parameter + * set to "1". + * + * @param string $url + * @param LoggerHierarchy &$repository + */ + function doConfigure($url = '', &$repository) + { + $xmlData = ''; + if (!empty($url)) + $xmlData = implode('', file($url, 1)); + return $this->doConfigureByString($xmlData, $repository); + } + + /** + * Configure the given repository using the configuration written in xmlData. + * Do not call this method directly. Use {@link doConfigure()} instead. + * @param string $xmlData + * @param LoggerHierarchy &$repository + */ + function doConfigureByString($xmlData, &$repository) + { + return $this->parse($xmlData, $repository); + } + + /** + * @param LoggerHierarchy &$repository + */ + function doConfigureDefault(&$repository) + { + return $this->doConfigureByString(LOG4PHP_LOGGER_DOM_CONFIGURATOR_DEFAULT_CONFIGURATION, $repository); + } + + /** + * @param string $xmlData + */ + function parse($xmlData, &$repository) + { + // LoggerManager::resetConfiguration(); + $this->repository =& $repository; + + $parser = xml_parser_create_ns(); + + xml_set_object($parser, &$this); + xml_set_element_handler($parser, "tagOpen", "tagClose"); + + $result = xml_parse($parser, $xmlData, true); + if (!$result) { + $errorCode = xml_get_error_code($parser); + $errorStr = xml_error_string($errorCode); + $errorLine = xml_get_current_line_number($parser); + LoggerLog::warn( + "LoggerDOMConfigurator::parse() ". + "Parsing error [{$errorCode}] {$errorStr}, line {$errorLine}" + ); + $this->repository->resetConfiguration(); + } else { + xml_parser_free($parser); + } + return $result; + } + + /** + * @param mixed $parser + * @param string $tag + * @param array $attribs + * + * @todo In 'LOGGER' case find a better way to detect 'getLogger()' method + */ + function tagOpen($parser, $tag, $attribs) + { + switch ($tag) { + + case 'CONFIGURATION' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':CONFIGURATION': + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() CONFIGURATION"); + + if (isset($attribs['THRESHOLD'])) { + + $this->repository->setThreshold( + LoggerOptionConverter::toLevel( + $this->subst($attribs['THRESHOLD']), + $this->repository->getThreshold() + ) + ); + } + if (isset($attribs['DEBUG'])) { + $debug = LoggerOptionConverter::toBoolean($this->subst($attribs['DEBUG']), LoggerLog::internalDebugging()); + $this->repository->debug = $debug; + LoggerLog::internalDebugging($debug); + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LOG4PHP:CONFIGURATION. Internal Debug turned ".($debug ? 'on':'off')); + + } + break; + + case 'APPENDER' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':APPENDER': + + unset($this->appender); + $this->appender = null; + + $name = $this->subst(@$attribs['NAME']); + $class = $this->subst(@$attribs['CLASS']); + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen():tag=[$tag]:name=[$name]:class=[$class]"); + + $this->appender =& LoggerAppender::singleton($name, $class); + if ($this->appender === null) { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() APPENDER cannot instantiate appender '$name'"); + } + $this->state[] = LOG4PHP_LOGGER_DOM_CONFIGURATOR_APPENDER_STATE; + break; + + case 'APPENDER_REF' : + case 'APPENDER-REF' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':APPENDER_REF': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':APPENDER-REF': + + + if (isset($attribs['REF']) and !empty($attribs['REF'])) { + $appenderName = $this->subst($attribs['REF']); + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() APPENDER-REF ref='$appenderName'"); + + $appender =& LoggerAppender::singleton($appenderName); + if ($appender !== null) { + switch (end($this->state)) { + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_LOGGER_STATE: + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_ROOT_STATE: + $this->logger->addAppender($appender); + break; + } + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() APPENDER-REF ref '$appenderName' points to a null appender"); + } + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() APPENDER-REF ref not set or empty"); + } + break; + + case 'FILTER' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':FILTER': + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() FILTER"); + + unset($this->filter); + $this->filter = null; + + $filterName = basename($this->subst(@$attribs['CLASS'])); + if (!empty($filterName)) { + if (!class_exists($filterName)) { + @include_once(LOG4PHP_DIR . "/varia/{$filterName}.php"); + } + if (class_exists($filterName)) { + $this->filter = new $filterName(); + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() FILTER. class '$filterName' doesnt exist"); + } + $this->state[] = LOG4PHP_LOGGER_DOM_CONFIGURATOR_FILTER_STATE; + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() FILTER filter name cannot be empty"); + } + break; + + case 'LAYOUT': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':LAYOUT': + + $class = @$attribs['CLASS']; + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LAYOUT class='{$class}'"); + + $this->layout = LoggerLayout::factory($this->subst($class)); + if ($this->layout === null) + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() LAYOUT unable to instanciate class='{$class}'"); + + $this->state[] = LOG4PHP_LOGGER_DOM_CONFIGURATOR_LAYOUT_STATE; + break; + + case 'LOGGER': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':LOGGER': + + // $this->logger is assigned by reference. + // Only '$this->logger=null;' destroys referenced object + unset($this->logger); + $this->logger = null; + + $loggerName = $this->subst(@$attribs['NAME']); + if (!empty($loggerName)) { + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LOGGER. name='$loggerName'"); + + $class = $this->subst(@$attribs['CLASS']); + if (empty($class)) { + $this->logger =& $this->repository->getLogger($loggerName); + } else { + $className = basename($class); + if (!class_exists($className)) + @include_once("{$class}.php"); + if (!class_exists($className)) { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() LOGGER. ". + "cannot find '$className'." + ); + } else { + + if (in_array('getlogger', get_class_methods($className))) { + $this->logger =& call_user_func(array($className, 'getlogger'), $loggerName); + } else { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() LOGGER. ". + "class '$className' doesnt implement 'getLogger()' method." + ); + } + } + } + if ($this->logger !== null and isset($attribs['ADDITIVITY'])) { + $additivity = LoggerOptionConverter::toBoolean($this->subst($attribs['ADDITIVITY']), true); + $this->logger->setAdditivity($additivity); + } + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() LOGGER. Attribute 'name' is not set or is empty."); + } + $this->state[] = LOG4PHP_LOGGER_DOM_CONFIGURATOR_LOGGER_STATE;; + break; + + case 'LEVEL': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':LEVEL': + case 'PRIORITY': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':PRIORITY': + + if (!isset($attribs['VALUE'])) { + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LEVEL value not set"); + break; + } + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LEVEL value={$attribs['VALUE']}"); + + if ($this->logger === null) { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() LEVEL. parent logger is null"); + break; + } + + switch (end($this->state)) { + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_ROOT_STATE: + $this->logger->setLevel( + LoggerOptionConverter::toLevel( + $this->subst($attribs['VALUE']), + $this->logger->getLevel() + ) + ); + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() LEVEL root level is now '{$attribs['VALUE']}' "); + break; + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_LOGGER_STATE: + $this->logger->setLevel( + LoggerOptionConverter::toLevel( + $this->subst($attribs['VALUE']), + $this->logger->getLevel() + ) + ); + break; + default: + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() LEVEL state '{$this->state}' not allowed here"); + } + break; + + case 'PARAM': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':PARAM': + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() PARAM"); + + if (!isset($attribs['NAME'])) { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() PARAM. ". + "attribute 'name' not defined." + ); + break; + } + if (!isset($attribs['VALUE'])) { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() PARAM. ". + "attribute 'value' not defined." + ); + break; + } + + switch (end($this->state)) { + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_APPENDER_STATE: + if ($this->appender !== null) { + $this->setter($this->appender, $this->subst($attribs['NAME']), $this->subst($attribs['VALUE'])); + } else { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() PARAM. ". + " trying to set property to a null appender." + ); + } + break; + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_LAYOUT_STATE: + if ($this->layout !== null) { + $this->setter($this->layout, $this->subst($attribs['NAME']), $this->subst($attribs['VALUE'])); + } else { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() PARAM. ". + " trying to set property to a null layout." + ); + } + break; + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_FILTER_STATE: + if ($this->filter !== null) { + $this->setter($this->filter, $this->subst($attribs['NAME']), $this->subst($attribs['VALUE'])); + } else { + LoggerLog::warn( + "LoggerDOMConfigurator::tagOpen() PARAM. ". + " trying to set property to a null filter." + ); + } + break; + default: + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() PARAM state '{$this->state}' not allowed here"); + } + break; + + case 'RENDERER': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':RENDERER': + + $renderedClass = $this->subst(@$attribs['RENDEREDCLASS']); + $renderingClass = $this->subst(@$attribs['RENDERINGCLASS']); + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() RENDERER renderedClass='$renderedClass' renderingClass='$renderingClass'"); + + if (!empty($renderedClass) and !empty($renderingClass)) { + $renderer = LoggerObjectRenderer::factory($renderingClass); + if ($renderer === null) { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() RENDERER cannot instantiate '$renderingClass'"); + } else { + $this->repository->setRenderer($renderedClass, $renderer); + } + } else { + LoggerLog::warn("LoggerDOMConfigurator::tagOpen() RENDERER renderedClass or renderingClass is empty"); + } + break; + + case 'ROOT': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':ROOT': + + LoggerLog::debug("LoggerDOMConfigurator::tagOpen() ROOT"); + + $this->logger =& LoggerManager::getRootLogger(); + + $this->state[] = LOG4PHP_LOGGER_DOM_CONFIGURATOR_ROOT_STATE; + break; + + } + + } + + + /** + * @param mixed $parser + * @param string $tag + */ + function tagClose($parser, $tag) + { + switch ($tag) { + + case 'CONFIGURATION' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':CONFIGURATION': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() CONFIGURATION"); + break; + + case 'APPENDER' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':APPENDER': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() APPENDER"); + + if ($this->appender !== null) { + if ($this->appender->requiresLayout() and $this->appender->layout === null) { + $appenderName = $this->appender->getName(); + LoggerLog::warn( + "LoggerDOMConfigurator::tagClose() APPENDER. ". + "'$appenderName' requires a layout that is not defined. ". + "Using a simple layout" + ); + $this->appender->setLayout(LoggerLayout::factory('LoggerLayoutSimple')); + } + $this->appender->activateOptions(); + } + array_pop($this->state); + break; + + case 'FILTER' : + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':FILTER': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() FILTER"); + + if ($this->filter !== null) { + $this->filter->activateOptions(); + $this->appender->addFilter($this->filter); + $this->filter = null; + } + array_pop($this->state); + break; + + case 'LAYOUT': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':LAYOUT': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() LAYOUT"); + + if ($this->appender !== null and $this->layout !== null and $this->appender->requiresLayout()) { + $this->layout->activateOptions(); + $this->appender->setLayout($this->layout); + $this->layout = null; + } + array_pop($this->state); + break; + + case 'LOGGER': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':LOGGER': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() LOGGER"); + + array_pop($this->state); + break; + + case 'ROOT': + case LOG4PHP_LOGGER_DOM_CONFIGURATOR_XMLNS.':ROOT': + + LoggerLog::debug("LoggerDOMConfigurator::tagClose() ROOT"); + + array_pop($this->state); + break; + } + } + + /** + * @param object $object + * @param string $name + * @param mixed $value + */ + function setter(&$object, $name, $value) + { + if (empty($name)) { + LoggerLog::debug("LoggerDOMConfigurator::setter() 'name' param cannot be empty"); + return false; + } + $methodName = 'set'.ucfirst($name); + if (method_exists($object, $methodName)) { + LoggerLog::debug("LoggerDOMConfigurator::setter() Calling ".get_class($object)."::{$methodName}({$value})"); + return call_user_func(array(&$object, $methodName), $value); + } else { + LoggerLog::warn("LoggerDOMConfigurator::setter() ".get_class($object)."::{$methodName}() does not exists"); + return false; + } + } + + function subst($value) + { + return LoggerOptionConverter::substVars($value); + } + +} +?> \ No newline at end of file diff --git a/log4php.properties b/log4php.properties new file mode 100644 index 0000000..22e20f2 --- /dev/null +++ b/log4php.properties @@ -0,0 +1,62 @@ +log4php.logger.SECURITY=FATAL,A2 +log4php.appender.A2=LoggerAppenderRollingFile +log4php.appender.A2.MaxFileSize=3MB +log4php.appender.A2.MaxBackupIndex=10 +log4php.appender.A2.layout=LoggerLayoutTTCC +log4php.appender.A2.layout.ContextPrinting="true" +log4php.appender.A2.layout.DateFormat="%c" +log4php.appender.A2.File=logs/security.log + +log4php.logger.INSTALL=DEBUG,A3 +log4php.appender.A3=LoggerAppenderRollingFile +log4php.appender.A3.MaxFileSize=3MB +log4php.appender.A3.MaxBackupIndex=10 +log4php.appender.A3.layout=LoggerLayoutTTCC +log4php.appender.A3.layout.ContextPrinting="true" +log4php.appender.A3.layout.DateFormat="%c" +log4php.appender.A3.File=logs/installation.log + +log4php.rootLogger=DEBUG,A1 +log4php.appender.A1=LoggerAppenderRollingFile +log4php.appender.A1.MaxFileSize=3MB +log4php.appender.A1.MaxBackupIndex=10 +log4php.appender.A1.layout=LoggerLayoutTTCC +log4php.appender.A1.layout.ContextPrinting="true" +log4php.appender.A1.layout.DateFormat="%c" +log4php.appender.A1.File=logs/vtigercrm.log + +log4php.logger.MIGRATION=DEBUG,A4 +log4php.appender.A4=LoggerAppenderRollingFile +log4php.appender.A4.MaxFileSize=3MB +log4php.appender.A4.MaxBackupIndex=10 +log4php.appender.A4.layout=LoggerLayoutTTCC +log4php.appender.A4.layout.ContextPrinting="true" +log4php.appender.A4.layout.DateFormat="%c" +log4php.appender.A4.File=logs/migration.log + +log4php.logger.SOAP=FATAL,A5 +log4php.appender.A5=LoggerAppenderRollingFile +log4php.appender.A5.MaxFileSize=3MB +log4php.appender.A5.MaxBackupIndex=10 +log4php.appender.A5.layout=LoggerLayoutTTCC +log4php.appender.A5.layout.ContextPrinting="true" +log4php.appender.A5.layout.DateFormat="%c" +log4php.appender.A5.File=logs/soap.log + +log4php.logger.PLATFORM=INFO,A6 +log4php.appender.A6=LoggerAppenderRollingFile +log4php.appender.A6.MaxFileSize=3MB +log4php.appender.A6.MaxBackupIndex=10 +log4php.appender.A6.layout=LoggerLayoutTTCC +log4php.appender.A6.layout.ContextPrinting="true" +log4php.appender.A6.layout.DateFormat="%c" +log4php.appender.A6.File=logs/platform.log + +log4php.logger.SQLTIME=FATAL,A7 +log4php.appender.A7=LoggerAppenderRollingFile +log4php.appender.A7.MaxFileSize=3MB +log4php.appender.A7.MaxBackupIndex=10 +log4php.appender.A7.layout=LoggerLayoutTTCC +log4php.appender.A7.layout.ContextPrinting="true" +log4php.appender.A7.layout.DateFormat="%c" +log4php.appender.A7.File=logs/sqltime.log diff --git a/log4php/LoggerManager.php b/log4php/LoggerManager.php new file mode 100644 index 0000000..f5a0ec9 --- /dev/null +++ b/log4php/LoggerManager.php @@ -0,0 +1,133 @@ +getConfigInfo($name); + return new Logger($name, $configinfo); + } +} + +/** + * Core logging class. + */ +class Logger { + private $name = false; + private $appender = false; + private $configinfo = false; + + /** + * Writing log file information could cost in-terms of performance. + * Enable logging based on the levels here explicitly + */ + private $enableLogLevel = array( + 'ERROR' => false, + 'FATAL' => false, + 'INFO' => false, + 'WARN' => false, + 'DEBUG' => false, + ); + + function __construct($name, $configinfo = false) { + $this->name = $name; + $this->configinfo = $configinfo; + + /** For migration log-level we need debug turned-on */ + if(strtoupper($name) == 'MIGRATION') { + $this->enableLogLevel['DEBUG'] = true; + } + + } + + function emit($level, $message) { + if(!$this->appender) { + $filename = 'logs/vtigercrm.log'; + if($this->configinfo && isset($this->configinfo['appender']['File'])) { + $filename = $this->configinfo['appender']['File']; + } + $this->appender = new LoggerAppenderFile($filename, 0777); + } + $mypid = @getmypid(); + + $this->appender->emit("$level [$mypid] $this->name - ", $message); + } + + function info($message) { + if($this->isLevelEnabled('INFO')) { + $this->emit('INFO', $message); + } + } + + function debug($message) { + if($this->isDebugEnabled()) { + $this->emit('DEBUG', $message); + } + } + + function warn($message) { + if($this->isLevelEnabled('WARN')) { + $this->emit('WARN', $message); + } + } + + function fatal($message) { + if($this->isLevelEnabled('FATAL')) { + $this->emit('FATAL', $message); + } + } + + function error($message) { + if($this->isLevelEnabled('ERROR')) { + $this->emit('ERROR', $message); + } + } + + function isLevelEnabled($level) { + if($this->enableLogLevel[$level] && $this->configinfo) { + return (strtoupper($this->configinfo['level']) == $level); + } + return false; + } + + function isDebugEnabled() { + return $this->isLevelEnabled('DEBUG'); + } +} + +/** + * Log message appender to file. + */ +class LoggerAppenderFile { + + private $filename; + private $chmod; + + function __construct($filename, $chmod = 0222) { + $this->filename = $filename; + $this->chmod = $chmod; + } + + function emit($prefix, $message) { + if($this->chmod != 0777 && file_exists($this->filename)) { + if(is_readable($this->filename)) { + @chmod($this->filename, $this->chmod); + } + } + $fh = @fopen($this->filename, 'a'); + if($fh) { + @fwrite($fh, date('m/d/Y H:i:s') . " $prefix $message\n"); + @fclose($fh); + } + } + +} +?> \ No newline at end of file diff --git a/log4php/LoggerPropertyConfigurator.php b/log4php/LoggerPropertyConfigurator.php new file mode 100644 index 0000000..9d79bd9 --- /dev/null +++ b/log4php/LoggerPropertyConfigurator.php @@ -0,0 +1,65 @@ +$v) { + if(preg_match("/log4php.rootLogger/i", $k, $m)) { + $name = 'ROOT'; + list($level, $appender) = explode(',', $v); + $types[$name]['level'] = $level; + $types[$name]['appender'] = $appender; + } + if(preg_match("/log4php.logger.(.*)/i", $k, $m)) { + $name = $m[1]; + list($level, $appender) = explode(',', $v); + $types[$name]['level'] = $level; + $types[$name]['appender'] = $appender; + } + if(preg_match("/log4php.appender.([^.]+).?(.*)/i", $k, $m)) { + $appenders[$m[1]][$m[2]] = $v; + } + + } + + $this->types = $types; + $this->appenders = $appenders; + } + + function getConfigInfo($type) { + if(isset($this->types[$type])) { + $typeinfo = $this->types[$type]; + return array ( + 'level' => $typeinfo['level'], + 'appender'=> $this->appenders[$typeinfo['appender']] + + ); + } + return false; + } + + static function getInstance() { + return self::$singleton; + } +} +?> diff --git a/logs/installation.log b/logs/installation.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/migration.log b/logs/migration.log new file mode 100644 index 0000000..6a0f6a9 --- /dev/null +++ b/logs/migration.log @@ -0,0 +1,11 @@ +12/08/2012 07:43:15 DEBUG [4308] MIGRATION - + +DB Changes from 5.4.0RC to 5.4.0 -------- Starts + + +12/08/2012 07:43:15 DEBUG [4308] MIGRATION - + +DB Changes from 5.4.0RC to 5.4.0 -------- Ends + + +12/08/2012 07:43:32 DEBUG [4308] MIGRATION - Query Success ==> UPDATE vtiger_version SET old_version='5.4.0 RC',current_version='5.4.0' diff --git a/logs/platform.log b/logs/platform.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/security.log b/logs/security.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/soap.log b/logs/soap.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/sqltime.log b/logs/sqltime.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/todel.txt.txt b/logs/todel.txt.txt new file mode 100644 index 0000000..e69de29 diff --git a/logs/vtigercrm.log b/logs/vtigercrm.log new file mode 100644 index 0000000..a1ecc51 --- /dev/null +++ b/logs/vtigercrm.log @@ -0,0 +1,28505 @@ +01/30/13 11:57:30,834 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:30,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:30,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,836 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:57:30,836 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:30,836 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:30,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,837 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:57:30,837 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:30,838 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,838 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:30,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,838 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:57:30,838 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:57:30,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:30,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,840 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:57:30,840 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:30,840 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:30,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,841 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:57:30,841 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:57:30,841 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,841 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:30,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,842 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:57:30,842 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:57:30,842 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,842 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:30,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,843 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:57:30,843 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:57:30,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,843 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:30,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,844 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:57:30,845 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:57:30,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:30,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,846 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:57:30,846 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:57:30,846 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:30,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,847 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:57:30,847 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:57:30,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,847 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:57:30,847 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:30) method ... +01/30/13 11:57:30,848 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:30,848 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:30) method ... +01/30/13 11:57:30,848 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:30,848 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:30,848 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:30,849 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:57:30,849 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:57:30,850 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:57:30,853 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,853 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,856 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,862 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,863 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:57:30,867 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:30,867 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,867 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:30,867 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:30,870 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:30,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:30,870 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,871 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:30,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,873 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:30,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,873 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:30,873 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,873 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,874 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:30,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,875 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:57:30,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,875 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:30,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,876 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:57:30,876 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,876 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:30,876 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,876 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:30,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,877 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:57:30,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,877 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:57:30,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,878 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:57:30,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,878 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:30,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,878 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,879 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:57:30,880 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,880 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:30,880 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,880 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:57:30,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,881 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:30,881 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:30,881 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:30,886 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:30,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,887 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:30,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,887 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:57:30,888 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,888 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:57:30,888 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,888 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:57:30,889 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,889 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:30,889 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:57:30,893 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:57:30,893 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,893 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:57:30,893 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:57:30,896 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:57:30,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,902 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:30,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,903 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:57:30,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:30,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,904 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:57:30,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,904 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:30,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,904 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:30,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:30,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,904 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:30,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:30,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,905 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:30,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:30,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,905 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:30,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:30,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,906 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:30,906 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:30,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,906 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:30,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:57:30,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,907 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:57:30,909 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:30,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,909 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:57:30,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:57:30,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,910 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:57:30,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:57:30,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,910 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:57:30,910 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:57:30,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,911 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:57:30,911 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:30,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,912 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:57:30,912 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:30,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,912 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:57:30,912 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:57:30,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,913 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:57:30,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:57:30,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,913 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:57:30,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:57:30,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,914 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:57:30,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:30,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,915 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:30,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:30,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,915 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:30,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:30,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,915 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:57:30,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:30,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,915 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:57:30,915 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:30,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,916 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:57:30,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:30,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,916 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:57:30,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:30,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,917 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:30,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:30,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,917 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:30,917 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:30,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,917 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:30,918 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:30,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,918 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:57:30,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:30,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,918 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:57:30,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:30,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,919 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:30,919 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:30,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,919 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:57:30,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:30,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,920 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:30,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,921 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:57:30,921 [1520] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,138) method ... +01/30/13 11:57:30,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,924 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:30,924 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:30,925 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:30,925 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:30,925 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,926 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,926 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:30,926 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:30,935 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,936 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:30,936 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:30,936 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,938 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:57:30,938 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,941 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:57:30,941 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:57:30,945 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:57:30,947 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,948 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,948 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,950 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:57:30,950 [1520] DEBUG index - id is 138 +01/30/13 11:57:30,950 [1520] DEBUG index - name is OSSEZ +01/30/13 11:57:30,950 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:57:30,950 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,950 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:57:30,951 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,951 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:30,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,952 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:57:30,952 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:57:30,962 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:30,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,962 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:30,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,962 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:57:30,963 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:57:30,964 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:30,966 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:30,966 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:30,966 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:30,966 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:30,966 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:30,968 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:30,968 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:30,970 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:57:30,971 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:30,977 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:57:30,978 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:30,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,978 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:57:30,978 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:30,982 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:57:30,982 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:30,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,982 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:57:30,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,983 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:57:30,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,983 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:57:30,984 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,984 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:57:30,984 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,984 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:57:30,985 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,985 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:30,985 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,985 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:57:30,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,986 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:57:30,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,988 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,988 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:57:30,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,988 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:57:30,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,989 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,989 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,989 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,990 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,990 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,990 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:30,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:30,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,993 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:30,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:30,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,994 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:30,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:30,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,994 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:30,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:57:30,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,995 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:57:30,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:30,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,995 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:30,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:57:30,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,996 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:57:30,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:30,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,996 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:30,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:57:30,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,997 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:57:30,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:30,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,997 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:30,997 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:30,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,998 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:30,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:30,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,998 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:30,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:30,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,998 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:30,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:57:30,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,999 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:30,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:30,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,999 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:30,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:30,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,1000 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:30,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:57:31,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:31,000 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:57:31,000 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:57:31,001 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:31,001 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,183 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:33,308 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:33,309 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:33,309 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:33,309 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:33,309 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:57:33,310 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:57:33,310 [1520] DEBUG index - in AccountsAjax +01/30/13 11:57:33,310 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:57:33,310 [1520] INFO index - current module is Accounts +01/30/13 11:57:33,357 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:33,357 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:33,357 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:33,357 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:33,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,357 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:33,358 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,358 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:33,358 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:33,367 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:33,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,367 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:33,367 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:33,368 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:33,368 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:33,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,369 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:33,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,369 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:33,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,369 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:33,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,370 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:33,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,370 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:33,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,371 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:33,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,371 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:33,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,372 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:33,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,372 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:33,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,373 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:33,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,373 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:33,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,374 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:33,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,374 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:33,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,374 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:33,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,375 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:33,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,375 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:33,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,376 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:33,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,376 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:33,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,377 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:33,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,377 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:33,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,377 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:33,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,378 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:33,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,378 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:33,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,379 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:33,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,379 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:33,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,379 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:33,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,380 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:33,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,380 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:33,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,381 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:33,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,381 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:33,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,382 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:33,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,382 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:33,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,382 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:33,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,383 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:33,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,383 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:33,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,384 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:33,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,384 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,385 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:33,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,386 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:33,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,386 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:33,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,387 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:33,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,387 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:33,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,388 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:33,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,388 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:33,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,389 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:33,418 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:33,418 [1520] DEBUG index - Prepared sql query parameters : [437,1,Accounts,AccountsAjax,138,2013-01-30 11:57:33] +01/30/13 11:57:33,420 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:33,420 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:33,421 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:33,421 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:33,423 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:33,424 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:33,427 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:33,428 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:33,431 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:33,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:33,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,432 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:33,433 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:33,433 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:33,433 [1520] DEBUG index - skipping headers +01/30/13 11:57:33,433 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:33,434 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,437 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:33,437 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:33,438 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,438 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,438 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:33,438 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:33,450 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,450 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:33,454 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:57:33,454 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:33,457 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:33,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:33,457 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,457 [1520] DEBUG index - Entering get_contacts(138) method ... +01/30/13 11:57:33,457 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:57:33,457 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:33,459 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:33,459 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:33,460 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,460 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,460 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:33,460 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:33,468 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,468 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,468 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:33,468 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,468 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,469 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/30/13 11:57:33,470 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,470 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:33,470 [1520] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/30/13 11:57:33,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,471 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:57:33,471 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:33,471 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:57:33,471 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:33,471 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:33,471 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:33,473 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:57:33,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:33,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,476 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:57:33,476 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,477 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:57:33,477 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:57:33,480 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:57:33,480 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:33,481 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:33,481 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,481 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:33,481 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,482 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:57:33,482 [1520] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/30/13 11:57:33,482 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,482 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:57:33,482 [1520] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/30/13 11:57:33,485 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:57:33,485 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 138 +01/30/13 11:57:33,488 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/30/13 11:57:33,493 [1520] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,138,) method ... +01/30/13 11:57:33,493 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:57:33,493 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:57:33,493 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,494 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,494 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,495 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,495 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,496 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:57:33,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,498 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:57:33,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,499 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:57:33,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,501 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:33,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,501 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:57:33,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,503 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:57:33,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,505 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:33,506 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:33,506 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,507 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:57:33,509 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +142,CON13,138,Ms.,,OSSEZ A,,,,,,,0,,,,,,0,0,,0,0,142,1,OSSEZ,Administrator +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:57:33,509 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,509 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,510 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,510 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,510 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:57:33,510 [1520] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:57:33,514 [1520] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,lastname,Contacts,Contacts,142,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:57:33,515 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,516 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,516 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,516 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:57:33,517 [1520] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,title,Contacts,Contacts,142,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:57:33,517 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,518 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,518 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,519 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:57:33,519 [1520] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,email,Contacts,Contacts,142,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:57:33,519 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,519 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,520 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,521 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:57:33,522 [1520] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,phone,Contacts,Contacts,142,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:57:33,522 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,522 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,523 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,523 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,524 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:57:33,524 [1520] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,assigned_user_id,Contacts,Contacts,142,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:57:33,524 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,524 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,525 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,526 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,527 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,528 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:57:33,528 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:33,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:33,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:33,533 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:33,533 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:33,533 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,533 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:33,534 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:57:33,534 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:33,538 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:33,538 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:57:33,538 [1520] DEBUG index - Prepared sql query parameters : [6,4] +01/30/13 11:57:33,541 [1520] INFO index - getNextRow +01/30/13 11:57:33,541 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:57:33,541 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:57:33,542 [1520] DEBUG index - Exiting get_contacts method ... +01/30/13 11:57:34,656 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:34,782 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:34,783 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:34,783 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:34,783 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:34,783 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'lastname', + 'id' => '142', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:57:34,783 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:57:34,784 [1520] DEBUG index - in TooltipAjax +01/30/13 11:57:34,784 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:57:34,784 [1520] INFO index - current module is Tooltip +01/30/13 11:57:34,829 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:34,829 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:34,829 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:34,829 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:34,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:34,830 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:34,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:34,830 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:34,830 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:34,840 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:34,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:34,840 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:34,840 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:34,840 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:34,841 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:34,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,841 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:34,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,842 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:34,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,842 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:34,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,843 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:34,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,843 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:34,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,844 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:34,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,844 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:34,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,844 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:34,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,845 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:34,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,845 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:34,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,846 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:34,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,846 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,847 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:34,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,848 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:34,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,848 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:34,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,849 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:34,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,849 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:34,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,850 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:34,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,850 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:34,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:34,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,852 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:34,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,852 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:34,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,852 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:34,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,853 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:34,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,853 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:34,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,854 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:34,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,855 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:34,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,855 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:34,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,856 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:34,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,856 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:34,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,857 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:34,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,857 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:34,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,858 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:34,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,858 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:34,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,859 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:34,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,859 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:34,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,859 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:34,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,860 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:34,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,860 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:34,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,861 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:34,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,861 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:34,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,862 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:34,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:34,862 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:34,867 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:34,867 [1520] DEBUG index - Prepared sql query parameters : [438,1,Tooltip,TooltipAjax,,2013-01-30 11:57:34] +01/30/13 11:57:34,869 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:34,870 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:34,870 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:34,870 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:34,871 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:34,872 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:34,873 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:34,874 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:34,875 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:34,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:57:34,876 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:57:34,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:34,876 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:34,877 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:34,877 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:34,877 [1520] DEBUG index - skipping headers +01/30/13 11:57:34,878 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:57:34,878 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:34,884 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:34,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:34,885 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:57:34,885 [1520] DEBUG index - Prepared sql query parameters : [4,lastname] +01/30/13 11:57:34,887 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:57:34,887 [1520] DEBUG index - Prepared sql query parameters : [70] +01/30/13 11:57:41,615 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:41,741 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:41,741 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:41,741 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:41,742 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:41,742 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Contacts', + 'record' => '142', + 'parenttab' => 'Marketing', +) +01/30/13 11:57:41,742 [1520] INFO index - About to take action DetailView +01/30/13 11:57:41,742 [1520] DEBUG index - in DetailView +01/30/13 11:57:41,742 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:57:41,742 [1520] INFO index - current module is Contacts +01/30/13 11:57:41,788 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:41,788 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:41,788 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:41,788 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:41,789 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,789 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:41,789 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,789 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:41,789 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:41,801 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:41,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,801 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:41,801 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:41,801 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:41,802 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:41,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,802 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:41,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,803 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:41,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,803 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:41,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,804 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:41,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,804 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:41,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,805 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:41,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,805 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:41,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,806 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:41,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,806 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:41,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,807 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:41,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,807 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:41,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,807 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:41,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,808 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:41,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,808 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:41,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,809 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:41,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,809 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,810 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:41,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,811 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:41,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,811 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,812 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:41,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,813 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:41,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,813 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:41,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,814 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:41,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,814 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:41,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,815 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:41,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,815 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:41,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,815 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:41,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,816 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:41,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,816 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:41,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,817 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:41,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,817 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,818 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:41,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,819 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:41,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,819 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:41,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,820 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:41,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,820 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:41,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,821 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:41,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,821 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:41,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,822 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:41,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,822 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:41,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:41,822 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:41,843 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:41,843 [1520] DEBUG index - Prepared sql query parameters : [439,1,Contacts,DetailView,142,2013-01-30 11:57:41] +01/30/13 11:57:41,848 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:41,848 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:41,848 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:41,849 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:41,850 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:41,850 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:41,853 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:41,854 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:41,857 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:41,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:41,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,858 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:41,858 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:41,859 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:41,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,859 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:41,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,859 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:41,860 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:41,878 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:41,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,879 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:41,879 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:57:41,879 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:57:41,879 [1520] DEBUG index - Prepared sql query parameters : [1,142] +01/30/13 11:57:41,883 [1520] INFO index - in track view method Contacts +01/30/13 11:57:41,883 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:41,884 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:41,885 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:57:41,886 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:41,888 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:41,888 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:41,888 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,142, OSSEZ A] +01/30/13 11:57:41,891 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:41,891 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:41,893 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:57:41,893 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:41,893 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:41,893 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:41,893 [1520] DEBUG index - including headers +01/30/13 11:57:41,893 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:57:41,894 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:41,897 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:41,897 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:41,900 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:57:41,900 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:57:41,900 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:41,902 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:57:41,902 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:57:41,903 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:57:41,903 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,904 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:57:41,904 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,904 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:57:41,904 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,904 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,905 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:57:41,906 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:57:41,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:41,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,916 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:57:41,916 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:41,917 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:41,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,917 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:57:41,917 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:57:41,918 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:41,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,919 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:57:41,919 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:57:41,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:41,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,921 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:57:41,921 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:57:41,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,921 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,922 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:57:41,922 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:57:41,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,922 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:57:41,922 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:41,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:41,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,924 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:57:41,924 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:41,924 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,924 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:57:41,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,925 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:57:41,925 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:57:41,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,925 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:41,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,926 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:57:41,926 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:41,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:41,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,927 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:57:41,927 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:41,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:41,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,928 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:57:41,928 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:41,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,929 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:41,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,929 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:57:41,929 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:57:41,929 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:41,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,930 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:57:41,930 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:41,931 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:41,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,931 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:57:41,931 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:57:41,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,932 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:41,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,932 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:57:41,932 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:57:41,933 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,933 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:41,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,933 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:57:41,933 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:57:41,934 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,934 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:41,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,935 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:57:41,935 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:57:41,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:41,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,936 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:57:41,936 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:57:41,936 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:41,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,937 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:57:41,937 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:57:41,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,937 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:41) method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:41) method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:41,938 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:41,939 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:57:41,940 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:57:41,940 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:57:41,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,954 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:57:41,958 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:41,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,958 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:41,958 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:41,960 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:41,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,961 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:41,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,962 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:41,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,962 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:41,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,963 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:41,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,964 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:41,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,964 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,965 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,966 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:41,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,967 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:41,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,967 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:57:41,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,968 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:57:41,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,968 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,969 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:57:41,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,970 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:41,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,970 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:57:41,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,971 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:41,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,971 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:57:41,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,971 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:41,971 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:41,971 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:41,976 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:41,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,977 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:41,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,977 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:57:41,978 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,978 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:57:41,978 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,978 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:57:41,979 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:41,979 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:41,979 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:57:41,981 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:57:41,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:41,981 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:57:41,981 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:57:41,984 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:57:41,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:41,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,989 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:41,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:41,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,989 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:57:41,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:41,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,990 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:57:41,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:41,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,990 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:41,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:41,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,990 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:41,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:41,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,991 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:41,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:41,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,991 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:41,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:41,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,991 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:41,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:41,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,992 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:41,992 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:41,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,992 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:41,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:57:41,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,993 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:57:41,994 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:41,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,995 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:57:41,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:57:41,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,996 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:57:41,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:57:41,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,997 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:57:41,997 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:57:41,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,997 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:57:41,997 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:41,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,998 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:57:41,998 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:41,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,998 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:57:41,998 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:57:41,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,999 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:57:41,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:57:41,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,999 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:57:41,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:57:41,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:41,1000 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:57:42,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:42,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,000 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:42,001 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:42,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,001 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:42,001 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:42,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,001 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:57:42,001 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:42,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,001 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:57:42,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:42,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,002 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:57:42,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:42,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,002 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:57:42,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:42,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,003 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:42,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:42,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,003 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:42,003 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:42,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,004 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:42,004 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:42,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,004 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:57:42,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:42,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,004 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:57:42,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:42,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,005 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:42,005 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:42,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,006 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:57:42,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:42,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,007 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:42,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,007 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:57:42,008 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:42,008 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,010 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,010 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,010 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,011 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,011 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:42,011 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,014 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:57:42,015 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,017 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:57:42,018 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,020 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:57:42,020 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,022 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:57:42,022 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,024 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:57:42,024 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,025 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,027 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:57:42,027 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:57:42,027 [1520] INFO index - Contact detail view +01/30/13 11:57:42,027 [1520] DEBUG index - Entering updateInfo(142) method ... +01/30/13 11:57:42,027 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:57:42,028 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,029 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:42,029 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:42,029 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:42,029 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,029 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:42,031 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:42,031 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:42,034 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:42,034 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:42,034 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:57:42,035 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:57:42,035 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:42,038 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:57:42,038 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,038 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:42,038 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:57:42,038 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:57:42,039 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,039 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:57:42,039 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:42,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,042 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:42,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,042 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:57:42,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,043 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:42,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,043 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:42,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,043 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:42,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,044 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:42,044 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:57:42,044 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:57:42,054 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:57:42,054 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:57:42,055 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:57:42,055 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,057 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:57:42,057 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:42,057 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:57:42,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:57:42,057 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:57:42,059 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:57:42,059 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:57:42,059 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:57:42,061 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:42,061 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:57:42,063 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:57:42,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,063 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,064 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:57:42,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,064 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:57:42,064 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,064 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,064 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,065 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:57:42,065 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:57:42,065 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,067 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:57:42,067 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:57:42,067 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,068 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:42,068 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,068 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,068 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,068 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:57:42,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,069 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:57:42,069 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,069 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,070 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:57:42,070 [1520] DEBUG index - Entering getAccountName(138) method ... +01/30/13 11:57:42,070 [1520] INFO index - in getAccountName 138 +01/30/13 11:57:42,070 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:57:42,070 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:42,072 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:57:42,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,072 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:42,072 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,072 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,072 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,073 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:57:42,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,073 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:57:42,074 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,074 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,074 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,074 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,075 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:57:42,075 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:57:42,075 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:42,075 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:57:42,080 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 439 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #501 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #501 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:57:42,081 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,081 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:42,083 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:42,083 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:57:42,083 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:42,083 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:57:42,087 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:42,087 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:57:42,087 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:42,087 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:57:42,090 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:42,090 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:57:42,090 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:57:42,091 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:57:42,092 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:57:42,092 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:57:42,103 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:57:42,103 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:57:42,103 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:57:42,104 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:57:42,105 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:57:42,105 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,105 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,105 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,105 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:57:42,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,106 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:57:42,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,106 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,107 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:57:42,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,107 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:57:42,108 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,108 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,108 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,108 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:57:42,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,109 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:57:42,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,109 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,110 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:57:42,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,110 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:57:42,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,110 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,111 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:57:42,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,112 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:42,112 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,112 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,112 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,112 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:57:42,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,113 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:57:42,113 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,113 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,113 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,114 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:57:42,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,114 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:57:42,114 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,114 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,115 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,115 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:57:42,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,116 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:57:42,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,116 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,116 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:57:42,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,117 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:57:42,117 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:57:42,117 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,117 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:42,119 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:57:42,119 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:57:42,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,120 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,121 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:57:42,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,122 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:57:42,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,123 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,124 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:57:42,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,125 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:57:42,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,125 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,126 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:57:42,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,127 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:57:42,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,128 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,129 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:57:42,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,130 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:57:42,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,131 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,132 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:57:42,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,133 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:57:42,133 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,133 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,133 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,134 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:57:42,135 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:57:42,135 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:42,137 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:42,138 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:42,138 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:42,138 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,138 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:42,140 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:42,141 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:42,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,143 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:42,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,144 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:57:42,144 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:57:42,147 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:57:42,147 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:42,148 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:42,148 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:57:42,149 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:57:42,151 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,151 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:42,154 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:42,154 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:42,156 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:42,156 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:42,156 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:57:42,157 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:42,157 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:57:42,157 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:42,157 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:42,157 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:42,157 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:57:42,159 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:42,159 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:42,159 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:57:42,159 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:42,159 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:57:42,160 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:42,160 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,160 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,160 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,160 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:57:42,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,161 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:57:42,161 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:42,161 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:42,161 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:17) method ... +01/30/13 11:57:42,162 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:42,162 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,162 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,162 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,163 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:57:42,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,163 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:42,163 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,163 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,163 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,164 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:57:42,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,165 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:57:42,165 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:42,165 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:42,165 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:17) method ... +01/30/13 11:57:42,165 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:42,165 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,166 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,166 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,166 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:57:42,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,167 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:57:42,167 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,167 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,167 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,168 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:57:42,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,168 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:57:42,168 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,168 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,169 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,169 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:57:42,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,170 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:57:42,170 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,170 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,170 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,171 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:57:42,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,171 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:57:42,171 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,171 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,171 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,172 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:57:42,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,173 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:57:42,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,173 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,174 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:57:42,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,174 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:57:42,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,174 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,175 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:57:42,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,176 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:57:42,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,176 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,176 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:57:42,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,177 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:57:42,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,177 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,178 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:57:42,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,178 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:57:42,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,179 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,179 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:57:42,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,180 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:57:42,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,180 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,181 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:57:42,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,181 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:57:42,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,182 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,182 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:57:42,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,183 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:57:42,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,183 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,184 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:57:42,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,184 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:57:42,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,184 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,185 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:57:42,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,185 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:57:42,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,186 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,186 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:57:42,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,187 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:57:42,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,187 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,188 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:57:42,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,188 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:42,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,188 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,189 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:57:42,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,190 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:57:42,190 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:57:42,190 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,192 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:42,192 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:42,192 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:42,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,193 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:42,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,193 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:42,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,193 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:42,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,193 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:42,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,194 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:42,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,194 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:42,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,194 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:42,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,194 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:42,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,195 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:42,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,195 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:42,195 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:57:42,195 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:57:42,195 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:57:42,195 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,196 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:57:42,196 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,142) method ... +01/30/13 11:57:42,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,196 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,142) method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Entering getEmailParentsList(Contacts,142) method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,197 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:57:42,197 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:57:42,201 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:57:42,201 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:42,201 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:42,203 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,203 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,204 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,204 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,205 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,206 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:57:42,206 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:42,212 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,212 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:57:42,212 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:57:42,233 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:57:42,233 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,234 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:57:42,234 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:57:42,234 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:42,236 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:57:42,236 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:42,236 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:42,237 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:57:42,237 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:42,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,238 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:57:42,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,238 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:57:42,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,239 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:57:42,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,239 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:57:42,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,240 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:57:42,240 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,240 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:42,240 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:42,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:42,242 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:57:42,242 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:42,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,245 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:57:42,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,246 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:57:42,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,246 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:57:42,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,246 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:57:42,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,247 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:57:42,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,247 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:57:42,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,247 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:42,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,248 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:57:42,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,248 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:57:42,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,248 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:57:42,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,249 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:57:42,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,249 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:42,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,249 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:57:42,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,250 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:57:42,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,250 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:57:42,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,250 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:57:42,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,251 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:57:42,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,251 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:57:42,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,251 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:57:42,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,252 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:57:42,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,252 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:57:42,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,252 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:42,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,253 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:57:42,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,253 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:42,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,253 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:57:42,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,254 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:57:42,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,254 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:57:42,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,254 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:57:42,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,255 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:57:42,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,255 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:57:42,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,255 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:57:42,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,256 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:57:42,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,256 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:57:42,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,256 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:57:42,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,257 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:57:42,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,257 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:57:42,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,257 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:57:42,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,258 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:57:42,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,258 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:57:42,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,258 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:57:42,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,258 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:57:42,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,259 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:42,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,259 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:57:42,259 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:57:42,259 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:57:42,259 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,142) method ... +01/30/13 11:57:42,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,260 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,261 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:57:42,261 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:42,264 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:42,265 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,265 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:42,265 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:42,267 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:57:42,267 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,269 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:57:42,269 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:42,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,269 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:42,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:42,269 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:57:42,269 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:57:42,270 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:42,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,270 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:42,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,270 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:57:42,270 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:57:42,281 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:42,281 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,281 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:42,281 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,282 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,282 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:42,282 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:57:42,282 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:42,282 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,283 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:42,283 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:57:42,283 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:42,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,283 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:42,284 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:57:42,284 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:57:42,284 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:57:42,286 [1520] DEBUG index - Entering when status=0 +01/30/13 11:57:42,286 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:57:42,286 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:57:42,288 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:57:42,288 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:57:42,142,1] +01/30/13 11:57:42,294 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,294 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,294 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:57:42,294 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:57:42,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,302 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,302 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:42,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,303 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:42,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,303 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,303 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,304 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,304 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,304 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,305 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:42,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,305 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:42,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,305 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:42,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,306 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:42,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,306 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:57:42,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,306 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:42,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,307 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:42,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,307 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:42,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,307 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:57:42,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,307 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:57:42,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,308 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:42,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,308 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:57:42,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,308 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:42,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,309 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:42,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,309 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:42,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,309 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:42,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,310 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:42,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,310 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:57:42,348 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:42,348 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:42,376 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:42,377 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:42,379 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:42,379 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:42,414 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,414 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,414 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,414 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,415 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:57:42,415 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:42,417 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:42,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,418 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:42,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,418 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:57:42,418 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,418 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,418 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,419 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,419 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:57:42,419 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:57:42,422 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:57:42,422 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:57:42,422 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:57:42,422 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:42,422 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,423 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:42,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,423 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:42,423 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:57:42,431 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:42,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,431 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,431 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:57:42,431 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,432 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,432 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,432 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,432 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:42,432 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:42,432 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:42,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,433 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:42,433 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,433 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:42,433 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:42,442 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:42,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,442 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,442 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,442 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,442 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:57:42,443 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:57:42,443 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,443 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:42,444 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:57:42,449 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:42,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,449 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,450 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,451 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,451 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,451 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,452 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:42,452 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:42,452 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:42,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,453 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:42,453 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:57:42,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:42,453 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:57:42,453 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:42,477 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,477 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:57:42,477 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,477 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:57:42,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:42,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:42,478 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:42,478 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:57:42,478 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:42,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:09,602 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:09,736 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:09,736 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:09,736 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:09,737 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:09,737 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:58:09,737 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:58:09,737 [1520] DEBUG index - in CalendarAjax +01/30/13 11:58:09,737 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:58:09,737 [1520] INFO index - current module is Calendar +01/30/13 11:58:09,782 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:09,782 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:09,783 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:09,783 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:09,783 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:09,783 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:09,783 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:09,783 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:09,783 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:09,792 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:09,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:09,793 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:09,793 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:09,793 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:09,794 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:09,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,794 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:09,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,795 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:09,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,795 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:09,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,795 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:09,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,796 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:09,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,796 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:09,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,797 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:09,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,797 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:09,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,798 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:09,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,799 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:09,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,799 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:09,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,799 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:09,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,800 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:09,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,800 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:09,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,801 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:09,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,801 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:09,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,802 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:09,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,802 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:09,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,803 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:09,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,803 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:09,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,804 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:09,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,804 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:09,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:09,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,806 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:09,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,806 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:09,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,806 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:09,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,807 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:09,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,807 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:09,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,808 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:09,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,808 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:09,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,809 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:09,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,809 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:09,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,809 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:09,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,810 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:09,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,810 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:09,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,811 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:09,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,811 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,812 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:09,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,813 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:09,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,813 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:09,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,814 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:09,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,814 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:09,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:09,815 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:09,815 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:09,815 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:09,815 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:09,815 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:09,817 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:09,817 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:09,819 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:09,819 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:09,821 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:09,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:09,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:09,821 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:09,822 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:09,822 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:09,822 [1520] DEBUG index - skipping headers +01/30/13 11:58:09,823 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:58:09,823 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:09,827 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:09,828 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:58:09,828 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:58:09,828 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:58:09,832 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:59')) +01/30/13 11:58:09,835 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:58:22,475 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:22,601 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:22,601 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:22,601 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:22,602 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:22,602 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Contacts', + 'record' => '142', + 'parenttab' => 'Marketing', +) +01/30/13 11:58:22,602 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:58:22,602 [1520] DEBUG index - in CallRelatedList +01/30/13 11:58:22,602 [1520] INFO index - current page is modules/Contacts/CallRelatedList.php +01/30/13 11:58:22,603 [1520] INFO index - current module is Contacts +01/30/13 11:58:22,648 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:22,649 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:22,649 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:22,649 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:22,649 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,649 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:22,649 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,649 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:22,650 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:22,662 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:22,662 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,662 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:22,662 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:22,662 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:22,663 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:22,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,663 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:22,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,664 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:22,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,664 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:22,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,665 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:22,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,665 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:22,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,666 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:22,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,666 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:22,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,667 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:22,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,667 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:22,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,668 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:22,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,668 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:22,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,668 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:22,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,669 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:22,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,669 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:22,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,670 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:22,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,670 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:22,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,671 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:22,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,671 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:22,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,672 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:22,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,672 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:22,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:22,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,674 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:22,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,674 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:22,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,674 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:22,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,675 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:22,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,675 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:22,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,676 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:22,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,676 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,677 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:22,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,678 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:22,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,678 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:22,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,679 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:22,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,679 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:22,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,680 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:22,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,680 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:22,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,681 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:22,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,681 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:22,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,682 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:22,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,682 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:22,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,683 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:22,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,683 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:22,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,683 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:22,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,684 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:22,689 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:22,689 [1520] DEBUG index - Prepared sql query parameters : [440,1,Contacts,CallRelatedList,142,2013-01-30 11:58:22] +01/30/13 11:58:22,692 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:22,692 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:22,692 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:22,692 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:22,694 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:22,694 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:22,696 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:22,696 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:22,698 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:22,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,699 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:22,699 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:22,699 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:22,699 [1520] DEBUG index - including headers +01/30/13 11:58:22,699 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:58:22,700 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:58:22,703 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:22,703 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:22,707 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:58:22,708 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:58:22,708 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,708 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:58:22,708 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,708 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:58:22,709 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,709 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:58:22,709 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,709 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:58:22,709 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,710 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:58:22,710 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,710 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:58:22,710 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,710 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:58:22,711 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:22,711 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:58:22,711 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:58:22,711 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:58:22,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:22,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,720 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:58:22,720 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:22,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:22,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,721 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:58:22,721 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:58:22,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:22,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,722 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:58:22,722 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:58:22,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:22,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,724 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:58:22,724 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:58:22,724 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,724 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:22,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,725 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:58:22,725 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:58:22,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,726 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:58:22,726 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:22,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:22,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,727 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:58:22,727 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:22,727 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:58:22,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,728 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:58:22,728 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:58:22,728 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,729 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:22,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,729 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:58:22,729 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:22,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:22,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,730 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:58:22,730 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:22,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:22,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,731 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:58:22,731 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:22,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,732 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:22,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,732 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:58:22,732 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:58:22,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:22,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,733 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:58:22,734 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:22,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:22,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,735 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:58:22,735 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:58:22,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,735 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:22,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,736 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:58:22,736 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:58:22,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,736 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:22,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,737 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:58:22,737 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:58:22,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,737 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:22,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,738 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:58:22,738 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:58:22,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:22,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,739 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:58:22,739 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:58:22,739 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:22,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,740 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:58:22,740 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:58:22,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:58:22) method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:58:22) method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:22,741 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:22,743 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:58:22,743 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:58:22,743 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:58:22,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,746 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:58:22,759 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:58:22,759 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,759 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:58:22,759 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:22,761 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:22,761 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:22,761 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,762 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:22,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,764 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:22,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,764 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:58:22,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,764 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,765 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:22,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,766 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:58:22,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,766 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:22,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,767 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:58:22,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,767 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:58:22,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,767 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:22,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,768 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:58:22,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,768 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:58:22,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,769 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:58:22,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,769 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:58:22,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,769 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,770 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:58:22,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,771 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:58:22,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,771 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:58:22,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,772 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:22,772 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:22,772 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:22,775 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:58:22,775 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,775 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:58:22,776 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,776 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:58:22,776 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,777 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:58:22,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,777 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:58:22,778 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,778 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:22,778 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:58:22,780 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:58:22,780 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,780 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:58:22,780 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:58:22,783 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:58:22,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,788 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:22,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,788 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:58:22,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:22,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,789 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:58:22,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:22,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,789 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:58:22,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,789 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:22,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,790 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:22,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:22,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,790 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:22,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:22,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,790 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:22,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:22,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,791 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:22,791 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:22,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,791 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:22,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:58:22,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,792 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:58:22,793 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:58:22,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,794 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:58:22,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:58:22,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,795 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:58:22,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:58:22,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,796 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:58:22,796 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:58:22,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,796 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:58:22,796 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:58:22,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,797 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:58:22,797 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:22,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,797 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:58:22,797 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:58:22,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,798 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:58:22,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:58:22,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,798 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:58:22,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:58:22,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,799 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:58:22,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:22,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,799 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:22,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:22,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,799 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:58:22,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:22,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,800 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:58:22,800 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:22,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,800 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:58:22,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:22,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,801 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:58:22,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:58:22,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,801 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:58:22,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:22,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,802 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:22,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:22,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,802 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:58:22,802 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:58:22,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,803 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:58:22,803 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:22,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,803 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:58:22,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:22,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,803 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:58:22,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:22,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,804 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:22,804 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:58:22,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,805 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:58:22,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:22,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,805 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:22,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,806 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:58:22,806 [1520] DEBUG index - Entering isPermitted(Contacts,CallRelatedList,142) method ... +01/30/13 11:58:22,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,817 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:22,817 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:22,818 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:22,818 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:22,818 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,818 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,819 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:22,819 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:22,828 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:22,829 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:58:22,829 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,832 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:58:22,832 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,835 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:58:22,835 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,837 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:58:22,837 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,839 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:58:22,839 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,840 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:58:22,840 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,841 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,843 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:58:22,843 [1520] DEBUG index - id is 142 +01/30/13 11:58:22,843 [1520] DEBUG index - name is OSSEZ A +01/30/13 11:58:22,843 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:58:22,843 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,845 [1520] DEBUG index - Entering getEmailParentsList(Contacts,142) method ... +01/30/13 11:58:22,845 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,845 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:58:22,845 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:58:22,848 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:58:22,848 [1520] DEBUG index - Prepared sql query being executed : select fieldname from vtiger_field where uitype = '13' and tabid = 4 and vtiger_field.presence in (0,2) +01/30/13 11:58:22,850 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,email) method ... +01/30/13 11:58:22,850 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,850 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,secondaryemail) method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:22,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:58:22,852 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:58:22,852 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,852 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:58:22,852 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:58:22,862 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:22,862 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:58:22,863 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,864 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:58:22,865 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:58:22,865 [1520] DEBUG index - Entering getRelatedLists(Contacts,Contacts) method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,865 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:58:22,866 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:22,871 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:58:22,871 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:22,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:22,872 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:58:22,872 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:22,875 [1520] DEBUG index - Entering updateInfo(142) method ... +01/30/13 11:58:22,875 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:58:22,875 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:22,876 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:58:22,876 [1520] INFO index - in getOwnerName 1 +01/30/13 11:58:22,876 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:58:22,877 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:22,877 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:22,878 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:58:22,878 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:22,880 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:58:22,880 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:22,880 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:58:22,880 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:58:22,881 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:22,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,881 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:58:22,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,882 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:58:22,882 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,882 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:58:22,882 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,882 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:58:22,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,883 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:58:22,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,883 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:22,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,884 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:58:22,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:22,884 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:58:22,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,886 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,887 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:58:22,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,887 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:58:22,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,888 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,888 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,888 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,888 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,889 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:22,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,889 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:22,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:22,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,892 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:22,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:58:22,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,893 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:58:22,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:22,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,893 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:22,893 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:22,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,894 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:22,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:22,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,894 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:22,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Purchase Order) method ... +01/30/13 11:58:22,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,894 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:58:22,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:58:22,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,895 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:58:22,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:22,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,896 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:22,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:58:22,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,896 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:58:22,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:22,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,896 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:22,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:22,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,897 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:22,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:22,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,897 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:22,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:58:22,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,898 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:58:22,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:22,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,898 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:22,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:58:22,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:22,898 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:58:22,899 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:58:22,899 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:22,899 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:27,786 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:27,913 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:27,913 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:27,913 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:27,914 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:27,914 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '18', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:58:27,914 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:58:27,914 [1520] DEBUG index - in ContactsAjax +01/30/13 11:58:27,914 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:58:27,914 [1520] INFO index - current module is Contacts +01/30/13 11:58:27,961 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:27,961 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:27,961 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:27,961 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:27,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:27,961 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:27,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:27,962 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:27,962 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:27,972 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:27,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:27,972 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:27,973 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:27,973 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:27,973 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:27,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,974 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:27,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,974 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:27,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,975 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:27,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,975 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:27,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,976 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:27,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,976 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,977 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:27,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,978 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:27,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,979 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:27,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,979 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:27,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,979 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:27,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,980 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:27,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,980 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:27,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,981 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:27,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,981 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:27,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,982 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:27,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,982 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:27,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,983 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:27,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,983 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:27,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,983 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,984 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:27,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,985 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:27,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,985 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:27,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,986 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:27,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,986 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,987 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:27,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,988 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:27,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,988 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:27,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,989 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:27,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,989 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:27,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,990 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:27,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,990 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:27,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,991 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:27,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,991 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:27,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,991 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:27,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,992 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:27,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,992 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:27,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,993 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:27,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,993 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:27,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,994 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:27,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:27,994 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:27,998 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:27,998 [1520] DEBUG index - Prepared sql query parameters : [441,1,Contacts,ContactsAjax,142,2013-01-30 11:58:27] +01/30/13 11:58:28,001 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:28,002 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:28,002 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:28,002 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:28,003 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:28,004 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:28,005 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:28,006 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:28,007 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:28,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:28,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,008 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:28,008 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:28,008 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:28,008 [1520] DEBUG index - skipping headers +01/30/13 11:58:28,008 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:58:28,009 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:28,020 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:28,020 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:28,020 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:28,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,020 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:28,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,020 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:28,020 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:28,030 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:28,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,030 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:28,033 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:58:28,034 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:58:28,036 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:28,036 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:28,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,036 [1520] DEBUG index - Entering get_opportunities(142) method ... +01/30/13 11:58:28,036 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:58:28,036 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:28,038 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:28,038 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:28,039 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,039 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,039 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:28,039 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:28,044 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,044 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:28,044 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:28,044 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:28,045 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 11:58:28,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:28,046 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:58:28,046 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:28,046 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:58:28,046 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:28,046 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:28,046 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:28,049 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Potentials,Potentials,select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:58:28,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:28,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,051 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 11:58:28,051 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,052 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:58:28,052 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 11:58:28,055 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:58:28,055 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:28,055 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:28,055 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,056 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:58:28,057 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 11:58:28,059 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:58:28,060 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_contactdetails left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid =142 and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) and vtiger_crmentity.deleted=0 +01/30/13 11:58:28,097 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 11:58:28,103 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,142,) method ... +01/30/13 11:58:28,104 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:58:28,104 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:58:28,104 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,104 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:28,105 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:28,107 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,109 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:28,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,112 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:58:28,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,115 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:58:28,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,119 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:58:28,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,121 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:58:28,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,123 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:58:28,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:28,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:28,123 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:58:28,124 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:28,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:28,125 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:58:28,126 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:58:28,126 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:28,127 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:28,128 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,128 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:58:28,128 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 11:58:28,133 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:58:28,133 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Contacts,,) method ... +01/30/13 11:58:28,134 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:28,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,134 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:28,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:28,134 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:58:28,134 [1520] DEBUG index - Prepared sql query parameters : [4,2] +01/30/13 11:58:28,137 [1520] INFO index - getNextRow +01/30/13 11:58:28,137 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:58:28,137 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:58:28,137 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 11:58:42,597 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:42,722 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:42,723 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:42,723 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:42,723 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:42,723 [1520] DEBUG index - array ( + 'module' => 'Potentials', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Contacts', + 'RLreturn_module' => 'Contacts', + 'allselectedboxes' => '', + 'return_action' => 'updateRelations', + 'return_id' => '142', + 'parent_id' => '142', + 'RLparent_id' => '142', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'contact_id' => '142', + 'account_id' => '138', + 'campaignid' => '', + 'emailids' => '142@80|', + 'pmodule' => 'Contacts', + 'pagenum' => '1', + 'button' => '新增 销售机会', +) +01/30/13 11:58:42,724 [1520] INFO index - About to take action EditView +01/30/13 11:58:42,724 [1520] DEBUG index - in EditView +01/30/13 11:58:42,724 [1520] INFO index - current page is modules/Potentials/EditView.php +01/30/13 11:58:42,724 [1520] INFO index - current module is Potentials +01/30/13 11:58:42,769 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:42,769 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:42,769 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:42,769 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:42,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,769 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:42,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,770 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:42,770 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:42,782 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:42,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,782 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:42,782 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:42,783 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:42,783 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:42,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,784 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:42,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,784 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:42,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,784 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:42,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,785 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:42,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,785 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:42,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,786 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:42,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,786 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,787 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:42,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,788 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:42,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,788 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:42,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,789 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:42,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,789 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:42,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,790 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:42,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,790 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:42,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,791 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:42,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,791 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:42,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,791 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:42,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,792 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:42,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,792 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,793 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:42,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,794 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:42,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,794 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,795 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:42,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,796 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:42,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,796 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:42,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,797 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:42,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,797 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,798 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:42,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,799 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:42,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,799 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:42,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,800 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:42,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,800 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:42,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,801 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:42,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,801 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:42,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,802 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:42,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,802 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:42,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,802 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:42,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,803 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:42,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,803 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:42,808 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:42,808 [1520] DEBUG index - Prepared sql query parameters : [442,1,Potentials,EditView,,2013-01-30 11:58:42] +01/30/13 11:58:42,811 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:42,811 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:42,811 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:42,811 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:42,813 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:42,813 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:42,815 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:42,815 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:42,817 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:42,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,817 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:42,817 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:42,817 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:42,817 [1520] DEBUG index - including headers +01/30/13 11:58:42,817 [1520] DEBUG index - Entering getParentTabFromModule(Potentials) method ... +01/30/13 11:58:42,818 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:58:42,821 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:42,821 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:42,823 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:58:42,824 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:58:42,824 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,824 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:58:42,825 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,825 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:58:42,825 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,825 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:58:42,825 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,826 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:58:42,826 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,826 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:58:42,826 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,826 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:58:42,827 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:58:42,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:42,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,836 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:58:42,836 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:42,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:42,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,837 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:58:42,837 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:58:42,838 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:42,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,839 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:58:42,839 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:58:42,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:42,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,840 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:58:42,840 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:58:42,841 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,841 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:42,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,841 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:58:42,841 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:58:42,842 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:42,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,843 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:58:42,843 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:42,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:42,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,844 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:58:42,844 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:42,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:58:42,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,845 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:58:42,845 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:58:42,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,845 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:42,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,846 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:58:42,846 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:42,846 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:42,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,847 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:58:42,847 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:42,848 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,848 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:58:42,848 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:42,848 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,848 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:42,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,849 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:58:42,849 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:58:42,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:42,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,850 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:58:42,850 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:42,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:42,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,851 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:58:42,851 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:58:42,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,852 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:42,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,852 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:58:42,852 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:58:42,852 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,852 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:42,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,853 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:58:42,853 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:58:42,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,853 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:42,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,854 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:58:42,854 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:58:42,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:42,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,855 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:58:42,855 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:58:42,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:42,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,856 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:58:42,856 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:58:42) method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:58:42) method ... +01/30/13 11:58:42,857 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:58:42,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:42,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:42,859 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:58:42,859 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:58:42,859 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:58:42,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,864 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,865 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,866 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,867 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,868 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,869 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,871 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,872 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,872 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,872 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:58:42,876 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:58:42,876 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,876 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:58:42,876 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:42,878 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:42,878 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:42,879 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,879 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,880 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:42,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,881 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:42,881 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,881 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:42,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,882 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,883 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,884 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:58:42,885 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,885 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:42,885 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,885 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:58:42,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,886 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:58:42,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,886 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:58:42,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,887 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:58:42,888 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,888 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:58:42,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,888 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:58:42,888 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,889 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:58:42,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,889 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:58:42,889 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,889 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:42,889 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:42,889 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:42,893 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:58:42,893 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,894 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:58:42,894 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,894 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:58:42,894 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,895 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:58:42,895 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,895 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:58:42,896 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,896 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:42,896 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:58:42,898 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:58:42,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,898 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:58:42,898 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:58:42,901 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:58:42,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,906 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:42,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:42,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,907 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:58:42,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:42,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,907 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:58:42,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:42,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,908 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:58:42,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:42,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,908 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:42,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,908 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:42,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:42,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,909 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:42,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:42,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,909 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:42,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:42,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,910 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:42,910 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:42,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,910 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:42,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:58:42,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,910 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:58:42,912 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:58:42,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,913 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:58:42,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:58:42,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,913 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:58:42,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:58:42,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,914 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:58:42,914 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:58:42,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,915 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:58:42,915 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:58:42,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,915 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:58:42,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:42,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,915 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:58:42,915 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:58:42,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,916 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:58:42,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:58:42,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,916 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:58:42,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:58:42,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,917 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:58:42,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:42,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,918 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:42,918 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:42,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,918 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:58:42,918 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:42,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,918 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:58:42,919 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:42,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,919 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:58:42,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:42,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,919 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:58:42,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:58:42,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,920 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:58:42,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:42,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,920 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:42,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:42,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,920 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:58:42,920 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:58:42,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,921 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:58:42,921 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:42,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,922 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:58:42,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:42,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,922 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:58:42,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:42,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,923 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:42,923 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:58:42,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,923 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:58:42,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:42,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,924 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:42,924 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,925 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:58:42,925 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:42,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:42,927 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:42,927 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:42,927 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:42,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,927 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:42,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,927 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:42,928 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:42,937 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:42,937 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,937 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Entering setObjectValuesFromRequest(Potentials) method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Entering getBlocks(Potentials,create_view,,Array,BAS) method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,938 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:58:42,938 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:42,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,941 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:58:42,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,941 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:58:42,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,942 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:58:42,942 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:58:42,942 [1520] DEBUG index - Prepared sql query parameters : [2,1,2,3,BAS] +01/30/13 11:58:42,949 [1520] DEBUG index - Entering getBlockInformation(Potentials,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +2,110,potentialname,vtiger_potential,1,2,potentialname,Potential Name,1,0,,100,1,1,1,V~M,0,1,BAS,1, +2,111,potential_no,vtiger_potential,1,4,potential_no,Potential No,1,0,,100,2,1,1,V~O,3,,BAS,0, +2,113,related_to,vtiger_potential,1,10,related_to,Related To,1,0,,100,3,1,1,V~M,0,2,BAS,1, +2,112,amount,vtiger_potential,1,71,amount,Amount,1,2,,100,4,1,1,N~O,2,5,BAS,1, +2,115,potentialtype,vtiger_potential,1,15,opportunity_type,Type,1,2,,100,6,1,1,V~O,1,,BAS,1, +2,114,closingdate,vtiger_potential,1,23,closingdate,Expected Close Date,1,2,,100,7,1,1,D~M,2,3,BAS,1, +2,117,leadsource,vtiger_potential,1,15,leadsource,Lead Source,1,2,,100,8,1,1,V~O,1,,BAS,1, +2,116,nextstep,vtiger_potential,1,1,nextstep,Next Step,1,2,,100,9,1,1,V~O,1,,BAS,1, +2,119,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,2,,100,10,1,1,V~M,0,6,BAS,1, +2,118,sales_stage,vtiger_potential,1,15,sales_stage,Sales Stage,1,2,,100,11,1,1,V~M,2,4,BAS,1, +2,121,campaignid,vtiger_potential,1,58,campaignid,Campaign Source,1,2,,100,12,1,1,N~O,1,,BAS,1, +2,120,probability,vtiger_potential,1,9,probability,Probability,1,2,,100,13,1,1,N~O,1,,BAS,1, +2,125,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,3,1,V~O,1,,BAS,1, +,Array,2,Array) method ... +01/30/13 11:58:42,949 [1520] DEBUG index - Entering getOutputHtml(2,potentialname,Potential Name,100,Array,1,Potentials) method ... +01/30/13 11:58:42,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,950 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:58:42,950 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:42,951 [1520] DEBUG index - Entering getOutputHtml(4,potential_no,Potential No,100,Array,1,Potentials) method ... +01/30/13 11:58:42,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,951 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:58:42,951 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:42,952 [1520] DEBUG index - Entering getOutputHtml(10,related_to,Related To,100,Array,1,Potentials) method ... +01/30/13 11:58:42,952 [1520] DEBUG index - Prepared sql query being executed : SELECT relmodule, status FROM vtiger_fieldmodulerel WHERE fieldid= + (SELECT fieldid FROM vtiger_field, vtiger_tab WHERE vtiger_field.tabid=vtiger_tab.tabid AND fieldname=? AND name=? and vtiger_field.presence in (0,2)) +01/30/13 11:58:42,952 [1520] DEBUG index - Prepared sql query parameters : [related_to,Potentials] +01/30/13 11:58:42,955 [1520] DEBUG index - Entering getSalesEntityType(142) method ... +01/30/13 11:58:42,955 [1520] INFO index - in getSalesEntityType 142 +01/30/13 11:58:42,955 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:58:42,955 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:42,957 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:58:42,957 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:58:42,957 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:42,958 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:58:42,960 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:58:42,960 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:42,961 [1520] DEBUG index - in function getcolumnvisibilitypermission firstname -1 +01/30/13 11:58:42,961 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,962 [1520] DEBUG index - Prepared sql query being executed : select fieldname from vtiger_field where tabid=? and columnname=? and vtiger_field.presence in (0,2) +01/30/13 11:58:42,962 [1520] DEBUG index - Prepared sql query parameters : [4,firstname] +01/30/13 11:58:42,964 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:42,964 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:42,964 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,965 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,965 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:42,965 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:42,975 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,976 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:42,976 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:42,976 [1520] DEBUG index - in function getcolumnvisibilitypermission lastname -1 +01/30/13 11:58:42,976 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,976 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 11:58:42,976 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:42,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:42,977 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:42,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,977 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:58:42,977 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:42,978 [1520] DEBUG index - Entering getOutputHtml(71,amount,Amount,100,Array,1,Potentials) method ... +01/30/13 11:58:42,978 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:58:42,978 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:58:42,978 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:58:42,978 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:42,981 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:58:42,981 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:58:42,981 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:58:42,981 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:58:42,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:42,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:42,981 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:58:42,981 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:42,982 [1520] DEBUG index - Entering getOutputHtml(15,opportunity_type,Type,100,Array,1,Potentials) method ... +01/30/13 11:58:42,982 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:58:42,982 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:58:42,983 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:58:42,983 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:58:42,983 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:58:42,985 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:58:42,985 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:58:42,985 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:58:42,987 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:58:42,987 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:58:42,988 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:42,988 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:58:42,992 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 442 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #486 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #486 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:58:42,993 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:42,993 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:42,995 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:42,995 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:58:42,995 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:42,995 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:58:42,999 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:42,999 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:58:42,999 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:42,999 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:58:43,005 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,005 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:58:43,005 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:58:43,005 [1520] DEBUG index - Prepared sql query parameters : [opportunity_type] +01/30/13 11:58:43,007 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct opportunity_type FROM vtiger_opportunity_type inner join vtiger_role2picklist on vtiger_opportunity_type.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:58:43,007 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:58:43,017 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:58:43,017 [1520] DEBUG index - function getTranslatedString(Existing Business) - translated to (已有业务往来) +01/30/13 11:58:43,017 [1520] DEBUG index - function getTranslatedString(New Business) - translated to (新业务) +01/30/13 11:58:43,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,017 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:58:43,017 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,018 [1520] DEBUG index - Entering getOutputHtml(23,closingdate,Expected Close Date,100,Array,1,Potentials) method ... +01/30/13 11:58:43,018 [1520] INFO index - uitype is 23 +01/30/13 11:58:43,018 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:43,018 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:43,018 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:58:43,018 [1520] INFO index - in getNewDisplayDate +01/30/13 11:58:43,019 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:58:43) method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,019 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:58:43,019 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:58:43,019 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,020 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Potentials) method ... +01/30/13 11:58:43,020 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:58:43,021 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:58:43,021 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:58:43,021 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:58:43,021 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,021 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:58:43,025 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 442 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #496 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #496 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:58:43,026 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:43,026 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:43,028 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,028 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:58:43,029 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,029 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:58:43,032 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,032 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:58:43,033 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,033 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:58:43,037 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,037 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:58:43,037 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:58:43,037 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:58:43,039 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:58:43,039 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:58:43,057 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:58:43,057 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:58:43,058 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:58:43,058 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:58:43,058 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:58:43,058 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:58:43,058 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:58:43,059 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:58:43,059 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:58:43,059 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:58:43,059 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:58:43,059 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:58:43,060 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其他) +01/30/13 11:58:43,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,060 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:58:43,060 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,061 [1520] DEBUG index - Entering getOutputHtml(1,nextstep,Next Step,100,Array,1,Potentials) method ... +01/30/13 11:58:43,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,062 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,062 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:58:43,063 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,063 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Potentials) method ... +01/30/13 11:58:43,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,065 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:58:43,065 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:58:43,065 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:58:43,067 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:58:43,067 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:58:43,068 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:58:43,068 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:58:43,069 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:58:43,071 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:43,072 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:43,075 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:43,075 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:43,077 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:43,078 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:58:43,078 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:58:43,078 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:58:43,078 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:58:43,078 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:58:43,078 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:58:43,079 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:58:43,080 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:58:43,082 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:43,082 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:58:43,082 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:58:43,083 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:58:43,083 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:58:43,083 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:58:43,083 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,083 [1520] DEBUG index - Entering getOutputHtml(15,sales_stage,Sales Stage,100,Array,1,Potentials) method ... +01/30/13 11:58:43,084 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:58:43,084 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:58:43,084 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:58:43,084 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:58:43,084 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,084 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:58:43,089 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 442 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #517 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #517 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:58:43,090 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:43,090 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:43,092 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,092 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:58:43,092 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,092 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:58:43,096 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,096 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:58:43,096 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:58:43,096 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:58:43,100 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:58:43,101 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:58:43,101 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:58:43,101 [1520] DEBUG index - Prepared sql query parameters : [sales_stage] +01/30/13 11:58:43,103 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct sales_stage FROM vtiger_sales_stage inner join vtiger_role2picklist on vtiger_sales_stage.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:58:43,103 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Prospecting) - translated to (初期沟通) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Qualification) - translated to (立项评估) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Needs Analysis) - translated to (需求分析) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Value Proposition) - translated to (方案制订) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Id. Decision Makers) - translated to (辨识决策者) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Perception Analysis) - translated to (感性分析) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Proposal/Price Quote) - translated to (投标/报价) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Negotiation/Review) - translated to (谈判/回顾) +01/30/13 11:58:43,119 [1520] DEBUG index - function getTranslatedString(Closed Won) - translated to (成功结案) +01/30/13 11:58:43,120 [1520] DEBUG index - function getTranslatedString(Closed Lost) - translated to (失败结案) +01/30/13 11:58:43,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,120 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:58:43,120 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,120 [1520] DEBUG index - Entering getOutputHtml(58,campaignid,Campaign Source,100,Array,1,Potentials) method ... +01/30/13 11:58:43,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,121 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:58:43,121 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,122 [1520] DEBUG index - Entering getOutputHtml(9,probability,Probability,100,Array,1,Potentials) method ... +01/30/13 11:58:43,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,122 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:58:43,122 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,123 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Potentials) method ... +01/30/13 11:58:43,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,124 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:58:43,124 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:58:43,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,124 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:58:43,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,124 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:58:43,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,125 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:58:43,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,125 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:58:43,125 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:58:43,125 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:58:43,125 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:43,125 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:43,127 [1520] INFO index - Potential detail view +01/30/13 11:58:43,127 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:58:43,127 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:58:43,130 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:43,130 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:43,130 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:43,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:43,130 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:58:43,130 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:43,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,133 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:58:43,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,133 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:58:43,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,134 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:58:43,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,134 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:58:43,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,134 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:58:43,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,135 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:58:43,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,135 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:58:43,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,136 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:58:43,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,136 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:58:43,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,136 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:58:43,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,137 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:58:43,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,137 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:58:43,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,137 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:58:43,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,138 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:58:43,138 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:58:43,138 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:58:43,139 [1520] DEBUG index - Entering Button_Check(Potentials) method ... +01/30/13 11:58:43,139 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:43,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,139 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:58:43,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,140 [1520] DEBUG index - Entering isPermitted(Potentials,Import,) method ... +01/30/13 11:58:43,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,140 [1520] DEBUG index - Entering isPermitted(Potentials,Export,) method ... +01/30/13 11:58:43,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,141 [1520] DEBUG index - Entering isPermitted(Potentials,Merge,) method ... +01/30/13 11:58:43,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,141 [1520] DEBUG index - Entering isPermitted(Potentials,DuplicatesHandling,) method ... +01/30/13 11:58:43,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,142 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:43,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,142 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:58:43,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:43,143 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:58:43,143 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Potentials)... +01/30/13 11:58:43,143 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:43,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:43,143 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:58:43,143 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:58:43,144 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:58:43,144 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:43,146 [1520] DEBUG index - Prepared sql query being executed : select potential_no from vtiger_potential where potential_no = ? +01/30/13 11:58:43,146 [1520] DEBUG index - Prepared sql query parameters : [POT12] +01/30/13 11:58:43,148 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:58:43,174 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:43,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:43,175 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:58:43,175 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:43,180 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:43,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:43,180 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:58:43,180 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:43,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,189 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,190 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:43,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,190 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:43,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,191 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,192 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,192 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,193 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,194 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,194 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:43,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:43,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,195 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:43,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:43,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,214 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:58:43,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:43,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:43,214 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:43,257 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:58:43,257 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:43,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:55,621 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:55,748 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:55,748 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:55,748 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:55,749 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:55,749 [1520] DEBUG index - array ( + 'contact_id' => '', + 'pagenumber' => '', + 'module' => 'Potentials', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => 'Contacts', + 'return_id' => '142', + 'return_action' => 'updateRelations', + 'return_viewname' => '', + 'createmode' => '', + 'potentialname' => ' OSSEZ A 销售机会', + 'potential_no' => '自动生成编号', + 'related_to_type' => 'Contacts', + 'related_to' => '142', + 'related_to_display' => ' OSSEZ A', + 'amount' => '0', + 'opportunity_type' => '--None--', + 'closingdate' => '2013-01-30', + 'leadsource' => '--None--', + 'nextstep' => '', + 'assigntype' => 'U', + 'assigned_user_id' => '1', + 'assigned_group_id' => '3', + 'sales_stage' => 'Prospecting', + 'campaignname' => '', + 'campaignid' => '', + 'probability' => '', + 'description' => '', + 'button' => ' 保存 ', +) +01/30/13 11:58:55,749 [1520] INFO index - About to take action Save +01/30/13 11:58:55,749 [1520] DEBUG index - in Save +01/30/13 11:58:55,749 [1520] INFO index - current page is modules/Potentials/Save.php +01/30/13 11:58:55,749 [1520] INFO index - current module is Potentials +01/30/13 11:58:55,795 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:55,795 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:55,795 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:55,795 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:55,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,796 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:55,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,796 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:55,796 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:55,808 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:55,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,808 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:55,808 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:55,809 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:55,809 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:55,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,810 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:55,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,810 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:55,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,811 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:55,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,811 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:55,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,811 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:55,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,812 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:55,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,812 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:55,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,813 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:55,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,813 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:55,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,814 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:55,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,814 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:55,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,815 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:55,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,815 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:55,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,815 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:55,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,816 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:55,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,816 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:55,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,817 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:55,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,817 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:55,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,818 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:55,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,818 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:55,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,818 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,819 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:55,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,820 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:55,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,820 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:55,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,821 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:55,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,821 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:55,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,822 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:55,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,822 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:55,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,823 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:55,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,823 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:55,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,823 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:55,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,824 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:55,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,824 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:55,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,825 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:55,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,825 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:55,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,826 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:55,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,826 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:55,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,826 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:55,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,827 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:55,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,827 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:55,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,828 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:55,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,828 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,829 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:55,833 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:55,833 [1520] DEBUG index - Prepared sql query parameters : [443,1,Potentials,Save,,2013-01-30 11:58:55] +01/30/13 11:58:55,837 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:55,837 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:55,837 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:55,837 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:55,839 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:55,839 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:55,841 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:55,841 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:55,842 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:55,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:55,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:55,843 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:55,843 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:55,843 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:55,843 [1520] DEBUG index - skipping headers +01/30/13 11:58:55,843 [1520] DEBUG index - Entering isPermitted(Potentials,Save,) method ... +01/30/13 11:58:55,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:55,845 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:55,845 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:55,845 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,845 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,845 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:55,845 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:55,851 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,851 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:55,852 [1520] DEBUG index - Entering setObjectValuesFromRequest(Potentials) method ... +01/30/13 11:58:55,852 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:58:55,852 [1520] DEBUG index - module name is Potentials +01/30/13 11:58:55,852 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:58:55,860 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:58:55,860 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:55,863 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Potentials +01/30/13 11:58:55,863 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:58:55,863 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:58:55,863 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:55,868 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:58:55,868 [1520] DEBUG index - Prepared sql query parameters : [143,1,1,Potentials,,1,2013-01-30 11:58:55,2013-01-30 11:58:55] +01/30/13 11:58:55,872 [1520] INFO index - function insertIntoEntityTable Potentials vtiger_table name vtiger_potential +01/30/13 11:58:55,872 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,872 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:58:55,872 [1520] DEBUG index - Prepared sql query parameters : [2,vtiger_potential] +01/30/13 11:58:55,877 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:58:55,877 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:55,879 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:58:55,879 [1520] DEBUG index - Prepared sql query parameters : [13,12,Potentials] +01/30/13 11:58:55,883 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:58:55,883 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:58:55,883 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:58:55,883 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:55,885 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:58:55,885 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:58:55,885 [1520] DEBUG index - Entering convertToDollar(0,1.000) method ... +01/30/13 11:58:55,886 [1520] DEBUG index - Exiting convertToDollar method ... +01/30/13 11:58:55,886 [1520] DEBUG index - Entering function get_column_value (amount, 0, amount, 71, N='') +01/30/13 11:58:55,886 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:58:55,886 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:58:55,887 [1520] DEBUG index - Entering function get_column_value (nextstep, , nextstep, 1, V='') +01/30/13 11:58:55,887 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:58:55,887 [1520] DEBUG index - Entering function get_column_value (probability, , probability, 9, N='') +01/30/13 11:58:55,888 [1520] DEBUG index - Entering function get_column_value (campaignid, , campaignid, 58, N='') +01/30/13 11:58:55,888 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_potential(potentialid,potentialname,potential_no,amount,related_to,closingdate,potentialtype,nextstep,leadsource,sales_stage,probability,campaignid) values(?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:58:55,888 [1520] DEBUG index - Prepared sql query parameters : [143,OSSEZ A 销售机会,POT12,0,142,2013-01-30,--None--,,--None--,Prospecting,0,0] +01/30/13 11:58:55,892 [1520] INFO index - function insertIntoEntityTable Potentials vtiger_table name vtiger_potentialscf +01/30/13 11:58:55,892 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,892 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,892 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:58:55,892 [1520] DEBUG index - Prepared sql query parameters : [2,vtiger_potentialscf] +01/30/13 11:58:55,896 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_potentialscf(potentialid) values(?) +01/30/13 11:58:55,896 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,899 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:58:55,900 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:58:55,900 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:58:55,900 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:58:55,900 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,902 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:55,902 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:55,902 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,903 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:55,903 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:58:55,903 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,907 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potential where potentialid=? +01/30/13 11:58:55,907 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,909 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potentialscf where potentialid=? +01/30/13 11:58:55,910 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,911 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,918 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:58:55,920 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:55,920 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:55,920 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:55,920 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:55,920 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,920 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:55,920 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:55,920 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:55,921 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:55,923 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:58:55,923 [1520] DEBUG index - Prepared sql query parameters : [13x143] +01/30/13 11:58:55,926 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:55,926 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:55,926 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,927 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:55,927 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:55,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:55,927 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:58:55,927 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:55,929 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:55,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,931 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:55,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:55,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,934 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,935 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,936 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:55,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:55,938 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:55,938 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:58:55,941 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:55,941 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:55,941 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:58:55,945 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:58:55,945 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:58:55,990 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:55,991 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:58:55,993 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:55,993 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:58:55,996 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:55,996 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:58:55,998 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:55,999 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:58:56,001 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:58:56,002 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:58:56,048 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,048 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:58:56,050 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,050 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:58:56,052 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,053 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:58:56,055 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,055 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:58:56,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,058 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:58:56,060 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,060 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:58:56,062 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,062 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:58:56,064 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,064 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:58:56,066 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:56,066 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:58:56,068 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:58:56,069 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:58:56,102 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,103 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:58:56,104 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,105 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:58:56,107 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,107 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:58:56,109 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,109 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:58:56,113 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:58:56,113 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:56,115 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,115 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:58:56,117 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:56,117 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:58:56,120 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:58:56,120 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:58:56,152 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,153 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:58:56,155 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,155 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:58:56,160 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,160 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:58:56,162 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,162 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:58:56,164 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,164 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:58:56,166 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,167 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:58:56,169 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,169 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:58:56,171 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,171 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:58:56,173 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,173 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:58:56,175 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,176 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:58:56,178 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,178 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:58:56,182 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:58:56,183 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:58:56,185 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:56,189 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:56,190 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:56,193 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:56,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:56,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,195 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:56,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:56,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,195 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:58:56,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:56,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,196 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:58:56,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:56,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,196 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:58:56,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:58:56,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,197 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:58:56,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:58:56,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:58:56,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:56,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,198 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:56,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:56,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,198 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:58:56,198 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:58:56,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,199 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:58:56,199 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:58:56,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,199 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:58:56,199 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:58:56,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,200 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:58:56,200 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:58:56,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,201 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:58:56,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:56,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,201 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:56,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:56,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:58:56,202 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:56,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,202 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:58:56,202 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:56,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,202 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:58:56,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:56,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,204 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:58:56,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:56,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,204 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:58:56,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:56,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,205 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:58:56,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:56,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,205 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:58:56,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:56,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,206 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:58:56,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:56,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,206 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:58:56,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:56,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,207 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:56,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:56,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,207 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:58:56,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:56,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,208 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:56,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:56,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,208 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:58:56,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:56,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,209 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:56,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:56,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,209 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:58:56,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:56,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,210 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:56,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:56,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,210 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:58:56,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:56,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,211 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:56,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:56,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,211 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:58:56,211 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:56,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,212 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:56,212 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:56,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,212 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:58:56,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:56,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,213 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:58:56,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:56,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,213 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:58:56,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:58:56,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,214 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:58:56,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:58:56,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,215 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:58:56,215 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:58:56,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,216 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:58:56,216 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:58:56,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,216 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:58:56,216 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:56,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,217 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:58:56,217 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:56,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,217 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:58:56,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:56,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,218 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:56,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:56,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,218 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:58:56,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:56,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,219 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:58:56,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:56,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,219 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:58:56,219 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:56,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,220 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:58:56,220 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:56,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,220 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:58:56,220 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:56,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,221 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:58:56,221 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:56,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,221 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:58:56,221 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:56,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,222 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:58:56,222 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:56,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,222 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:58:56,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:56,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,223 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:58:56,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:56,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,223 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:58:56,223 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:58:56,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,223 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:58:56,224 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:58:56,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,224 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:58:56,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,225 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:58:56,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,227 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:58:56,227 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:56,231 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:58:56,231 [1520] DEBUG index - Prepared sql query parameters : [2,1,3] +01/30/13 11:58:56,241 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,143) method ... +01/30/13 11:58:56,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:56,241 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Potentials' +01/30/13 11:58:56,242 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:56,244 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:56,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,244 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:56,244 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:56,244 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:56,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,244 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,245 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:58:56,245 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:58:56,245 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:56,247 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potential where potentialid=? +01/30/13 11:58:56,247 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:56,251 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potentialscf where potentialid=? +01/30/13 11:58:56,251 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:56,253 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:56,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,254 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:58:56,254 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:58:56,254 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:58:56,334 [1520] DEBUG index - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:58:56,334 [1520] DEBUG index - Prepared sql query parameters : [113] +01/30/13 11:58:56,336 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:56,336 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:56,337 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:58:56,337 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:58:56,339 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:56,339 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:56,340 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:58:56,340 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:58:56,342 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:56,342 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:56,342 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:56,342 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:58:56,345 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:58:56,345 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:58:56,345 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:56,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,346 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:56,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,346 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:56,346 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:58:56,360 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:56,360 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,361 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,361 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:56,361 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,361 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:58:56,362 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:56,364 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:56,364 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:58:56,367 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:56,367 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:56,367 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,368 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,368 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,368 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:56,368 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:56,380 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,380 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,380 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,380 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Contacts' +01/30/13 11:58:56,380 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:56,382 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:58:56,382 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:56,384 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:56,384 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:56,385 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:56,385 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:56,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,385 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,385 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:56,385 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:56,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,385 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? and deleted=0 and status='Active' +01/30/13 11:58:56,385 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:56,389 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:58:56,389 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:56,391 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:58:56,391 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:56,393 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:58:56,393 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:58:56,394 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:58:56,442 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:58:56,442 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:58:56,447 [1520] DEBUG index - Prepared sql query being executed : select task from com_vtiger_workflowtasks + where workflow_id=? +01/30/13 11:58:56,448 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:58:56,460 [1520] DEBUG index - Prepared sql query being executed : select * from com_vtiger_workflowtask_queue + where task_id=? and entity_id=? +01/30/13 11:58:56,460 [1520] DEBUG index - Prepared sql query parameters : [5,13x143] +01/30/13 11:58:56,462 [1520] DEBUG index - Prepared sql query being executed : insert into com_vtiger_workflowtask_queue (task_id, entity_id, do_after) + values (?,?,?) +01/30/13 11:58:56,462 [1520] DEBUG index - Prepared sql query parameters : [5,13x143,0] +01/30/13 11:58:56,480 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:56,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,480 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:58:56,481 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:56,482 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:56,482 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:56,489 [1520] DEBUG index - Saved record with id of 142 +01/30/13 11:58:56,490 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:58:56,490 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:56,491 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:56,569 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:56,695 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:56,695 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:56,695 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:56,696 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:56,696 [1520] DEBUG index - array ( + 'action' => 'updateRelations', + 'module' => 'Contacts', + 'parenttab' => 'Marketing', + 'record' => '142', + 'pot_id' => '143', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:58:56,696 [1520] INFO index - About to take action updateRelations +01/30/13 11:58:56,696 [1520] DEBUG index - in updateRelations +01/30/13 11:58:56,696 [1520] INFO index - current page is modules/Contacts/updateRelations.php +01/30/13 11:58:56,696 [1520] INFO index - current module is Contacts +01/30/13 11:58:56,742 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:56,742 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:56,742 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:56,743 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:56,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,743 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:56,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,743 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:56,743 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:56,755 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:56,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,755 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,755 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:56,755 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:56,756 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:56,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,756 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:56,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,757 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:56,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,757 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:56,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,758 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:56,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,758 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:56,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,759 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:56,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,759 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:56,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,760 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:56,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,760 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:56,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,760 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:56,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,761 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:56,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,761 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:56,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,762 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:56,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,762 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,763 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:56,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,764 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:56,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,764 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:56,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,765 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:56,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,765 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,766 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:56,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,767 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:56,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,767 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:56,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,768 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:56,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,768 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:56,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,768 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:56,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,769 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:56,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,769 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:56,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,770 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:56,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,770 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:56,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,771 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:56,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,771 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:56,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,772 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:56,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,772 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:56,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,772 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:56,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,773 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:56,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,773 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:56,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,774 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:56,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,774 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:56,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,775 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:56,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,775 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:56,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,775 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:56,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,776 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:56,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:56,776 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:56,781 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:56,781 [1520] DEBUG index - Prepared sql query parameters : [444,1,Contacts,updateRelations,142,2013-01-30 11:58:56] +01/30/13 11:58:56,785 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:56,785 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:56,785 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:56,785 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:56,787 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:56,787 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:56,789 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:56,789 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:56,790 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:56,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:56,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:56,791 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:56,791 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:56,791 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:56,791 [1520] DEBUG index - skipping headers +01/30/13 11:58:56,791 [1520] DEBUG index - Entering isPermitted(Contacts,updateRelations,142) method ... +01/30/13 11:58:56,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:56,806 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:56,806 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:56,809 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:56,809 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:56,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,809 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:56,809 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:56,821 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:56,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:56,821 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:56,821 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_contpotentialrel values(?,?) +01/30/13 11:58:56,821 [1520] DEBUG index - Prepared sql query parameters : [142,143] +01/30/13 11:58:56,825 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity SET modifiedtime = ?, modifiedby = ? WHERE crmid = ? +01/30/13 11:58:56,825 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:58:56,1,142] +01/30/13 11:58:56,829 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:58:56,829 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:56,829 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:56,910 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:57,035 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:57,035 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:57,035 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:57,036 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:57,036 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Contacts', + 'record' => '142', + 'parenttab' => 'Marketing', +) +01/30/13 11:58:57,036 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:58:57,036 [1520] DEBUG index - in CallRelatedList +01/30/13 11:58:57,036 [1520] INFO index - current page is modules/Contacts/CallRelatedList.php +01/30/13 11:58:57,036 [1520] INFO index - current module is Contacts +01/30/13 11:58:57,082 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:57,082 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:57,082 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:57,082 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,083 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,083 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,083 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:57,083 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:57,094 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,095 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,095 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:57,095 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:57,096 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:57,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,096 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:57,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,097 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:57,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,097 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:57,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,097 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:57,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,098 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:57,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,098 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:57,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,099 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:57,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,099 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,100 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:57,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,101 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:57,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,101 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:57,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,102 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:57,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,102 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,103 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:57,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,104 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:57,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,104 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:57,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,105 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:57,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,105 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,106 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:57,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,107 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:57,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,107 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,108 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:57,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,109 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:57,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,109 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:57,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,110 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:57,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,110 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:57,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,111 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:57,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,111 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:57,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,112 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:57,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,112 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:57,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,112 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:57,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,113 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:57,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,113 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:57,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,114 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:57,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,114 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:57,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,115 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:57,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,115 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:57,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,115 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:57,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,116 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:57,124 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:57,124 [1520] DEBUG index - Prepared sql query parameters : [445,1,Contacts,CallRelatedList,142,2013-01-30 11:58:57] +01/30/13 11:58:57,127 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:57,127 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:57,127 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:57,127 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:57,129 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:57,129 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:57,131 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:57,131 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:57,132 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:57,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,133 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:57,133 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:57,133 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:57,134 [1520] DEBUG index - including headers +01/30/13 11:58:57,134 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:58:57,134 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:58:57,137 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:57,137 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:57,140 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:58:57,141 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:58:57,141 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,141 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:58:57,141 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,141 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:58:57,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,142 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:58:57,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,142 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:58:57,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,143 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:58:57,143 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,143 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:58:57,143 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,143 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:58:57,144 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:58:57,144 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:58:57,144 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:58:57,144 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:58:57,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:57,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,153 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:58:57,153 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:57,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:57,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,154 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:58:57,154 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:58:57,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:57,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,155 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:58:57,156 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:58:57,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:57,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,157 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:58:57,157 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:58:57,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,158 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:57,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,158 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:58:57,158 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:58:57,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,159 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:58:57,159 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:57,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:57,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,160 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:58:57,160 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:57,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:58:57,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,161 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:58:57,161 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:58:57,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,162 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:57,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,162 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:58:57,162 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:57,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:57,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,164 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:58:57,164 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:57,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,165 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:58:57,165 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:57,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,165 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:57,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,166 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:58:57,166 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:58:57,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:57,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,167 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:58:57,167 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:57,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:57,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,168 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:58:57,168 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:58:57,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,169 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:57,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,169 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:58:57,169 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:58:57,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,170 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:57,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,170 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:58:57,170 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:58:57,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,171 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:57,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,171 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:58:57,172 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:58:57,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:57,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,172 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:58:57,173 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:58:57,173 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:57,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,173 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:58:57,174 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:58:57,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,174 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:58:57,174 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:58:57) method ... +01/30/13 11:58:57,174 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:57,175 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:58:57) method ... +01/30/13 11:58:57,175 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:58:57,175 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,175 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,176 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:58:57,176 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:58:57,176 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:58:57,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:58:57,195 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:58:57,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,196 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:58:57,196 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:57,198 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:58:57,198 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:58:57,198 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,199 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,201 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:57,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,201 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:58:57,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,201 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,202 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:58:57,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,203 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:58:57,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,203 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:58:57,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,204 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:58:57,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,204 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:58:57,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,204 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:57,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,205 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:58:57,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,205 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:58:57,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,206 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:58:57,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,206 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:58:57,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,206 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,207 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:58:57,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,208 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:58:57,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,208 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:58:57,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,209 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:57,209 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:58:57,209 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:57,214 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:58:57,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,215 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:58:57,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,216 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:58:57,216 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,216 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:58:57,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,217 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:58:57,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,217 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:58:57,217 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:58:57,219 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:58:57,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,219 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:58:57,220 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:58:57,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:58:57,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,227 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:58:57,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,228 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:58:57,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:58:57,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,228 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:58:57,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:58:57,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,228 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:58:57,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,228 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,229 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:57,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:57,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,229 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:57,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:57,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,229 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:57,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:57,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,230 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:57,230 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:57,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,230 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:57,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:58:57,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,231 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:58:57,233 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:58:57,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,233 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:58:57,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:58:57,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,234 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:58:57,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:58:57,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,235 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:58:57,235 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:58:57,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,235 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:58:57,235 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:58:57,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,236 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:58:57,236 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:58:57,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,236 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:58:57,236 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:58:57,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,237 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:58:57,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:58:57,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,237 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:58:57,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:58:57,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,238 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:58:57,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:57,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,238 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:57,238 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:58:57,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,239 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:58:57,239 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:58:57,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,239 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:58:57,239 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:58:57,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,239 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:58:57,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:58:57,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,239 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:58:57,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:58:57,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,240 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:58:57,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:57,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,240 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:57,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:58:57,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,241 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:58:57,241 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:58:57,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,241 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:58:57,241 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:58:57,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,241 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:58:57,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:58:57,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,242 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:58:57,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:57,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,242 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:57,243 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:58:57,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,243 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:58:57,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:57,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,244 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:57,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,244 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:58:57,244 [1520] DEBUG index - Entering isPermitted(Contacts,CallRelatedList,142) method ... +01/30/13 11:58:57,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,247 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,248 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,249 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:57,249 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:57,249 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,249 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,249 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:57,250 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:57,262 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,262 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,262 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:58:57,262 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,264 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:58:57,264 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,267 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:58:57,267 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,270 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:58:57,270 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,272 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:58:57,272 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,274 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:58:57,274 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,276 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,276 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,277 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:58:57,278 [1520] DEBUG index - id is 142 +01/30/13 11:58:57,278 [1520] DEBUG index - name is OSSEZ A +01/30/13 11:58:57,278 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:58:57,278 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,280 [1520] DEBUG index - Entering getEmailParentsList(Contacts,142) method ... +01/30/13 11:58:57,280 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,280 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:58:57,280 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:58:57,283 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:58:57,283 [1520] DEBUG index - Prepared sql query being executed : select fieldname from vtiger_field where uitype = '13' and tabid = 4 and vtiger_field.presence in (0,2) +01/30/13 11:58:57,286 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,email) method ... +01/30/13 11:58:57,286 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,286 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,286 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,secondaryemail) method ... +01/30/13 11:58:57,286 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,287 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:58:57,288 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:58:57,288 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:57,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,288 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:57,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,288 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:58:57,288 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:58:57,299 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:57,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,299 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:57,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,299 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,300 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,300 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:58:57,300 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:58:57,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,300 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:58:57,301 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,301 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:58:57,302 [1520] DEBUG index - Entering getRelatedLists(Contacts,Contacts) method ... +01/30/13 11:58:57,302 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,302 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,302 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:58:57,302 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:57,309 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:58:57,309 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,310 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,310 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:58:57,310 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:57,313 [1520] DEBUG index - Entering updateInfo(142) method ... +01/30/13 11:58:57,313 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:58:57,313 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,315 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:58:57,315 [1520] INFO index - in getOwnerName 1 +01/30/13 11:58:57,315 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:58:57,315 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:57,316 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:57,318 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:58:57,318 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:58:57,320 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:58:56) method ... +01/30/13 11:58:57,320 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:58:57,320 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:58:57,320 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:58:57,321 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:58:57,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,321 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:58:57,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,322 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:58:57,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,322 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:58:57,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,323 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:58:57,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,323 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:58:57,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,323 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:57,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,324 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:58:57,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,325 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:58:57,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,326 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,327 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:58:57,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,327 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:58:57,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,328 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,328 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,328 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,328 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,328 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,328 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,328 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,329 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,329 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,329 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,329 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:58:57,331 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,331 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:58:57,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:58:57,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,332 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:58:57,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:58:57,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,333 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:58:57,333 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:58:57,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,333 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:58:57,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:58:57,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,333 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:58:57,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Purchase Order) method ... +01/30/13 11:58:57,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,334 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:58:57,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:58:57,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,334 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:58:57,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:58:57,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,335 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:58:57,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:58:57,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,335 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:58:57,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:58:57,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,336 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:58:57,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:58:57,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,336 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:58:57,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:58:57,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,336 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:58:57,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:58:57,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,337 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:58:57,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:58:57,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,337 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:58:57,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:58:57,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,338 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:58:57,338 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:58:57,338 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:58:57,339 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,601 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:58:57,728 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:58:57,728 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:58:57,728 [1520] DEBUG index - ****Starting for new session +01/30/13 11:58:57,729 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:58:57,729 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '18', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:58:57,729 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:58:57,729 [1520] DEBUG index - in ContactsAjax +01/30/13 11:58:57,729 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:58:57,729 [1520] INFO index - current module is Contacts +01/30/13 11:58:57,775 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:58:57,775 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:58:57,775 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:58:57,775 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,775 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,776 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:57,776 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:58:57,819 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:58:57,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,819 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,819 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:58:57,820 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:58:57,821 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:58:57,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,822 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:57,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,823 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:58:57,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,824 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:58:57,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,825 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:58:57,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,826 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:58:57,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,827 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:58:57,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,827 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:58:57,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,828 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:58:57,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,829 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:58:57,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,830 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:58:57,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,831 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:58:57,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,832 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:58:57,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,833 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:58:57,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,834 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:58:57,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,834 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:58:57,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,835 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:58:57,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,836 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:58:57,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,837 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:58:57,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,838 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:58:57,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,839 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:58:57,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,840 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:58:57,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,841 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:58:57,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,841 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:58:57,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,842 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:58:57,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,843 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:58:57,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,843 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:58:57,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,844 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:58:57,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,844 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:58:57,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,845 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:58:57,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,845 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:58:57,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,846 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:58:57,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,846 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:58:57,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,846 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:58:57,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,847 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:58:57,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,847 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:58:57,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,848 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:58:57,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,848 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,849 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:58:57,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,850 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:58:57,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,850 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:58:57,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,851 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:58:57,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,851 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:58:57,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,852 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:58:57,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,852 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:58:57,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,853 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:58:57,857 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:58:57,857 [1520] DEBUG index - Prepared sql query parameters : [446,1,Contacts,ContactsAjax,142,2013-01-30 11:58:57] +01/30/13 11:58:57,868 [1520] DEBUG index - Current user is: admin +01/30/13 11:58:57,868 [1520] DEBUG index - Current theme is: softed +01/30/13 11:58:57,868 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:58:57,868 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:58:57,869 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:58:57,870 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:58:57,871 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:58:57,872 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:58:57,873 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:58:57,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,874 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:58:57,874 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:58:57,874 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:58:57,874 [1520] DEBUG index - skipping headers +01/30/13 11:58:57,874 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:58:57,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,876 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:57,876 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:57,877 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,877 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,877 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:57,877 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:58:57,885 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,885 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,886 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,889 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:58:57,889 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:58:57,891 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:58:57,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:58:57,891 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,891 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,891 [1520] DEBUG index - Entering get_opportunities(142) method ... +01/30/13 11:58:57,892 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:58:57,892 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:57,894 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:57,894 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:57,894 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,894 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,894 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:58:57,894 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:58:57,898 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,898 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,899 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,900 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 11:58:57,900 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,900 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:58:57,900 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:57,900 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:58:57,900 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:57,901 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:57,901 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:58:57,903 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Potentials,Potentials,select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:58:57,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:58:57,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,906 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 11:58:57,906 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,906 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:58:57,906 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 11:58:57,909 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:58:57,909 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:58:57,909 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:58:57,909 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,909 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,910 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:58:57,910 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 11:58:57,912 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:58:57,913 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_contactdetails left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid =142 and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) and vtiger_crmentity.deleted=0 +01/30/13 11:58:57,916 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 11:58:57,922 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,142,) method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,922 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,924 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,924 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,925 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:58:57,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,926 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:58:57,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,928 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:58:57,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,930 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:58:57,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,931 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:58:57,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,933 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:58:57,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,933 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:58:57,935 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:57,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,935 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:58:57,936 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +Administrator,138,142,143,OSSEZ A 销售机会,--None--,Prospecting,0.00,2013-01-30,142,143,1,OSSEZ +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:58:57,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,937 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,937 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,938 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:58:57,938 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 11:58:57,941 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,potentialname,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,942 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,942 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,943 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,943 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,944 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,related_to,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,945 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,945 [1520] DEBUG index - Entering getSalesEntityType(142) method ... +01/30/13 11:58:57,945 [1520] INFO index - in getSalesEntityType 142 +01/30/13 11:58:57,946 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:58:57,946 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,948 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:58:57,948 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:58:57,948 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:58:57,948 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:58:57,950 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:58:57,950 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:58:57,952 [1520] DEBUG index - in function getcolumnvisibilitypermission firstname -1 +01/30/13 11:58:57,952 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,952 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:58:57,952 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,953 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,953 [1520] DEBUG index - in function getcolumnvisibilitypermission lastname -1 +01/30/13 11:58:57,953 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,953 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,953 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 11:58:57,953 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,953 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,954 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:58:57,954 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,954 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,sales_stage,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,954 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,955 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,956 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,956 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,amount,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,956 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,957 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,958 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,closingdate,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,959 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,959 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,960 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,assigned_user_id,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 11:58:57,961 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,961 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,962 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:58:57,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:58:57,962 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:58:57,963 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:58:57,963 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,964 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 11:58:57,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:58:57,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:58:57,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:58:57,970 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:58:57,970 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:58:57,970 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,970 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:58:57,971 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:58:57,971 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 11:58:57,973 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:58:57,973 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Contacts,,) method ... +01/30/13 11:58:57,973 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:58:57,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,974 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:58:57,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:58:57,974 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:58:57,974 [1520] DEBUG index - Prepared sql query parameters : [4,2] +01/30/13 11:58:57,976 [1520] INFO index - getNextRow +01/30/13 11:58:57,977 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:58:57,977 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:58:57,977 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 11:59:01,226 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:01,354 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:01,354 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:01,354 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:01,355 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:01,355 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '19', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:01,355 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:01,355 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:01,355 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:01,355 [1520] INFO index - current module is Contacts +01/30/13 11:59:01,401 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:01,402 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:01,402 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:01,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:01,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:01,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,402 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:01,403 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:01,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:01,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,413 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:01,413 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:01,413 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:01,414 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:01,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,414 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:01,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,414 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:01,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,415 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:01,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,415 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:01,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,416 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:01,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,416 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:01,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,417 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:01,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,417 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:01,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,418 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:01,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,418 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:01,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,418 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:01,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,419 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:01,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,419 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:01,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,420 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:01,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,420 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:01,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,421 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:01,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,421 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:01,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,421 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:01,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,422 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:01,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,422 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:01,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,423 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:01,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,423 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,424 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:01,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,425 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:01,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,425 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:01,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,426 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:01,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,426 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:01,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,426 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:01,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,427 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:01,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,427 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:01,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,428 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:01,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,428 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:01,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,429 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:01,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,429 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:01,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,430 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:01,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,430 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:01,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,431 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:01,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,431 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:01,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,431 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:01,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,432 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:01,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,432 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:01,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,433 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:01,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,433 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:01,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,434 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:01,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,434 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:01,440 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:01,440 [1520] DEBUG index - Prepared sql query parameters : [447,1,Contacts,ContactsAjax,142,2013-01-30 11:59:01] +01/30/13 11:59:01,443 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:01,443 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:01,444 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:01,444 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:01,445 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:01,445 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:01,447 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:01,447 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:01,449 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:01,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:01,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,450 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:01,450 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:01,450 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:01,450 [1520] DEBUG index - skipping headers +01/30/13 11:59:01,450 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:01,451 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:01,452 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:01,452 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:01,452 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:01,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,453 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:01,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,453 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:01,453 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:01,463 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:01,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,463 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:01,466 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:01,466 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:59:01,469 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:01,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:01,469 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:01,469 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,469 [1520] DEBUG index - Entering get_activities(142) method ... +01/30/13 11:59:01,469 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:01,469 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:59:01,471 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:59:01,471 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:59:01,472 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,472 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,472 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:59:01,472 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:59:01,480 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,481 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:01,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,481 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:01,481 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:01,481 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:01,482 [1520] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/30/13 11:59:01,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:01,483 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:59:01,483 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,483 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:01,483 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:59:01,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,484 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:01,484 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:01,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,485 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:01,485 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,contact_id) method ... +01/30/13 11:59:01,485 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:01,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,485 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:01,485 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:59:01,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,486 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:01,486 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:01,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,486 [1520] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/30/13 11:59:01,486 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:01,486 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:01,489 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Calendar,Activity,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_activity.activityid , vtiger_activity.subject, vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, vtiger_activity.time_start,vtiger_activity.time_end, vtiger_cntactivityrel.contactid, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime, vtiger_recurringevents.recurringtype, case when (vtiger_activity.activitytype = 'Task') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_seactivityrel.crmid as parent_id from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))), ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:01,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:01,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,492 [1520] DEBUG index - Entering function initSortByField (Calendar) +01/30/13 11:59:01,492 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,492 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:01,492 [1520] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:01,496 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:01,496 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:59:01,496 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:59:01,496 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,496 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:01,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/30/13 11:59:01,497 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,498 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,498 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:01,498 [1520] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/30/13 11:59:01,501 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:01,501 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/30/13 11:59:01,504 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_activity.activityid , vtiger_activity.subject, vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, vtiger_activity.time_start,vtiger_activity.time_end, vtiger_cntactivityrel.contactid, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime, vtiger_recurringevents.recurringtype, case when (vtiger_activity.activitytype = 'Task') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_seactivityrel.crmid as parent_id from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/30/13 11:59:01,512 [1520] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,142,) method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:01,512 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:01,513 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,514 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:59:01,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,516 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:01,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,517 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:59:01,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,519 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:01,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,519 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:01,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,521 [1520] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/30/13 11:59:01,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,521 [1520] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/30/13 11:59:01,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,523 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:59:01,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,525 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:59:01,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,525 [1520] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/30/13 11:59:01,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,527 [1520] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/30/13 11:59:01,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,529 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:01,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:01,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:01,530 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:59:01,532 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:59:01,532 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:01,532 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:01,533 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,user_name,lastname,firstname,activityid,subject,activitytype,date_start,due_date,time_start,time_end,contactid,crmid,smownerid,modifiedtime,recurringtype,status,parent_id +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:01,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:01,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:01,534 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,535 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:59:01,535 [1520] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/30/13 11:59:01,541 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:01,541 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:01,541 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:01,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,542 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:01,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:01,542 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:01,542 [1520] DEBUG index - Prepared sql query parameters : [4,9] +01/30/13 11:59:01,544 [1520] INFO index - getNextRow +01/30/13 11:59:01,545 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:01,545 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:01,545 [1520] DEBUG index - Exiting get_activities method ... +01/30/13 11:59:03,839 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:03,963 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:03,964 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:03,964 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:03,964 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:03,964 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '20', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:03,965 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:03,965 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:03,965 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:03,965 [1520] INFO index - current module is Contacts +01/30/13 11:59:04,011 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:04,011 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:04,011 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:04,011 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:04,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,012 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:04,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,012 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:04,012 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:04,021 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:04,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,021 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:04,021 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:04,022 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:04,022 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:04,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,023 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:04,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,023 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:04,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,023 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:04,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,024 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:04,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,024 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:04,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,025 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:04,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,025 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:04,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,026 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:04,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,026 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:04,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,027 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:04,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,027 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:04,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,027 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:04,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,028 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:04,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,028 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:04,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,029 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:04,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,029 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:04,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,030 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:04,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,030 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:04,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,031 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:04,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,031 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:04,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:04,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,033 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:04,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,033 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:04,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,033 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:04,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,034 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:04,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,034 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:04,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,035 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:04,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,035 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:04,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,036 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:04,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,036 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:04,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,036 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:04,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,037 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:04,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,037 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:04,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,038 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:04,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,038 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:04,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,039 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:04,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,039 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:04,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,040 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:04,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,040 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:04,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,040 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:04,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,041 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:04,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,041 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:04,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,042 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:04,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,042 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:04,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,043 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:04,047 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:04,047 [1520] DEBUG index - Prepared sql query parameters : [448,1,Contacts,ContactsAjax,142,2013-01-30 11:59:04] +01/30/13 11:59:04,049 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:04,050 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:04,050 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:04,050 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:04,051 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:04,052 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:04,053 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:04,053 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:04,055 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:04,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:04,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,056 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:04,056 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:04,056 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:04,056 [1520] DEBUG index - skipping headers +01/30/13 11:59:04,056 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:04,057 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:04,058 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:04,058 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:04,058 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:04,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,059 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:04,059 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,059 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:04,059 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:04,067 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:04,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,067 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:04,071 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:04,071 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:59:04,073 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:04,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:04,073 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:04,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,073 [1520] DEBUG index - Entering get_emails(142) method ... +01/30/13 11:59:04,073 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:04,074 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:59:04,076 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:59:04,076 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:59:04,076 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:59:04,076 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,076 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,076 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:04,076 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:59:04,081 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,081 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:04,081 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:59:04,082 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:04,082 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:04,083 [1520] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/30/13 11:59:04,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:04,083 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:04,083 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:59:04,083 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:04,084 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:59:04,084 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:04,084 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:04,086 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Emails,Emails,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:04,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:04,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,089 [1520] DEBUG index - Entering function initSortByField (Emails) +01/30/13 11:59:04,089 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,089 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:04,089 [1520] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:04,092 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:04,092 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:59:04,092 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:59:04,092 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:59:04,092 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,092 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:04,092 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:59:04,093 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:04,093 [1520] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/30/13 11:59:04,093 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,093 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,093 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:04,093 [1520] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/30/13 11:59:04,095 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:04,096 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0 +01/30/13 11:59:04,100 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/30/13 11:59:04,104 [1520] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,142,) method ... +01/30/13 11:59:04,104 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:59:04,105 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:04,105 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,105 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:04,105 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:04,106 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,107 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:04,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,109 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:04,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,109 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:59:04,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,111 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:04,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,111 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:59:04,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,113 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:59:04,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:04,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:04,113 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:59:04,113 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:59:04,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:04,114 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:04,114 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:04,114 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:04,114 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:04,115 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,116 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:04,116 [1520] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/30/13 11:59:04,119 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:04,119 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:04,119 [1520] DEBUG index - Prepared sql query parameters : [4,10] +01/30/13 11:59:04,122 [1520] INFO index - getNextRow +01/30/13 11:59:04,123 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:04,123 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:04,123 [1520] DEBUG index - Exiting get_emails method ... +01/30/13 11:59:07,072 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:07,197 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:07,198 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:07,198 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:07,198 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:07,198 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '21', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:07,199 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:07,199 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:07,199 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:07,199 [1520] INFO index - current module is Contacts +01/30/13 11:59:07,245 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:07,245 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:07,245 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:07,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:07,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:07,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,246 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:07,246 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:07,316 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:07,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,317 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:07,317 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:07,318 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:07,319 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:07,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,320 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:07,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,321 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:07,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,322 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:07,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,322 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:07,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,323 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:07,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,324 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:07,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,325 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:07,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,326 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:07,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,327 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:07,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,328 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:07,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,329 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:07,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,329 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:07,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,330 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:07,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,331 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:07,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,332 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:07,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,333 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:07,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,334 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:07,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,335 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:07,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,336 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:07,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,336 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:07,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,337 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:07,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,338 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:07,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,339 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:07,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,339 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:07,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,340 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:07,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,341 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:07,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,342 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:07,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,342 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:07,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,343 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:07,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,343 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:07,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,344 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:07,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,344 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:07,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,345 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:07,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,345 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:07,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,345 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:07,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,346 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:07,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,346 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:07,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,347 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:07,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,347 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:07,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,348 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:07,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,348 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:07,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,349 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:07,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,349 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:07,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,350 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:07,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,350 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:07,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,351 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:07,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,351 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:07,357 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:07,357 [1520] DEBUG index - Prepared sql query parameters : [449,1,Contacts,ContactsAjax,142,2013-01-30 11:59:07] +01/30/13 11:59:07,360 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:07,360 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:07,360 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:07,360 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:07,362 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:07,362 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:07,364 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:07,364 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:07,365 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:07,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:07,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,366 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:07,366 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:07,366 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:07,366 [1520] DEBUG index - skipping headers +01/30/13 11:59:07,367 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:07,367 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:07,369 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:07,369 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:07,369 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:07,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,369 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:07,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,369 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:07,369 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:07,380 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:07,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,380 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:07,383 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:07,383 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:07,386 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:07,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:07,386 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:07,386 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,386 [1520] DEBUG index - Entering get_tickets(142) method ... +01/30/13 11:59:07,386 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:07,386 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:59:07,388 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:59:07,389 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:59:07,389 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:59:07,389 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,389 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,389 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:07,389 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:59:07,394 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,394 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:07,394 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:59:07,395 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:07,395 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:07,396 [1520] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/30/13 11:59:07,396 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,396 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:07,396 [1520] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/30/13 11:59:07,397 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:07,397 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:07,397 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:07,397 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:07,397 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:07,397 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:07,397 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:07,399 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,HelpDesk,HelpDesk,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.crmid, vtiger_troubletickets.title, vtiger_contactdetails.contactid, vtiger_troubletickets.parent_id, + vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_crmentity.smownerid, vtiger_troubletickets.ticket_no + from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid + left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:07,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:07,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,402 [1520] DEBUG index - Entering function initSortByField (HelpDesk) +01/30/13 11:59:07,402 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,403 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:07,403 [1520] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:07,407 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:07,408 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:59:07,408 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:59:07,408 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:59:07,408 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,408 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,408 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:07,408 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:59:07,408 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,409 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:07,409 [1520] DEBUG index - Prepared sql query parameters : [13,%title%] +01/30/13 11:59:07,412 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:07,412 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 +01/30/13 11:59:07,414 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.crmid, vtiger_troubletickets.title, vtiger_contactdetails.contactid, vtiger_troubletickets.parent_id, + vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_crmentity.smownerid, vtiger_troubletickets.ticket_no + from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid + left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/30/13 11:59:07,418 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,142,) method ... +01/30/13 11:59:07,418 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:59:07,418 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:07,419 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,419 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:07,419 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:07,420 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,420 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,420 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,421 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:59:07,422 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,423 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:59:07,424 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,424 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:07,424 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,425 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:07,426 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,426 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:59:07,428 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,428 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:07,428 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:07,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:07,428 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:59:07,430 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:59:07,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:07,430 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:07,431 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,crmid,title,contactid,parent_id,firstname,lastname,status,priority,smownerid,ticket_no +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:07,431 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:07,431 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:07,432 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,432 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:07,433 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:59:07,436 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:07,436 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Contacts,,) method ... +01/30/13 11:59:07,436 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:07,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,437 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:07,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:07,437 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:07,437 [1520] DEBUG index - Prepared sql query parameters : [4,13] +01/30/13 11:59:07,439 [1520] INFO index - getNextRow +01/30/13 11:59:07,440 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:07,440 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:07,440 [1520] DEBUG index - Exiting get_tickets method ... +01/30/13 11:59:09,591 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:09,720 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:09,720 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:09,720 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:09,720 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:09,721 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:59:09,721 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:59:09,721 [1520] DEBUG index - in CalendarAjax +01/30/13 11:59:09,721 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:59:09,721 [1520] INFO index - current module is Calendar +01/30/13 11:59:09,766 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:09,766 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:09,766 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:09,766 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:09,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:09,766 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:09,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:09,767 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:09,767 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:09,776 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:09,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:09,776 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:09,776 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:09,777 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:09,777 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:09,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,778 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:09,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,778 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:09,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,779 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:09,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,779 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:09,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,780 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:09,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,780 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:09,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,781 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:09,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,781 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:09,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,782 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:09,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,782 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:09,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,782 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:09,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,783 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:09,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,783 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:09,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,784 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:09,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,784 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:09,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,785 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:09,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,785 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:09,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,785 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:09,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,786 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:09,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,786 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:09,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,787 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:09,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,787 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,788 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:09,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,789 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:09,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,789 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:09,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,790 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:09,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,790 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:09,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,790 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:09,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,791 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:09,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,791 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:09,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,792 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:09,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,792 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:09,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,793 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:09,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,793 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:09,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,793 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:09,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,794 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:09,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,794 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:09,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,795 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:09,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,795 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,796 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:09,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,797 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:09,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,797 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:09,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:09,798 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:09,798 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:09,798 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:09,798 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:09,798 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:09,800 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:09,800 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:09,802 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:09,802 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:09,804 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:09,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:09,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:09,805 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:09,805 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:09,805 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:09,805 [1520] DEBUG index - skipping headers +01/30/13 11:59:09,806 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:59:09,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:09,811 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:09,811 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:59:09,811 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:59:09,811 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:59:09,819 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:00')) +01/30/13 11:59:09,823 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:59:10,942 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:11,068 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:11,068 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:11,069 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:11,069 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:11,069 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '22', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:11,069 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:11,069 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:11,070 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:11,070 [1520] INFO index - current module is Contacts +01/30/13 11:59:11,115 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:11,115 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:11,115 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:11,116 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:11,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,116 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:11,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,116 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:11,116 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:11,128 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:11,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:11,129 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:11,129 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:11,130 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:11,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,130 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:11,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,131 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:11,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,131 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:11,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,131 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:11,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,132 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:11,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,132 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:11,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,133 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:11,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,133 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:11,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,134 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:11,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,134 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:11,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,135 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:11,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,135 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:11,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,135 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:11,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,136 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:11,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,136 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:11,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,137 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:11,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,137 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:11,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,138 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:11,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,138 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:11,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,138 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:11,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,139 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:11,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,139 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,140 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:11,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,141 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:11,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,141 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:11,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,142 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:11,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,142 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:11,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,143 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:11,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,143 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:11,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,144 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:11,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,144 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:11,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,144 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:11,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,145 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:11,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,145 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:11,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,146 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:11,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,146 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:11,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,147 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:11,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,147 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:11,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,147 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:11,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,148 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:11,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,148 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:11,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,149 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:11,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,149 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:11,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,150 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:11,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,150 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:11,153 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:11,154 [1520] DEBUG index - Prepared sql query parameters : [450,1,Contacts,ContactsAjax,142,2013-01-30 11:59:11] +01/30/13 11:59:11,156 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:11,156 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:11,156 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:11,156 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:11,158 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:11,158 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:11,160 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:11,160 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:11,162 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:11,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:11,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,163 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:11,163 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:11,163 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:11,163 [1520] DEBUG index - skipping headers +01/30/13 11:59:11,163 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:11,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:11,165 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:11,165 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:11,165 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:11,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,165 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:11,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,165 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:11,166 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:11,174 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:11,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,174 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:11,177 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:11,178 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:59:11,180 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:11,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:11,180 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:11,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,180 [1520] DEBUG index - Entering get_quotes(142) method ... +01/30/13 11:59:11,180 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:11,180 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:59:11,185 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:59:11,185 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:59:11,185 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,185 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,186 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:11,186 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:59:11,192 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,193 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:11,193 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:11,193 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:11,194 [1520] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,contact_id) method ... +01/30/13 11:59:11,194 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,194 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:11,194 [1520] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/30/13 11:59:11,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:11,195 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:11,195 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:59:11,195 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:11,195 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:59:11,195 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:11,195 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:11,197 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Quotes,Quotes,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_quotes.*,vtiger_potential.potentialname,vtiger_contactdetails.lastname,vtiger_account.accountname from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:11,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:11,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,200 [1520] DEBUG index - Entering function initSortByField (Quotes) +01/30/13 11:59:11,200 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,201 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:11,201 [1520] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:11,204 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:11,204 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:59:11,204 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:59:11,204 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,204 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:11,204 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,205 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:11,205 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 +01/30/13 11:59:11,207 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_quotes.*,vtiger_potential.potentialname,vtiger_contactdetails.lastname,vtiger_account.accountname from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:59:11,224 [1520] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,142,) method ... +01/30/13 11:59:11,224 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:59:11,224 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:11,224 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,224 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,225 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:11,225 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:11,226 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,227 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:59:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,228 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:11,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,230 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:59:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,232 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:59:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,232 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:59:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,232 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:59:11,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:11,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:11,234 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:11,235 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:59:11,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:11,236 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:11,237 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,lastname,accountname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:11,237 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:11,237 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:11,238 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,239 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:59:11,239 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:59:11,242 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:11,242 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:11,242 [1520] DEBUG index - Prepared sql query parameters : [4,20] +01/30/13 11:59:11,244 [1520] INFO index - getNextRow +01/30/13 11:59:11,245 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:11,245 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:11,245 [1520] DEBUG index - Exiting get_quotes method ... +01/30/13 11:59:12,656 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:12,783 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:12,783 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:12,783 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:12,784 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:12,784 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Purchase Order', + 'relation_id' => '23', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:12,784 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:12,784 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:12,784 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:12,784 [1520] INFO index - current module is Contacts +01/30/13 11:59:12,830 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:12,830 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:12,830 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:12,830 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:12,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,831 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:12,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,831 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:12,831 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:12,841 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:12,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,841 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:12,841 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:12,841 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:12,842 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:12,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,842 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:12,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,843 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:12,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,843 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:12,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,844 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:12,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,844 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:12,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,845 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:12,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,845 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:12,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,845 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:12,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,846 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:12,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,846 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:12,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,847 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:12,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,847 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:12,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,848 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:12,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,848 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:12,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,849 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:12,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,849 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:12,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,849 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:12,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,850 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:12,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,850 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:12,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,851 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:12,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,851 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,852 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:12,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,853 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:12,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,853 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:12,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,854 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:12,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,854 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:12,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,854 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:12,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,855 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:12,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,855 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:12,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,856 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:12,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,856 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:12,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,857 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:12,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,857 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:12,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,857 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:12,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,858 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:12,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,858 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:12,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,859 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:12,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,859 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,860 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:12,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,861 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:12,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,861 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:12,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,862 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:12,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,862 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:12,867 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:12,867 [1520] DEBUG index - Prepared sql query parameters : [451,1,Contacts,ContactsAjax,142,2013-01-30 11:59:12] +01/30/13 11:59:12,870 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:12,870 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:12,870 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:12,870 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:12,871 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:12,872 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:12,874 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:12,874 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:12,875 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:12,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:12,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,876 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:12,876 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:12,876 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:12,876 [1520] DEBUG index - skipping headers +01/30/13 11:59:12,876 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:12,877 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:12,878 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:12,878 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:12,878 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:12,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,879 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:12,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,879 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:12,879 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:12,891 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:12,891 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,891 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:12,895 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:12,895 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:59:12,898 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:12,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:12,898 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:12,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,899 [1520] DEBUG index - Entering get_purchase_orders(142) method ... +01/30/13 11:59:12,899 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:12,899 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:12,901 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:59:12,901 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:59:12,902 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,902 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,902 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:12,902 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:12,911 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,911 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:12,911 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:12,911 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:12,912 [1520] DEBUG index - Entering getFieldVisibilityPermission(PurchaseOrder,1,contact_id) method ... +01/30/13 11:59:12,912 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,913 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:12,913 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,1,) method ... +01/30/13 11:59:12,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:12,913 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:12,913 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:12,913 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:12,914 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:12,914 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:12,914 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:12,916 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,PurchaseOrder,PurchaseOrder,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_purchaseorder.*,vtiger_vendor.vendorname,vtiger_contactdetails.lastname from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:12,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:12,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,919 [1520] DEBUG index - Entering function initSortByField (PurchaseOrder) +01/30/13 11:59:12,919 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,919 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:12,919 [1520] DEBUG index - Prepared sql query parameters : [21,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:12,922 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:12,922 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:59:12,922 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:59:12,923 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:12,923 [1520] DEBUG index - Entering getTableNameForField(PurchaseOrder,subject) method ... +01/30/13 11:59:12,924 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,924 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:12,924 [1520] DEBUG index - Prepared sql query parameters : [21,%subject%] +01/30/13 11:59:12,926 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:12,927 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142 +01/30/13 11:59:12,931 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_purchaseorder.*,vtiger_vendor.vendorname,vtiger_contactdetails.lastname from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142 ORDER BY vtiger_purchaseorder.subject ASC LIMIT 0, 20 +01/30/13 11:59:12,935 [1520] DEBUG index - Entering getListViewHeader(PurchaseOrder,,ASC,subject,142,) method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:12,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:12,936 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,937 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,937 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:59:12,939 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,939 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:12,941 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,941 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:59:12,941 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,941 [1520] DEBUG index - function getTranslatedString(Tracking Number) - translated to (追踪编号) +01/30/13 11:59:12,943 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,943 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:59:12,944 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:12,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:12,945 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:12,946 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:59:12,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:12,946 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:12,948 [1520] DEBUG index - Entering getListViewEntries(PurchaseOrder,PurchaseOrder,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,purchaseorderid,subject,quoteid,vendorid,requisition_no,purchaseorder_no,tracking_no,contactid,duedate,carrier,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,terms_conditions,postatus,currency_id,conversion_rate,vendorname,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:12,948 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:12,948 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:12,949 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,949 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:12,949 [1520] DEBUG index - Prepared sql query parameters : [21,purchaseorder_no,subject,vendor_id,tracking_no,hdnGrandTotal,assigned_user_id] +01/30/13 11:59:12,952 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:12,952 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:12,953 [1520] DEBUG index - Prepared sql query parameters : [4,21] +01/30/13 11:59:12,955 [1520] INFO index - getNextRow +01/30/13 11:59:12,955 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:12,955 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:12,955 [1520] DEBUG index - Exiting get_purchase_orders method ... +01/30/13 11:59:14,577 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:14,702 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:14,702 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:14,703 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:14,703 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:14,703 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '24', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:14,703 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:14,703 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:14,704 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:14,704 [1520] INFO index - current module is Contacts +01/30/13 11:59:14,750 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:14,750 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:14,750 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:14,750 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:14,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,751 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:14,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,751 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:14,751 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:14,760 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:14,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,760 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:14,761 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:14,761 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:14,761 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:14,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,762 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:14,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,762 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:14,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,763 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:14,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,763 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:14,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,764 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:14,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,764 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:14,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,765 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:14,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,765 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:14,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,766 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:14,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,766 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:14,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,766 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:14,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,767 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:14,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,767 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:14,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,768 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:14,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,768 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:14,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,769 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:14,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,769 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:14,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,770 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:14,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,770 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:14,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,770 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:14,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,771 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:14,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,771 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,772 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:14,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,773 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:14,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,773 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:14,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,774 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:14,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,774 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:14,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,774 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:14,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,775 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:14,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,775 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:14,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,776 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:14,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,776 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:14,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,777 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:14,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,777 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:14,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,778 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:14,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,778 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:14,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,778 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:14,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,779 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:14,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,779 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:14,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,780 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:14,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,780 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:14,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,781 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:14,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,781 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:14,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,781 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:14,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,782 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:14,785 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:14,786 [1520] DEBUG index - Prepared sql query parameters : [452,1,Contacts,ContactsAjax,142,2013-01-30 11:59:14] +01/30/13 11:59:14,789 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:14,789 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:14,789 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:14,789 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:14,791 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:14,791 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:14,793 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:14,793 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:14,794 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:14,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:14,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,795 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:14,795 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:14,795 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:14,795 [1520] DEBUG index - skipping headers +01/30/13 11:59:14,795 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:14,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:14,797 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:14,798 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:14,798 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:14,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,798 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:14,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,798 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:14,798 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:14,807 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:14,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,807 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:14,811 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:14,811 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:59:14,813 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:14,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:14,813 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:14,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,814 [1520] DEBUG index - Entering get_salesorder(142) method ... +01/30/13 11:59:14,814 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:14,814 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:59:14,819 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:59:14,819 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:59:14,819 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,819 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,819 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:14,819 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:59:14,828 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:14,828 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:14,828 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:14,829 [1520] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,contact_id) method ... +01/30/13 11:59:14,829 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,830 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:14,830 [1520] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/30/13 11:59:14,830 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:14,830 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:14,831 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:59:14,831 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:14,831 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:59:14,831 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:14,831 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:14,833 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,SalesOrder,SalesOrder,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_salesorder.*, vtiger_quotes.subject as quotename, vtiger_account.accountname, vtiger_contactdetails.lastname from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:14,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:14,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,836 [1520] DEBUG index - Entering function initSortByField (SalesOrder) +01/30/13 11:59:14,836 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,836 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:14,837 [1520] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:14,840 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:14,840 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:59:14,840 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:59:14,841 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,841 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:14,841 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,841 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:14,842 [1520] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/30/13 11:59:14,842 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,842 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:14,842 [1520] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/30/13 11:59:14,845 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:14,845 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142 +01/30/13 11:59:14,850 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_salesorder.*, vtiger_quotes.subject as quotename, vtiger_account.accountname, vtiger_contactdetails.lastname from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/30/13 11:59:14,855 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,142,) method ... +01/30/13 11:59:14,855 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:59:14,855 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:14,855 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:14,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:14,857 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,857 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,858 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:59:14,858 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,858 [1520] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/30/13 11:59:14,860 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,860 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:14,862 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,862 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:59:14,862 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,862 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:59:14,862 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,862 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:59:14,864 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:14,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:14,864 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:14,865 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:59:14,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:14,866 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:14,867 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,SalesOrderEditView,DeleteSalesOrder,) method ... +01/30/13 11:59:14,867 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:14,867 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:14,868 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,869 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:14,869 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:59:14,872 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:14,873 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:14,873 [1520] DEBUG index - Prepared sql query parameters : [4,22] +01/30/13 11:59:14,876 [1520] INFO index - getNextRow +01/30/13 11:59:14,876 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:14,877 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:14,877 [1520] DEBUG index - Exiting get_salesorder method ... +01/30/13 11:59:16,498 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:16,623 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:16,623 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:16,623 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:16,624 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:16,624 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '25', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:16,624 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:16,624 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:16,624 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:16,625 [1520] INFO index - current module is Contacts +01/30/13 11:59:16,670 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:16,670 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:16,670 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:16,670 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:16,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,671 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:16,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,671 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:16,671 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:16,680 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:16,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,680 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:16,680 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:16,681 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:16,681 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:16,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,682 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:16,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,682 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:16,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,683 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:16,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,683 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:16,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,684 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:16,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,684 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:16,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,684 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:16,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,685 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:16,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,685 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:16,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,686 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:16,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,686 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,687 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:16,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,688 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:16,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,688 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:16,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,689 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:16,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,689 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:16,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,690 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:16,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,690 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:16,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,691 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:16,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,691 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:16,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,691 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,692 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:16,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,693 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:16,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,693 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:16,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,694 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:16,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,694 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:16,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,695 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:16,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,695 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:16,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,696 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:16,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,696 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:16,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,696 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:16,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,697 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:16,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,697 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:16,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,698 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:16,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,698 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:16,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,699 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:16,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,699 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:16,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,699 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:16,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,700 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:16,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,700 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:16,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,701 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:16,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,701 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:16,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,702 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:16,706 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:16,706 [1520] DEBUG index - Prepared sql query parameters : [453,1,Contacts,ContactsAjax,142,2013-01-30 11:59:16] +01/30/13 11:59:16,709 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:16,709 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:16,709 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:16,709 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:16,711 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:16,711 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:16,713 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:16,713 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:16,715 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:16,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:16,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,716 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:16,716 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:16,716 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:16,716 [1520] DEBUG index - skipping headers +01/30/13 11:59:16,716 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:16,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:16,718 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:16,718 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:16,718 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:16,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,718 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:16,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,718 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:16,718 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:16,727 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:16,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,727 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:16,730 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:16,730 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:59:16,733 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:16,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:16,733 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:16,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,733 [1520] DEBUG index - Entering get_products(142) method ... +01/30/13 11:59:16,733 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:16,733 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:59:16,737 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:59:16,737 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:59:16,737 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:59:16,737 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,738 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,738 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:16,738 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:59:16,744 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,744 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:16,744 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:59:16,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:16,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:16,746 [1520] DEBUG index - Entering isPermitted(Products,4,) method ... +01/30/13 11:59:16,746 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:16,746 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:16,747 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:16,747 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:16,747 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:16,747 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, vtiger_products.productcode, + vtiger_products.commissionrate, vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid,vtiger_contactdetails.lastname + FROM vtiger_products + INNER JOIN vtiger_seproductsrel + ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:16,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:16,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,750 [1520] DEBUG index - Entering function initSortByField (Products) +01/30/13 11:59:16,750 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,750 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:16,750 [1520] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:16,754 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:16,754 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:59:16,754 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:59:16,754 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:59:16,754 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:16,755 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/30/13 11:59:16,755 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,756 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:16,756 [1520] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/30/13 11:59:16,758 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:16,759 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0 +01/30/13 11:59:16,761 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, vtiger_products.productcode, + vtiger_products.commissionrate, vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid,vtiger_contactdetails.lastname + FROM vtiger_products + INNER JOIN vtiger_seproductsrel + ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/30/13 11:59:16,775 [1520] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,142,) method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:16,775 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:16,776 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:16,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,777 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:59:16,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:16,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,779 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:59:16,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:16,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,781 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:59:16,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:16,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,782 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:59:16,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:16,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:16,784 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:59:16,785 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:59:16,786 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:16,786 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:16,787 [1520] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:16,787 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:16,787 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:16,788 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,788 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:16,788 [1520] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/30/13 11:59:16,793 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:16,793 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:16,793 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:16,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,793 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:16,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:16,794 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:16,794 [1520] DEBUG index - Prepared sql query parameters : [4,14] +01/30/13 11:59:16,797 [1520] INFO index - getNextRow +01/30/13 11:59:16,798 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:16,798 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:16,798 [1520] DEBUG index - Exiting get_products method ... +01/30/13 11:59:18,200 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:18,326 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:18,326 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:18,326 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:18,327 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:18,327 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '26', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:18,327 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:18,327 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:18,327 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:18,327 [1520] INFO index - current module is Contacts +01/30/13 11:59:18,373 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:18,373 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:18,374 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:18,374 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:18,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,374 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:18,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,374 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:18,374 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:18,383 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:18,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,383 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:18,383 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:18,384 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:18,384 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:18,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,385 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:18,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,385 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:18,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,386 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:18,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,386 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:18,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,387 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:18,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,387 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:18,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,388 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:18,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,388 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:18,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,389 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:18,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,389 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:18,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,389 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:18,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,390 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:18,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,390 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:18,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,391 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:18,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,391 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:18,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,392 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:18,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,392 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:18,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,393 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:18,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,393 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:18,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,393 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:18,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,394 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:18,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,394 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,395 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:18,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,396 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:18,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,396 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:18,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,397 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:18,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,397 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:18,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,398 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:18,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,398 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:18,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,398 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:18,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,399 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:18,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,399 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:18,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,400 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:18,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,400 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:18,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,401 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:18,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,401 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:18,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,401 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:18,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,402 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:18,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,402 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:18,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,403 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:18,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,403 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,404 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:18,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,405 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:18,411 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:18,411 [1520] DEBUG index - Prepared sql query parameters : [454,1,Contacts,ContactsAjax,142,2013-01-30 11:59:18] +01/30/13 11:59:18,414 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:18,415 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:18,415 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:18,415 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:18,416 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:18,417 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:18,418 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:18,419 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:18,420 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:18,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:18,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:18,421 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:18,421 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:18,421 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:18,421 [1520] DEBUG index - skipping headers +01/30/13 11:59:18,421 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:18,422 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:18,423 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:18,423 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:18,423 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:18,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,424 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:18,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,424 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:18,424 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:18,432 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:18,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,433 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:18,436 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:18,436 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:59:18,438 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:18,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:18,438 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:18,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,439 [1520] DEBUG index - Entering get_history(142) method ... +01/30/13 11:59:18,439 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:18,439 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:18,441 [1520] DEBUG index - Entering get_history method ... +01/30/13 11:59:18,441 [1520] DEBUG index - Entering getHistory(Contacts,SELECT vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.status + , vtiger_activity.eventstatus,vtiger_activity.activitytype, vtiger_activity.date_start, + vtiger_activity.due_date,vtiger_activity.time_start,vtiger_activity.time_end, + vtiger_contactdetails.contactid, vtiger_contactdetails.firstname, + vtiger_contactdetails.lastname, vtiger_crmentity.modifiedtime, + vtiger_crmentity.createdtime, vtiger_crmentity.description, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + from vtiger_activity + inner join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid + inner join vtiger_contactdetails on vtiger_contactdetails.contactid= vtiger_cntactivityrel.contactid + inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid + left join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where (vtiger_activity.activitytype != 'Emails') + and (vtiger_activity.status = 'Completed' or vtiger_activity.status = 'Deferred' or (vtiger_activity.eventstatus = 'Held' and vtiger_activity.eventstatus != '')) + and vtiger_cntactivityrel.contactid=142 + and vtiger_crmentity.deleted = 0,142) method ... +01/30/13 11:59:18,442 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:18,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,442 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:18,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:18,443 [1520] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.status + , vtiger_activity.eventstatus,vtiger_activity.activitytype, vtiger_activity.date_start, + vtiger_activity.due_date,vtiger_activity.time_start,vtiger_activity.time_end, + vtiger_contactdetails.contactid, vtiger_contactdetails.firstname, + vtiger_contactdetails.lastname, vtiger_crmentity.modifiedtime, + vtiger_crmentity.createdtime, vtiger_crmentity.description, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + from vtiger_activity + inner join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid + inner join vtiger_contactdetails on vtiger_contactdetails.contactid= vtiger_cntactivityrel.contactid + inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid + left join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where (vtiger_activity.activitytype != 'Emails') + and (vtiger_activity.status = 'Completed' or vtiger_activity.status = 'Deferred' or (vtiger_activity.eventstatus = 'Held' and vtiger_activity.eventstatus != '')) + and vtiger_cntactivityrel.contactid=142 + and vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/30/13 11:59:19,588 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:19,714 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:19,714 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:19,714 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:19,715 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:19,715 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '27', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:19,715 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:19,715 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:19,715 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:19,715 [1520] INFO index - current module is Contacts +01/30/13 11:59:19,761 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:19,761 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:19,761 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:19,761 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:19,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,762 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:19,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,762 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:19,762 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:19,771 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:19,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,771 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:19,771 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:19,772 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:19,772 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:19,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,772 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:19,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,773 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:19,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,773 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:19,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,774 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:19,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,774 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:19,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,775 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:19,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,775 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:19,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,776 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:19,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,776 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,777 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:19,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,778 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:19,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,778 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:19,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,779 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:19,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,779 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,780 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:19,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,781 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:19,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,781 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,782 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:19,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,783 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:19,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,783 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:19,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,784 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:19,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,784 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:19,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,785 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:19,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,785 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:19,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,785 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:19,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,786 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:19,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,786 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:19,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,787 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:19,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,787 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:19,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,788 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:19,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,788 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:19,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,788 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:19,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,789 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:19,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,789 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:19,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,790 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:19,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,790 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:19,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,791 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:19,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,791 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:19,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,791 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:19,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,792 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:19,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,792 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:19,797 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:19,797 [1520] DEBUG index - Prepared sql query parameters : [455,1,Contacts,ContactsAjax,142,2013-01-30 11:59:19] +01/30/13 11:59:19,800 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:19,800 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:19,800 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:19,800 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:19,802 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:19,802 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:19,804 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:19,804 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:19,805 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:19,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:19,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,806 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:19,806 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:19,806 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:19,807 [1520] DEBUG index - skipping headers +01/30/13 11:59:19,807 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:19,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:19,809 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:19,809 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:19,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:19,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:19,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,809 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:19,809 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:19,818 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:19,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,818 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:19,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:19,822 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:59:19,825 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:19,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:19,825 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:19,825 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,825 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:19,825 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:19,826 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:19,827 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:59:19,829 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:59:19,829 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:59:19,829 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:59:19,829 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,829 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,829 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:19,829 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:59:19,833 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,833 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:19,833 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:59:19,833 [1520] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/30/13 11:59:19,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:19,834 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:19,834 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:19,834 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:19,834 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:19,834 [1520] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/30/13 11:59:19,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:19,835 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:19,835 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:59:19,835 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:19,835 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:59:19,835 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:19,835 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:19,838 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=142,  ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:19,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:19,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,841 [1520] DEBUG index - Entering function initSortByField (Documents) +01/30/13 11:59:19,841 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,841 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:19,841 [1520] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:19,844 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:19,844 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:59:19,844 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:59:19,844 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:59:19,844 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:19,844 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,845 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:19,846 [1520] DEBUG index - Prepared sql query parameters : [8,%title%] +01/30/13 11:59:19,848 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:19,848 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=142 +01/30/13 11:59:19,851 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=142 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/30/13 11:59:19,856 [1520] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,142,) method ... +01/30/13 11:59:19,856 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:59:19,856 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:19,857 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:19,857 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:19,858 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:19,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,859 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:59:19,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:19,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,861 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:59:19,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:19,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,862 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:59:19,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:19,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,864 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:19,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:19,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:19,866 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:59:19,866 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:59:19,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:19,866 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:19,867 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:19,867 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:19,867 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:19,868 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,869 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:19,869 [1520] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/30/13 11:59:19,872 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:19,872 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:19,873 [1520] DEBUG index - Prepared sql query parameters : [4,8] +01/30/13 11:59:19,875 [1520] INFO index - getNextRow +01/30/13 11:59:19,876 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:19,876 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:21,407 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:21,532 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:21,533 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:21,533 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:21,533 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:21,533 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '28', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:21,534 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:21,534 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:21,534 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:21,534 [1520] INFO index - current module is Contacts +01/30/13 11:59:21,579 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:21,580 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:21,580 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:21,580 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:21,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,580 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:21,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,581 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:21,581 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:21,589 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:21,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,589 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:21,590 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:21,590 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:21,590 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:21,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,591 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:21,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,591 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:21,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,592 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:21,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,592 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:21,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,593 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:21,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,593 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:21,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,594 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:21,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,594 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:21,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,594 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:21,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,595 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:21,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,595 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:21,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,596 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:21,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,596 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:21,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,597 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:21,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,597 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:21,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,598 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:21,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,598 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:21,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,599 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:21,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,599 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:21,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,599 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:21,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,600 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:21,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,600 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,601 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:21,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,602 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:21,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,602 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:21,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,603 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:21,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,603 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:21,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,604 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:21,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,604 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:21,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,605 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:21,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,605 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:21,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,606 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:21,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,606 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:21,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,607 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:21,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,607 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:21,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,607 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:21,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,608 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:21,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,608 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:21,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,609 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:21,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,609 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:21,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,610 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:21,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,610 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:21,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,610 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:21,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,611 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:21,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,611 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:21,615 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:21,615 [1520] DEBUG index - Prepared sql query parameters : [456,1,Contacts,ContactsAjax,142,2013-01-30 11:59:21] +01/30/13 11:59:21,619 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:21,619 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:21,619 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:21,619 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:21,621 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:21,621 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:21,623 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:21,623 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:21,624 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:21,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:21,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,625 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:21,625 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:21,625 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:21,626 [1520] DEBUG index - skipping headers +01/30/13 11:59:21,626 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:21,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:21,628 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:21,628 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:21,628 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:21,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,628 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:21,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:21,628 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:21,636 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:21,636 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,637 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:21,640 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:21,640 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:59:21,642 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:21,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:21,642 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:21,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,642 [1520] DEBUG index - Entering get_campaigns(142) method ... +01/30/13 11:59:21,643 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:21,643 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:59:21,645 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:59:21,645 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:59:21,645 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,645 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,645 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:21,645 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:59:21,651 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,652 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:21,652 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:21,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:21,653 [1520] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/30/13 11:59:21,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:21,653 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:21,654 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:21,654 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:21,654 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:21,654 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:21,654 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:21,656 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:21,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:21,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,659 [1520] DEBUG index - Entering function initSortByField (Campaigns) +01/30/13 11:59:21,659 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,659 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:21,659 [1520] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:21,663 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:21,663 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:59:21,663 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:59:21,663 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,663 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:21,663 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,664 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:21,664 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0 +01/30/13 11:59:21,698 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/30/13 11:59:21,703 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,142,) method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:21,703 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:21,704 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,706 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:59:21,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,708 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:59:21,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,709 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:59:21,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,711 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:59:21,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,713 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:59:21,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:21,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:21,714 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:21,716 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:59:21,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:21,716 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:21,717 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:21,717 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:21,717 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:21,718 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,719 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:21,719 [1520] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:59:21,722 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:21,722 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Contacts,,) method ... +01/30/13 11:59:21,722 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:59:21,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,722 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:21,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:21,723 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:21,723 [1520] DEBUG index - Prepared sql query parameters : [4,26] +01/30/13 11:59:21,725 [1520] INFO index - getNextRow +01/30/13 11:59:21,726 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:21,726 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:21,726 [1520] DEBUG index - Exiting get_campaigns method ... +01/30/13 11:59:22,948 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:23,073 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:23,073 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:23,073 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:23,074 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:23,074 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '29', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:23,074 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:23,074 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:23,074 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:23,074 [1520] INFO index - current module is Contacts +01/30/13 11:59:23,120 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:23,120 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:23,120 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:23,120 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:23,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,121 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:23,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,121 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:23,121 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:23,129 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:23,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:23,129 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:23,130 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:23,130 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:23,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,131 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:23,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,131 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:23,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,132 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:23,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,132 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:23,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,133 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:23,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,133 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:23,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,133 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:23,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,134 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:23,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,134 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:23,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,135 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:23,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,135 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:23,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,136 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:23,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,136 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:23,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,137 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:23,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,137 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:23,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,137 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:23,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,138 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:23,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,138 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:23,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,139 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:23,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,139 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:23,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,140 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:23,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,140 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:23,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,140 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,141 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:23,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,142 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:23,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,142 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:23,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,143 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:23,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,143 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,144 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:23,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,145 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:23,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,145 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:23,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,146 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:23,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,146 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:23,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,147 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:23,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,147 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,148 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:23,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,149 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:23,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,149 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:23,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,150 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:23,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,150 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:23,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,151 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:23,155 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:23,155 [1520] DEBUG index - Prepared sql query parameters : [457,1,Contacts,ContactsAjax,142,2013-01-30 11:59:23] +01/30/13 11:59:23,158 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:23,158 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:23,158 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:23,158 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:23,160 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:23,160 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:23,162 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:23,162 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:23,164 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:23,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:23,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,164 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:23,164 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:23,165 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:23,165 [1520] DEBUG index - skipping headers +01/30/13 11:59:23,165 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:23,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:23,167 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:23,167 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:23,167 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:23,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,167 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:23,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,167 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:23,167 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:23,175 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:23,175 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,175 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:23,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:23,179 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:23,181 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:23,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:23,181 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:23,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,181 [1520] DEBUG index - Entering get_invoices(142) method ... +01/30/13 11:59:23,181 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:23,181 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:59:23,184 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:59:23,185 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:59:23,185 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:59:23,185 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,185 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,185 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:23,185 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:59:23,192 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,193 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:23,193 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:59:23,193 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:23,193 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:23,194 [1520] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,contact_id) method ... +01/30/13 11:59:23,194 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,194 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:23,195 [1520] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/30/13 11:59:23,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:23,195 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:23,195 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:23,195 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:23,195 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:23,195 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:23,196 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:23,198 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_contactdetails.lastname,vtiger_contactdetails.firstname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_invoice.contactid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:23,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:23,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,201 [1520] DEBUG index - Entering function initSortByField (Invoice) +01/30/13 11:59:23,201 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,201 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:23,201 [1520] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:23,205 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:23,205 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:59:23,205 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:59:23,205 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:59:23,205 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,205 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:23,205 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:59:23,206 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,206 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:23,206 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 11:59:23,213 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_contactdetails.lastname,vtiger_contactdetails.firstname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_invoice.contactid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.contactid = 142 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:59:23,238 [1520] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,142,) method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:23,238 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:23,239 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,240 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:59:23,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,242 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:23,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,244 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:59:23,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,244 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:23,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,246 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:59:23,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:23,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:23,248 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:23,249 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:59:23,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:23,250 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:23,251 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,lastname,firstname,salessubject +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:23,251 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:23,251 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:23,252 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,252 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:23,252 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:59:23,255 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:23,255 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:23,255 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:23,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,256 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:23,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:23,256 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:23,256 [1520] DEBUG index - Prepared sql query parameters : [4,23] +01/30/13 11:59:23,258 [1520] INFO index - getNextRow +01/30/13 11:59:23,259 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:23,259 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:23,259 [1520] DEBUG index - Exiting get_invoices method ... +01/30/13 11:59:25,520 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:25,646 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:25,646 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:25,646 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:25,646 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:25,646 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '93', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:25,647 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:25,647 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:25,647 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:25,647 [1520] INFO index - current module is Contacts +01/30/13 11:59:25,692 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:25,692 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:25,692 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:25,692 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:25,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,693 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:25,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,693 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:25,693 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:25,702 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:25,702 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,702 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:25,702 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:25,702 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:25,703 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:25,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,703 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:25,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,704 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:25,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,704 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:25,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,705 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:25,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,705 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:25,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,706 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:25,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,706 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:25,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,707 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:25,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,707 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:25,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,707 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:25,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,708 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:25,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,708 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:25,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,709 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:25,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,709 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:25,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,710 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:25,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,710 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:25,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,710 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:25,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,711 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:25,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,711 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:25,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,712 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:25,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,712 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:25,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:25,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,714 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:25,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,714 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:25,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,714 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:25,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,715 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:25,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,715 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:25,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,716 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:25,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,716 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:25,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,717 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:25,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,717 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:25,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,718 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:25,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,718 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:25,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,719 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:25,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,719 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:25,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,719 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:25,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,720 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:25,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,720 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:25,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,721 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:25,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,721 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,722 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:25,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,723 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:25,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,723 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:25,728 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:25,728 [1520] DEBUG index - Prepared sql query parameters : [458,1,Contacts,ContactsAjax,142,2013-01-30 11:59:25] +01/30/13 11:59:25,731 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:25,731 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:25,731 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:25,731 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:25,733 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:25,733 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:25,735 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:25,735 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:25,737 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:25,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:25,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,737 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:25,738 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:25,738 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:25,738 [1520] DEBUG index - skipping headers +01/30/13 11:59:25,738 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:25,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:25,740 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:25,740 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:25,740 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:25,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,740 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:25,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,740 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:25,740 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:25,748 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:25,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,749 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:25,752 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:25,752 [1520] DEBUG index - Prepared sql query parameters : [93] +01/30/13 11:59:25,754 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:25,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:25,755 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:25,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,755 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:25,755 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:25,756 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:25,756 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:59:25,759 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:59:25,759 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:59:25,759 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,759 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,760 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:25,760 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:59:25,764 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,764 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:25,764 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:25,765 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:59:25,765 [1520] DEBUG index - Prepared sql query parameters : [Contacts,ServiceContracts] +01/30/13 11:59:25,770 [1520] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/30/13 11:59:25,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:25,771 [1520] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/30/13 11:59:25,771 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,771 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:25,771 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:25,771 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,773 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:59:25,773 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:25,773 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,773 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:59:25,773 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:25,773 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:25,776 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:25,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:25,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,778 [1520] DEBUG index - Entering function initSortByField (ServiceContracts) +01/30/13 11:59:25,779 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,779 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,779 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:25,779 [1520] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:25,782 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:25,782 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:59:25,782 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:59:25,782 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,782 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:25,782 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:25,783 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,783 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:25,784 [1520] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/30/13 11:59:25,786 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:25,786 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 11:59:25,788 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/30/13 11:59:25,793 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,142,) method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:25,793 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:25,794 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,795 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,795 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:59:25,795 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,795 [1520] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/30/13 11:59:25,797 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,797 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:25,797 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,797 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:59:25,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,799 [1520] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/30/13 11:59:25,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,799 [1520] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/30/13 11:59:25,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,800 [1520] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/30/13 11:59:25,800 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,800 [1520] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/30/13 11:59:25,801 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,802 [1520] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/30/13 11:59:25,802 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:25,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:25,802 [1520] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/30/13 11:59:25,803 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:59:25,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:25,804 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:25,805 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:25,805 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:25,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:25,806 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,806 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:25,807 [1520] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/30/13 11:59:25,810 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:25,810 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:25,810 [1520] DEBUG index - Prepared sql query parameters : [4,37] +01/30/13 11:59:25,813 [1520] INFO index - getNextRow +01/30/13 11:59:25,814 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:25,814 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:27,502 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:27,627 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:27,627 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:27,627 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:27,627 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:27,628 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '109', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:27,628 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:27,628 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:27,628 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:27,628 [1520] INFO index - current module is Contacts +01/30/13 11:59:27,674 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:27,674 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:27,674 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:27,674 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:27,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,675 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:27,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,675 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:27,675 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:27,685 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:27,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,685 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:27,685 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:27,686 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:27,686 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:27,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,687 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:27,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,687 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:27,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,688 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:27,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,688 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:27,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,688 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:27,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,689 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:27,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,689 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:27,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,690 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:27,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,690 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:27,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,691 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:27,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,691 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:27,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,692 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:27,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,692 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:27,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,692 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:27,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,693 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:27,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,693 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:27,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,694 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:27,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,694 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:27,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,695 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:27,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,695 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:27,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,695 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,696 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:27,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,697 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:27,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,697 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:27,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,698 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:27,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,698 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:27,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,699 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:27,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,699 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:27,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,700 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:27,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,700 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:27,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,700 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:27,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,701 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:27,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,701 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:27,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,702 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:27,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,702 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:27,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,703 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:27,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,703 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:27,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,703 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:27,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,704 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:27,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,704 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:27,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,705 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:27,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,705 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:27,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,706 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:27,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,706 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:27,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,707 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:27,710 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:27,711 [1520] DEBUG index - Prepared sql query parameters : [459,1,Contacts,ContactsAjax,142,2013-01-30 11:59:27] +01/30/13 11:59:27,713 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:27,714 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:27,714 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:27,714 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:27,715 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:27,716 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:27,717 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:27,717 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:27,719 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:27,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:27,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,720 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:27,720 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:27,720 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:27,720 [1520] DEBUG index - skipping headers +01/30/13 11:59:27,720 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:27,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:27,722 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:27,722 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:27,722 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:27,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,722 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:27,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,723 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:27,723 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:27,731 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:27,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,731 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:27,735 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:27,735 [1520] DEBUG index - Prepared sql query parameters : [109] +01/30/13 11:59:27,737 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:27,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:27,737 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:27,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,737 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:27,737 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:27,738 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:27,739 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:59:27,742 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:59:27,742 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:59:27,743 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,743 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,743 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:27,743 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:59:27,747 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,748 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:27,748 [1520] DEBUG index - Entering isPermitted(Services,4,) method ... +01/30/13 11:59:27,748 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:27,748 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:27,748 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:27,749 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:59:27,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,749 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:27,749 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:27,749 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:27,752 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142), ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:27,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:27,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,755 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 11:59:27,755 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,756 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:27,756 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:27,758 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:27,758 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:59:27,759 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:59:27,759 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,759 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:27,759 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,759 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:27,760 [1520] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/30/13 11:59:27,760 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,760 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:27,760 [1520] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/30/13 11:59:27,766 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:27,766 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142) +01/30/13 11:59:27,769 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/30/13 11:59:27,794 [1520] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,142,) method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:27,794 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:27,795 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,796 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 11:59:27,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,796 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:59:27,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,798 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 11:59:27,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,800 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:59:27,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:27,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:27,801 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:59:27,803 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:59:27,803 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:27,803 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:27,804 [1520] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:27,804 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:27,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:27,806 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,806 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:27,806 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/30/13 11:59:27,809 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:27,809 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:27,809 [1520] DEBUG index - Prepared sql query parameters : [4,38] +01/30/13 11:59:27,811 [1520] INFO index - getNextRow +01/30/13 11:59:27,812 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:27,812 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:29,418 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:29,544 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:29,544 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:29,544 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:29,545 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:29,545 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Projects', + 'relation_id' => '124', + 'actions' => 'ADD,SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:29,545 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:29,545 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:29,545 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:29,545 [1520] INFO index - current module is Contacts +01/30/13 11:59:29,591 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:29,591 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:29,591 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:29,591 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:29,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,591 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:29,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,592 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:29,592 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:29,601 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:29,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,601 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:29,601 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:29,602 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:29,602 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:29,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,603 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:29,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,603 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:29,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,604 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:29,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,604 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:29,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,605 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:29,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,605 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:29,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,605 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:29,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,606 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:29,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,606 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:29,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,607 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:29,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,607 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:29,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,608 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:29,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,608 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:29,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,609 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:29,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,609 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:29,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,609 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:29,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,610 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:29,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,610 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:29,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,611 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:29,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,611 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:29,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:29,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,613 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:29,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,613 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:29,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,613 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:29,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,614 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:29,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,614 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:29,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,615 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:29,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,615 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:29,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,616 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:29,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,616 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:29,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,617 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:29,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,617 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:29,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,617 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:29,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,618 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:29,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,618 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:29,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,619 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:29,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,619 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:29,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,620 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:29,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,620 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:29,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,620 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:29,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,621 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:29,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,621 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:29,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,622 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:29,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,622 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:29,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,623 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:29,629 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:29,629 [1520] DEBUG index - Prepared sql query parameters : [460,1,Contacts,ContactsAjax,142,2013-01-30 11:59:29] +01/30/13 11:59:29,633 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:29,633 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:29,633 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:29,633 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:29,635 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:29,635 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:29,636 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:29,637 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:29,638 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:29,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:29,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,639 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:29,639 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:29,639 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:29,639 [1520] DEBUG index - skipping headers +01/30/13 11:59:29,639 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:29,640 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:29,641 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:29,642 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:29,642 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,642 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,642 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:29,642 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:29,650 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,651 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:29,654 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:29,654 [1520] DEBUG index - Prepared sql query parameters : [124] +01/30/13 11:59:29,656 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:29,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,657 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,657 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:29,657 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:29,658 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:29,658 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:29,661 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:29,661 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:29,661 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,662 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:29,662 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:59:29,662 [1520] DEBUG index - Prepared sql query parameters : [Contacts,Project] +01/30/13 11:59:29,668 [1520] DEBUG index - Entering isPermitted(Project,1,) method ... +01/30/13 11:59:29,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:29,668 [1520] DEBUG index - Entering getFieldVisibilityPermission(Project,1,linktoaccountscontacts) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:29,669 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,669 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:29,670 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:29,677 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:29,677 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:29,677 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:29,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,678 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:29,678 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:29,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,678 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:29,678 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:29,678 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:29,680 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Project,Project,SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:29,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:29,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,683 [1520] DEBUG index - Entering function initSortByField (Project) +01/30/13 11:59:29,683 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,684 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,684 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:29,684 [1520] DEBUG index - Prepared sql query parameters : [48,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:29,686 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:29,687 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:29,687 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:29,687 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,687 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,687 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:29,687 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,687 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,688 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:59:29,688 [1520] DEBUG index - Entering getTableNameForField(Project,projectname) method ... +01/30/13 11:59:29,688 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,688 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:29,688 [1520] DEBUG index - Prepared sql query parameters : [48,%projectname%] +01/30/13 11:59:29,690 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:29,691 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 11:59:29,693 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 ORDER BY vtiger_project.projectname ASC LIMIT 0, 20 +01/30/13 11:59:29,699 [1520] DEBUG index - Entering getListViewHeader(Project,,ASC,projectname,142,) method ... +01/30/13 11:59:29,699 [1520] DEBUG index - Entering getURLstring(Project) method ... +01/30/13 11:59:29,700 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:29,700 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:29,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:29,701 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,701 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:59:29,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,702 [1520] DEBUG index - function getTranslatedString(项目名称) - translated to (项目名称) +01/30/13 11:59:29,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,704 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:29,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,704 [1520] DEBUG index - function getTranslatedString(开始日期) - translated to (开始日期) +01/30/13 11:59:29,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,706 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:29,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,706 [1520] DEBUG index - function getTranslatedString(状态) - translated to (状态) +01/30/13 11:59:29,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,708 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:29,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,708 [1520] DEBUG index - function getTranslatedString(类型) - translated to (类型) +01/30/13 11:59:29,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,709 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:29,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:29,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:29,710 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:59:29,711 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:59:29,712 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:29,712 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:29,713 [1520] DEBUG index - Entering getListViewEntries(Project,Project,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:29,713 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:29,713 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:29,714 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,714 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:29,714 [1520] DEBUG index - Prepared sql query parameters : [48,projectname,startdate,projectstatus,projecttype,assigned_user_id] +01/30/13 11:59:29,717 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:29,717 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=projectname&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:29,717 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:29,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,718 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:29,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:29,718 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:29,718 [1520] DEBUG index - Prepared sql query parameters : [4,48] +01/30/13 11:59:29,720 [1520] INFO index - getNextRow +01/30/13 11:59:29,721 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:29,721 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:36,682 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:36,812 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:36,813 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:36,813 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:36,813 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:36,813 [1520] DEBUG index - array ( + 'module' => 'Project', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Contacts', + 'RLreturn_module' => 'Contacts', + 'allselectedboxes' => '', + 'return_action' => 'CallRelatedList', + 'return_id' => '142', + 'parent_id' => '142', + 'RLparent_id' => '142', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'contact_id' => '142', + 'account_id' => '138', + 'campaignid' => '', + 'emailids' => '142@80|', + 'pmodule' => 'Contacts', + 'pagenum' => '1', + 'activity_mode' => '', + 'email_directing_module' => '', + 'record' => '', + 'createmode' => 'link', + 'sc_related_to' => '142', + 'sc_related_to_type' => 'Contacts', + 'linktoaccountscontacts' => '142', + 'linktoaccountscontacts_type' => 'Contacts', + 'button' => '新增 项目', +) +01/30/13 11:59:36,814 [1520] INFO index - About to take action EditView +01/30/13 11:59:36,814 [1520] DEBUG index - in EditView +01/30/13 11:59:36,814 [1520] INFO index - current page is modules/Project/EditView.php +01/30/13 11:59:36,814 [1520] INFO index - current module is Project +01/30/13 11:59:36,850 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:36,850 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:36,850 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:36,850 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:36,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,851 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:36,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,851 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:36,851 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:36,863 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:36,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,863 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:36,863 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:36,864 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:36,864 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:36,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,865 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:36,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,865 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:36,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,866 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:36,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,866 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:36,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,867 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:36,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,867 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:36,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,868 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:36,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,868 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:36,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,869 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:36,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,869 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:36,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,870 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:36,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,870 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:36,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,871 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:36,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,871 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:36,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,871 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:36,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,872 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:36,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,872 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:36,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,873 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:36,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,873 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:36,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,874 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:36,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,874 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,875 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:36,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,876 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:36,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,876 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:36,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,877 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:36,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,877 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:36,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,878 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:36,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,878 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:36,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,879 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:36,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,879 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:36,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,880 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:36,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,880 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:36,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,881 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:36,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,881 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:36,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,882 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:36,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,882 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:36,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,883 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:36,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,883 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:36,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,883 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:36,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,884 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:36,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,884 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:36,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,885 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:36,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,885 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:36,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,886 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:36,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:36,886 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:36,890 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:36,890 [1520] DEBUG index - Prepared sql query parameters : [461,1,Project,EditView,,2013-01-30 11:59:36] +01/30/13 11:59:36,893 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:36,893 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:36,893 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:36,894 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:36,895 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:36,895 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:36,897 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:36,897 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:36,899 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:36,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:36,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,900 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:36,900 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:36,900 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:36,900 [1520] DEBUG index - including headers +01/30/13 11:59:36,900 [1520] DEBUG index - Entering getParentTabFromModule(Project) method ... +01/30/13 11:59:36,901 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:59:36,904 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:36,904 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:36,907 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:59:36,908 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:59:36,908 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,908 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:59:36,908 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,908 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:59:36,909 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,909 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:59:36,909 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,909 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:59:36,910 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,910 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:59:36,910 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,910 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:59:36,911 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:59:36,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:36,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,920 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:59:36,920 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:59:36,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:36,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,921 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:59:36,922 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:59:36,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:36,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,923 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:59:36,923 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:59:36,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:36,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,925 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:59:36,925 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:59:36,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,925 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:36,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,926 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:59:36,926 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:59:36,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:36,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,927 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:59:36,927 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:59:36,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:36,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,928 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:59:36,928 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:59:36,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:59:36,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,929 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:59:36,929 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:59:36,929 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,930 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:36,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,930 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:59:36,930 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:59:36,931 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:36,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,931 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:59:36,931 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:59:36,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:36,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,933 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:59:36,933 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:59:36,933 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,933 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:36,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,934 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:59:36,934 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:59:36,934 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:36,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,935 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:59:36,935 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:59:36,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:36,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,936 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:36,936 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:59:36,936 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,936 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:36,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,937 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:59:36,937 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:59:36,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,937 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:36,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,938 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:59:36,938 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:59:36,938 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,938 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:36,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,939 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:59:36,939 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:59:36,940 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:36,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,940 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:59:36,940 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:59:36,941 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:36,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,941 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:59:36,942 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:59:36,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,942 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:59:36,942 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:36) method ... +01/30/13 11:59:36,942 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:36,943 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:59:36) method ... +01/30/13 11:59:36,943 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:59:36,943 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:36,943 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:36,944 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:59:36,944 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:59:36,944 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:59:36,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,954 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,955 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,956 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,957 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,958 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:59:36,961 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:59:36,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,962 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:59:36,962 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:36,964 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:36,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,965 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:59:36,966 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,966 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:36,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,966 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:59:36,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,967 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:59:36,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,967 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:59:36,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,968 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,969 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,970 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:59:36,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,971 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:36,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,971 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:59:36,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,972 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:59:36,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,972 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,973 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,974 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:59:36,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,975 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:36,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,975 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:59:36,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,975 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:59:36,976 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:59:36,976 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:36,980 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:36,980 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,980 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:59:36,980 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,981 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:59:36,981 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,981 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:59:36,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,982 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:59:36,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:36,982 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:36,982 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:59:36,985 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:59:36,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:36,985 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:59:36,985 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:59:36,988 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:59:36,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:36,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,996 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:36,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:36,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,997 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:59:36,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:36,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,998 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:59:36,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:36,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,998 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:59:36,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:36,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,998 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:36,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:36,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,998 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:59:36,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:36,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,999 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:36,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:36,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,999 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:36,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:36,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:36,1000 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:59:37,000 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:37,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,000 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:37,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:59:37,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,001 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:59:37,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,001 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:37,003 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:59:37,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,004 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:59:37,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:59:37,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,004 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:59:37,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:59:37,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,005 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:59:37,005 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:59:37,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,006 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:59:37,006 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:59:37,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,006 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:59:37,006 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:37,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,007 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:59:37,007 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:59:37,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,007 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:59:37,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:59:37,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,008 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:59:37,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:59:37,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,009 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:59:37,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:37,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,009 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:37,009 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:37,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,009 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:59:37,009 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:37,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,010 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:59:37,010 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:37,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,010 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:59:37,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,010 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:37,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:59:37,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,011 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:59:37,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:37,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,011 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:37,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:37,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,012 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:59:37,012 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:37,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,012 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:37,013 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:37,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,013 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:59:37,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:37,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,013 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:59:37,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:37,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,014 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:37,014 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:37,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,015 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:59:37,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:37,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,015 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:59:37,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,016 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:59:37,016 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:59:37,017 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,042 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:37,042 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:37,043 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,043 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,043 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:37,043 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,049 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,049 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,049 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:37,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:37,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:37,051 [1520] DEBUG index - Entering setObjectValuesFromRequest(Project) method ... +01/30/13 11:59:37,051 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:59:37,051 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:59:37,051 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:59:37,051 [1520] DEBUG index - Entering getBlocks(Project,create_view,,Array,) method ... +01/30/13 11:59:37,052 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,052 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:59:37,052 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,055 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,055 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,055 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,056 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:59:37,056 [1520] DEBUG index - Prepared sql query parameters : [48,109,110,111] +01/30/13 11:59:37,063 [1520] DEBUG index - Entering getBlockInformation(Project,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +48,618,projectname,vtiger_project,1,2,projectname,Project Name,1,2,,100,1,109,1,V~M,0,1,BAS,1, +48,626,project_no,vtiger_project,2,4,project_no,Project No,1,0,,100,2,109,1,V~O,3,0,BAS,0, +48,619,startdate,vtiger_project,1,23,startdate,Start Date,1,2,,100,3,109,1,D~O,0,3,BAS,1, +48,625,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,2,,100,4,109,1,V~M,0,2,BAS,1, +48,620,targetenddate,vtiger_project,1,23,targetenddate,Target End Date,1,2,,100,5,109,1,D~O~OTH~GE~startdate~Start Date,0,4,BAS,1, +48,621,actualenddate,vtiger_project,1,23,actualenddate,Actual End Date,1,2,,100,6,109,1,D~O~OTH~GE~startdate~Start Date,1,,BAS,1, +48,622,projectstatus,vtiger_project,1,15,projectstatus,Status,1,2,,100,7,109,1,V~O,1,,BAS,1, +48,623,projecttype,vtiger_project,1,15,projecttype,Type,1,2,,100,8,109,1,V~O,1,,BAS,1, +48,624,linktoaccountscontacts,vtiger_project,1,10,linktoaccountscontacts,Related to,1,2,,100,9,109,1,V~O,1,,BAS,1, +48,627,targetbudget,vtiger_project,1,7,targetbudget,Target Budget,1,2,,100,1,110,1,V~O,1,,BAS,1, +48,628,projecturl,vtiger_project,1,17,projecturl,Project Url,1,2,,100,2,110,1,V~O,1,,BAS,1, +48,629,projectpriority,vtiger_project,1,15,projectpriority,Priority,1,2,,100,3,110,1,V~O,1,,BAS,1, +48,630,progress,vtiger_project,1,15,progress,Progress,1,2,,100,4,110,1,V~O,1,,BAS,1, +48,634,description,vtiger_crmentity,1,19,description,description,1,2,,100,1,111,1,V~O,1,,BAS,1, +,Array,48,Array) method ... +01/30/13 11:59:37,064 [1520] DEBUG index - Entering getOutputHtml(2,projectname,Project Name,100,Array,1,Project) method ... +01/30/13 11:59:37,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,064 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:59:37,064 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,065 [1520] DEBUG index - Entering getOutputHtml(4,project_no,Project No,100,Array,2,Project) method ... +01/30/13 11:59:37,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,065 [1520] DEBUG index - function getTranslatedString(Project No) - translated to (项目编号) +01/30/13 11:59:37,065 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,066 [1520] DEBUG index - Entering getOutputHtml(23,startdate,Start Date,100,Array,1,Project) method ... +01/30/13 11:59:37,066 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,066 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,066 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,067 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,067 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,067 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,067 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,067 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:37,067 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,067 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,068 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,068 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Project) method ... +01/30/13 11:59:37,068 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,069 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:37,069 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:59:37,069 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:59:37,072 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:59:37,072 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:59:37,073 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:59:37,073 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:59:37,073 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:59:37,075 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,075 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,077 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,077 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,079 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:37,079 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:59:37,079 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:59:37,079 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:59:37,079 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:59:37,080 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:59:37,080 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:59:37,080 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:59:37,080 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:59:37,082 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:37,082 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:59:37,082 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:59:37,082 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:59:37,082 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:59:37,082 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:59:37,082 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,083 [1520] DEBUG index - Entering getOutputHtml(23,targetenddate,Target End Date,100,Array,1,Project) method ... +01/30/13 11:59:37,083 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,083 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,083 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,083 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,083 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,084 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,084 [1520] DEBUG index - function getTranslatedString(Target End Date) - translated to (目标结束日期) +01/30/13 11:59:37,084 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,084 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,085 [1520] DEBUG index - Entering getOutputHtml(23,actualenddate,Actual End Date,100,Array,1,Project) method ... +01/30/13 11:59:37,085 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,085 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,086 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,086 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,086 [1520] DEBUG index - function getTranslatedString(Actual End Date) - translated to (实际结束日期) +01/30/13 11:59:37,087 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,087 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,087 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,087 [1520] DEBUG index - Entering getOutputHtml(15,projectstatus,Status,100,Array,1,Project) method ... +01/30/13 11:59:37,088 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,088 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,088 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:59:37,088 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:59:37,088 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:59:37,090 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:59:37,090 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:59:37,090 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:59:37,092 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,092 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,092 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,092 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,096 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #492 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #492 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,097 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,097 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,101 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,101 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,101 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,101 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,104 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,104 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,105 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,105 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,108 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,108 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,108 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,108 [1520] DEBUG index - Prepared sql query parameters : [projectstatus] +01/30/13 11:59:37,109 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projectstatus FROM vtiger_projectstatus inner join vtiger_role2picklist on vtiger_projectstatus.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,110 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,152 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,152 [1520] DEBUG index - function getTranslatedString(prospecting) - translated to (正在调研) +01/30/13 11:59:37,152 [1520] DEBUG index - function getTranslatedString(initiated) - translated to (已启动) +01/30/13 11:59:37,152 [1520] DEBUG index - function getTranslatedString(in progress) - translated to (正在处理) +01/30/13 11:59:37,153 [1520] DEBUG index - function getTranslatedString(waiting for feedback) - translated to (等待反馈) +01/30/13 11:59:37,153 [1520] DEBUG index - function getTranslatedString(on hold) - translated to (暂停) +01/30/13 11:59:37,153 [1520] DEBUG index - function getTranslatedString(completed) - translated to (已完成) +01/30/13 11:59:37,153 [1520] DEBUG index - function getTranslatedString(delivered) - translated to (已交付) +01/30/13 11:59:37,153 [1520] DEBUG index - function getTranslatedString(archived) - translated to (已归档) +01/30/13 11:59:37,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,154 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:37,154 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,155 [1520] DEBUG index - Entering getOutputHtml(15,projecttype,Type,100,Array,1,Project) method ... +01/30/13 11:59:37,156 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,156 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,157 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,157 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,157 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,157 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,162 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #500 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #500 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,163 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,164 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,166 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,166 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,166 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,167 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,170 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,171 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,171 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,171 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,176 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,177 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,177 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,177 [1520] DEBUG index - Prepared sql query parameters : [projecttype] +01/30/13 11:59:37,179 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projecttype FROM vtiger_projecttype inner join vtiger_role2picklist on vtiger_projecttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,179 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,200 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,200 [1520] DEBUG index - function getTranslatedString(administrative) - translated to (行政管理) +01/30/13 11:59:37,201 [1520] DEBUG index - function getTranslatedString(operative) - translated to (操作运营) +01/30/13 11:59:37,201 [1520] DEBUG index - function getTranslatedString(other) - translated to (其他) +01/30/13 11:59:37,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,201 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:37,201 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,202 [1520] DEBUG index - Entering getOutputHtml(10,linktoaccountscontacts,Related to,100,Array,1,Project) method ... +01/30/13 11:59:37,203 [1520] DEBUG index - Prepared sql query being executed : SELECT relmodule, status FROM vtiger_fieldmodulerel WHERE fieldid= + (SELECT fieldid FROM vtiger_field, vtiger_tab WHERE vtiger_field.tabid=vtiger_tab.tabid AND fieldname=? AND name=? and vtiger_field.presence in (0,2)) +01/30/13 11:59:37,203 [1520] DEBUG index - Prepared sql query parameters : [linktoaccountscontacts,Project] +01/30/13 11:59:37,206 [1520] DEBUG index - Entering getSalesEntityType(142) method ... +01/30/13 11:59:37,206 [1520] INFO index - in getSalesEntityType 142 +01/30/13 11:59:37,207 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:59:37,207 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:37,209 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:59:37,209 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:59:37,209 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,209 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:59:37,212 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:59:37,212 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:37,214 [1520] DEBUG index - in function getcolumnvisibilitypermission firstname -1 +01/30/13 11:59:37,214 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,215 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,215 [1520] DEBUG index - Prepared sql query being executed : select fieldname from vtiger_field where tabid=? and columnname=? and vtiger_field.presence in (0,2) +01/30/13 11:59:37,215 [1520] DEBUG index - Prepared sql query parameters : [4,firstname] +01/30/13 11:59:37,218 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:59:37,218 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,218 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,219 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:37,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:37,219 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:37,219 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:37,219 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,220 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,220 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,220 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:37,220 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:37,237 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,237 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:37,238 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:37,238 [1520] DEBUG index - in function getcolumnvisibilitypermission lastname -1 +01/30/13 11:59:37,238 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,239 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 11:59:37,239 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,239 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:37,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,240 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:37,240 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,241 [1520] DEBUG index - Entering getOutputHtml(7,targetbudget,Target Budget,100,Array,1,Project) method ... +01/30/13 11:59:37,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,242 [1520] DEBUG index - function getTranslatedString(Target Budget) - translated to (目标预算) +01/30/13 11:59:37,242 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,243 [1520] DEBUG index - Entering getOutputHtml(17,projecturl,Project Url,100,Array,1,Project) method ... +01/30/13 11:59:37,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,245 [1520] DEBUG index - function getTranslatedString(Project Url) - translated to (项目网址) +01/30/13 11:59:37,245 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,246 [1520] DEBUG index - Entering getOutputHtml(15,projectpriority,Priority,100,Array,1,Project) method ... +01/30/13 11:59:37,247 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,247 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,247 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,247 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,247 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,247 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,252 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #522 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #522 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,254 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,254 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,256 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,256 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,256 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,256 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,260 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,260 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,260 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,260 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,263 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,264 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,264 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,264 [1520] DEBUG index - Prepared sql query parameters : [projectpriority] +01/30/13 11:59:37,265 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projectpriority FROM vtiger_projectpriority inner join vtiger_role2picklist on vtiger_projectpriority.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,266 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,291 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,291 [1520] DEBUG index - function getTranslatedString(low) - translated to (低) +01/30/13 11:59:37,291 [1520] DEBUG index - function getTranslatedString(normal) - translated to (中) +01/30/13 11:59:37,291 [1520] DEBUG index - function getTranslatedString(high) - translated to (高) +01/30/13 11:59:37,292 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,292 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:59:37,292 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,293 [1520] DEBUG index - Entering getOutputHtml(15,progress,Progress,100,Array,1,Project) method ... +01/30/13 11:59:37,294 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,294 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,295 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,295 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,295 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,295 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,299 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #530 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #530 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,301 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,302 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,306 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,306 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,307 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,307 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,310 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,310 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,311 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,311 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,314 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,315 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,315 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,315 [1520] DEBUG index - Prepared sql query parameters : [progress] +01/30/13 11:59:37,317 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct progress FROM vtiger_progress inner join vtiger_role2picklist on vtiger_progress.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,317 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,351 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,351 [1520] DEBUG index - function getTranslatedString(10%) - translated to (10%) +01/30/13 11:59:37,352 [1520] DEBUG index - function getTranslatedString(20%) - translated to (20%) +01/30/13 11:59:37,352 [1520] DEBUG index - function getTranslatedString(30%) - translated to (30%) +01/30/13 11:59:37,352 [1520] DEBUG index - function getTranslatedString(40%) - translated to (40%) +01/30/13 11:59:37,352 [1520] DEBUG index - function getTranslatedString(50%) - translated to (50%) +01/30/13 11:59:37,352 [1520] DEBUG index - function getTranslatedString(60%) - translated to (60%) +01/30/13 11:59:37,353 [1520] DEBUG index - function getTranslatedString(70%) - translated to (70%) +01/30/13 11:59:37,353 [1520] DEBUG index - function getTranslatedString(80%) - translated to (80%) +01/30/13 11:59:37,353 [1520] DEBUG index - function getTranslatedString(90%) - translated to (90%) +01/30/13 11:59:37,353 [1520] DEBUG index - function getTranslatedString(100%) - translated to (100%) +01/30/13 11:59:37,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,354 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:59:37,354 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,355 [1520] DEBUG index - Entering getOutputHtml(19,description,description,100,Array,1,Project) method ... +01/30/13 11:59:37,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,356 [1520] DEBUG index - function getTranslatedString(description) - translated to (描述) +01/30/13 11:59:37,356 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,357 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,357 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,358 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,358 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,359 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,359 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,360 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:59:37,360 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:59:37,360 [1520] DEBUG index - Entering getBlocks(Project,create_view,,Array,BAS) method ... +01/30/13 11:59:37,360 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,360 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,361 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:59:37,361 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,364 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,364 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,365 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,366 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:59:37,366 [1520] DEBUG index - Prepared sql query parameters : [48,109,110,111,BAS] +01/30/13 11:59:37,373 [1520] DEBUG index - Entering getBlockInformation(Project,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +48,618,projectname,vtiger_project,1,2,projectname,Project Name,1,2,,100,1,109,1,V~M,0,1,BAS,1, +48,626,project_no,vtiger_project,2,4,project_no,Project No,1,0,,100,2,109,1,V~O,3,0,BAS,0, +48,619,startdate,vtiger_project,1,23,startdate,Start Date,1,2,,100,3,109,1,D~O,0,3,BAS,1, +48,625,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,2,,100,4,109,1,V~M,0,2,BAS,1, +48,620,targetenddate,vtiger_project,1,23,targetenddate,Target End Date,1,2,,100,5,109,1,D~O~OTH~GE~startdate~Start Date,0,4,BAS,1, +48,621,actualenddate,vtiger_project,1,23,actualenddate,Actual End Date,1,2,,100,6,109,1,D~O~OTH~GE~startdate~Start Date,1,,BAS,1, +48,622,projectstatus,vtiger_project,1,15,projectstatus,Status,1,2,,100,7,109,1,V~O,1,,BAS,1, +48,623,projecttype,vtiger_project,1,15,projecttype,Type,1,2,,100,8,109,1,V~O,1,,BAS,1, +48,624,linktoaccountscontacts,vtiger_project,1,10,linktoaccountscontacts,Related to,1,2,,100,9,109,1,V~O,1,,BAS,1, +48,627,targetbudget,vtiger_project,1,7,targetbudget,Target Budget,1,2,,100,1,110,1,V~O,1,,BAS,1, +48,628,projecturl,vtiger_project,1,17,projecturl,Project Url,1,2,,100,2,110,1,V~O,1,,BAS,1, +48,629,projectpriority,vtiger_project,1,15,projectpriority,Priority,1,2,,100,3,110,1,V~O,1,,BAS,1, +48,630,progress,vtiger_project,1,15,progress,Progress,1,2,,100,4,110,1,V~O,1,,BAS,1, +48,634,description,vtiger_crmentity,1,19,description,description,1,2,,100,1,111,1,V~O,1,,BAS,1, +,Array,48,Array) method ... +01/30/13 11:59:37,374 [1520] DEBUG index - Entering getOutputHtml(2,projectname,Project Name,100,Array,1,Project) method ... +01/30/13 11:59:37,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,375 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:59:37,375 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,375 [1520] DEBUG index - Entering getOutputHtml(4,project_no,Project No,100,Array,2,Project) method ... +01/30/13 11:59:37,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,376 [1520] DEBUG index - function getTranslatedString(Project No) - translated to (项目编号) +01/30/13 11:59:37,376 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,377 [1520] DEBUG index - Entering getOutputHtml(23,startdate,Start Date,100,Array,1,Project) method ... +01/30/13 11:59:37,377 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,377 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,377 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,377 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,378 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,378 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,378 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,378 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:37,378 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,379 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,379 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,379 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Project) method ... +01/30/13 11:59:37,380 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,380 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:37,380 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:59:37,380 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:59:37,381 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:59:37,382 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:59:37,382 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:59:37,382 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:59:37,382 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:59:37,384 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,385 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,387 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,387 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,389 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:37,389 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:59:37,389 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:59:37,389 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:59:37,390 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:59:37,390 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:59:37,390 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:59:37,390 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:59:37,390 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:59:37,392 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:37,392 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:59:37,392 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:59:37,393 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:59:37,393 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:59:37,393 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:59:37,393 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,393 [1520] DEBUG index - Entering getOutputHtml(23,targetenddate,Target End Date,100,Array,1,Project) method ... +01/30/13 11:59:37,394 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,394 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,394 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,394 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,394 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,395 [1520] DEBUG index - function getTranslatedString(Target End Date) - translated to (目标结束日期) +01/30/13 11:59:37,395 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,395 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,396 [1520] DEBUG index - Entering getOutputHtml(23,actualenddate,Actual End Date,100,Array,1,Project) method ... +01/30/13 11:59:37,396 [1520] INFO index - uitype is 23 +01/30/13 11:59:37,397 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,397 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:59:37,397 [1520] INFO index - in getNewDisplayDate +01/30/13 11:59:37,397 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:59:37,397 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:37) method ... +01/30/13 11:59:37,397 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:37,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,398 [1520] DEBUG index - function getTranslatedString(Actual End Date) - translated to (实际结束日期) +01/30/13 11:59:37,398 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,398 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,398 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,398 [1520] DEBUG index - Entering getOutputHtml(15,projectstatus,Status,100,Array,1,Project) method ... +01/30/13 11:59:37,399 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,399 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,399 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,399 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,399 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,400 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,403 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #564 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #564 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,404 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,404 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,406 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,406 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,406 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,406 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,409 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,410 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,410 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,410 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,413 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,413 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,413 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,414 [1520] DEBUG index - Prepared sql query parameters : [projectstatus] +01/30/13 11:59:37,415 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projectstatus FROM vtiger_projectstatus inner join vtiger_role2picklist on vtiger_projectstatus.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,415 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,424 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(prospecting) - translated to (正在调研) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(initiated) - translated to (已启动) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(in progress) - translated to (正在处理) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(waiting for feedback) - translated to (等待反馈) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(on hold) - translated to (暂停) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(completed) - translated to (已完成) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(delivered) - translated to (已交付) +01/30/13 11:59:37,425 [1520] DEBUG index - function getTranslatedString(archived) - translated to (已归档) +01/30/13 11:59:37,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,426 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:37,426 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,426 [1520] DEBUG index - Entering getOutputHtml(15,projecttype,Type,100,Array,1,Project) method ... +01/30/13 11:59:37,427 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,427 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,427 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,427 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,427 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,427 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,431 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #572 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #572 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,432 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,432 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,434 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,434 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,434 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,434 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,437 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,437 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,438 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,438 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,441 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,441 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,441 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,441 [1520] DEBUG index - Prepared sql query parameters : [projecttype] +01/30/13 11:59:37,443 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projecttype FROM vtiger_projecttype inner join vtiger_role2picklist on vtiger_projecttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,443 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,450 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,450 [1520] DEBUG index - function getTranslatedString(administrative) - translated to (行政管理) +01/30/13 11:59:37,450 [1520] DEBUG index - function getTranslatedString(operative) - translated to (操作运营) +01/30/13 11:59:37,450 [1520] DEBUG index - function getTranslatedString(other) - translated to (其他) +01/30/13 11:59:37,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,450 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:37,451 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,451 [1520] DEBUG index - Entering getOutputHtml(10,linktoaccountscontacts,Related to,100,Array,1,Project) method ... +01/30/13 11:59:37,451 [1520] DEBUG index - Prepared sql query being executed : SELECT relmodule, status FROM vtiger_fieldmodulerel WHERE fieldid= + (SELECT fieldid FROM vtiger_field, vtiger_tab WHERE vtiger_field.tabid=vtiger_tab.tabid AND fieldname=? AND name=? and vtiger_field.presence in (0,2)) +01/30/13 11:59:37,452 [1520] DEBUG index - Prepared sql query parameters : [linktoaccountscontacts,Project] +01/30/13 11:59:37,454 [1520] DEBUG index - Entering getSalesEntityType(142) method ... +01/30/13 11:59:37,454 [1520] INFO index - in getSalesEntityType 142 +01/30/13 11:59:37,454 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:59:37,454 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:37,458 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:59:37,458 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:59:37,458 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,458 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:59:37,460 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:59:37,460 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:37,463 [1520] DEBUG index - in function getcolumnvisibilitypermission firstname -1 +01/30/13 11:59:37,463 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,463 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:59:37,463 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,463 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:37,463 [1520] DEBUG index - in function getcolumnvisibilitypermission lastname -1 +01/30/13 11:59:37,464 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,465 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:37,465 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,465 [1520] DEBUG index - Entering getOutputHtml(7,targetbudget,Target Budget,100,Array,1,Project) method ... +01/30/13 11:59:37,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,466 [1520] DEBUG index - function getTranslatedString(Target Budget) - translated to (目标预算) +01/30/13 11:59:37,466 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,466 [1520] DEBUG index - Entering getOutputHtml(17,projecturl,Project Url,100,Array,1,Project) method ... +01/30/13 11:59:37,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,467 [1520] DEBUG index - function getTranslatedString(Project Url) - translated to (项目网址) +01/30/13 11:59:37,467 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,467 [1520] DEBUG index - Entering getOutputHtml(15,projectpriority,Priority,100,Array,1,Project) method ... +01/30/13 11:59:37,468 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,468 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,468 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,468 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,468 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,468 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,473 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #592 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #592 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,474 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,474 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,476 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,476 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,476 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,476 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,482 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,482 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,482 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,482 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,485 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,485 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,485 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,486 [1520] DEBUG index - Prepared sql query parameters : [projectpriority] +01/30/13 11:59:37,487 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct projectpriority FROM vtiger_projectpriority inner join vtiger_role2picklist on vtiger_projectpriority.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,487 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,494 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,494 [1520] DEBUG index - function getTranslatedString(low) - translated to (低) +01/30/13 11:59:37,495 [1520] DEBUG index - function getTranslatedString(normal) - translated to (中) +01/30/13 11:59:37,495 [1520] DEBUG index - function getTranslatedString(high) - translated to (高) +01/30/13 11:59:37,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,495 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:59:37,495 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,495 [1520] DEBUG index - Entering getOutputHtml(15,progress,Progress,100,Array,1,Project) method ... +01/30/13 11:59:37,496 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:59:37,496 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:59:37,496 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:59:37,496 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:59:37,496 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,496 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:59:37,503 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 461 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #600 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #600 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:59:37,504 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:37,504 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:37,506 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,506 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:59:37,506 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,506 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:59:37,512 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,512 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:59:37,512 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:59:37,512 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:59:37,516 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:59:37,516 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:59:37,516 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:59:37,516 [1520] DEBUG index - Prepared sql query parameters : [progress] +01/30/13 11:59:37,518 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct progress FROM vtiger_progress inner join vtiger_role2picklist on vtiger_progress.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:59:37,518 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:59:37,531 [1520] DEBUG index - function getTranslatedString(--none--) - translated to (--没有数据--) +01/30/13 11:59:37,531 [1520] DEBUG index - function getTranslatedString(10%) - translated to (10%) +01/30/13 11:59:37,531 [1520] DEBUG index - function getTranslatedString(20%) - translated to (20%) +01/30/13 11:59:37,531 [1520] DEBUG index - function getTranslatedString(30%) - translated to (30%) +01/30/13 11:59:37,531 [1520] DEBUG index - function getTranslatedString(40%) - translated to (40%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(50%) - translated to (50%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(60%) - translated to (60%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(70%) - translated to (70%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(80%) - translated to (80%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(90%) - translated to (90%) +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(100%) - translated to (100%) +01/30/13 11:59:37,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,532 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:59:37,532 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,533 [1520] DEBUG index - Entering getOutputHtml(19,description,description,100,Array,1,Project) method ... +01/30/13 11:59:37,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,534 [1520] DEBUG index - function getTranslatedString(description) - translated to (描述) +01/30/13 11:59:37,534 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:59:37,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,534 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,534 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,534 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,535 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,535 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,535 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,535 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:59:37,535 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:59:37,536 [1520] DEBUG index - Entering getBlocks(Project,create_view,,Array,ADV) method ... +01/30/13 11:59:37,536 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,536 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:59:37,536 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,538 [1520] DEBUG index - function getTranslatedString(LBL_PROJECT_INFORMATION) - translated to (项目信息) +01/30/13 11:59:37,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,539 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:59:37,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,539 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:59:37,539 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:59:37,539 [1520] DEBUG index - Prepared sql query parameters : [48,109,110,111,ADV] +01/30/13 11:59:37,544 [1520] DEBUG index - Entering getBlockInformation(Project,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +,Array,48,Array) method ... +01/30/13 11:59:37,544 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:59:37,544 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:59:37,545 [1520] DEBUG index - Entering Button_Check(Project) method ... +01/30/13 11:59:37,545 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:59:37,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,545 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:59:37,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,546 [1520] DEBUG index - Entering isPermitted(Project,Import,) method ... +01/30/13 11:59:37,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,546 [1520] DEBUG index - Entering isPermitted(Project,Export,) method ... +01/30/13 11:59:37,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,547 [1520] DEBUG index - Entering isPermitted(Project,Merge,) method ... +01/30/13 11:59:37,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,547 [1520] DEBUG index - Entering isPermitted(Project,DuplicatesHandling,) method ... +01/30/13 11:59:37,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,548 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:37,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,549 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:59:37,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:37,549 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:59:37,551 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,552 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:37,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:37,552 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:59:37,552 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,554 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:59:37,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,555 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:37,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,555 [1520] DEBUG index - function getTranslatedString(Target End Date) - translated to (目标结束日期) +01/30/13 11:59:37,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,555 [1520] DEBUG index - function getTranslatedString(Actual End Date) - translated to (实际结束日期) +01/30/13 11:59:37,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,556 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:59:37,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,556 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:37,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,556 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:37,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,557 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:59:37,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,557 [1520] DEBUG index - function getTranslatedString(Project No) - translated to (项目编号) +01/30/13 11:59:37,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,557 [1520] DEBUG index - function getTranslatedString(Target Budget) - translated to (目标预算) +01/30/13 11:59:37,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,558 [1520] DEBUG index - function getTranslatedString(Project Url) - translated to (项目网址) +01/30/13 11:59:37,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,558 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:59:37,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,558 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:59:37,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,559 [1520] DEBUG index - function getTranslatedString(description) - translated to (描述) +01/30/13 11:59:37,559 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Project)... +01/30/13 11:59:37,559 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,560 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:59:37,560 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:59:37,560 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:59:37,560 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:37,562 [1520] DEBUG index - Prepared sql query being executed : select project_no from vtiger_project where project_no = ? +01/30/13 11:59:37,562 [1520] DEBUG index - Prepared sql query parameters : [PRJ1000] +01/30/13 11:59:37,564 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:59:37,591 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,591 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:59:37,591 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,611 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:37,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:37,611 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:59:37,611 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:37,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,621 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:37,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:37,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:37,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,624 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:37,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,625 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:37,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,625 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:37,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:37,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,629 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:37,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:37,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,677 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:59:37,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:37,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:37,677 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:37,704 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:59:37,704 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:37,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:57,395 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:57,521 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:57,521 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:57,522 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:57,522 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:57,522 [1520] DEBUG index - array ( + 'pagenumber' => '', + 'module' => 'Project', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => 'Contacts', + 'return_id' => '142', + 'return_action' => 'CallRelatedList', + 'return_viewname' => '', + 'createmode' => 'link', + 'button' => ' 保存 ', + 'projectname' => ' OSSEZ A 项目 TEST', + 'project_no' => '自动生成编号', + 'startdate' => '2013-01-30', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'targetenddate' => '2013-01-30', + 'actualenddate' => '2013-01-30', + 'projectstatus' => '--none--', + 'projecttype' => '--none--', + 'linktoaccountscontacts_type' => 'Contacts', + 'linktoaccountscontacts' => '142', + 'linktoaccountscontacts_display' => ' OSSEZ A', + 'targetbudget' => '', + 'projecturl' => '', + 'projectpriority' => '--none--', + 'progress' => '--none--', + 'description' => '', + 'search_url' => '', +) +01/30/13 11:59:57,522 [1520] INFO index - About to take action Save +01/30/13 11:59:57,522 [1520] DEBUG index - in Save +01/30/13 11:59:57,523 [1520] INFO index - current page is modules/Project/Save.php +01/30/13 11:59:57,523 [1520] INFO index - current module is Project +01/30/13 11:59:57,564 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:57,564 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:57,565 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:57,565 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:57,565 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,565 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:57,565 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,565 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:57,566 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:57,577 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:57,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,577 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,577 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:57,577 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:57,578 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:57,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,578 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:57,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,579 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:57,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,580 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:57,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,580 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:57,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,581 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:57,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,581 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:57,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,582 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:57,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,582 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:57,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,583 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:57,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,583 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:57,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,584 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:57,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,584 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:57,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,585 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:57,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,585 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:57,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,586 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:57,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,586 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:57,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,587 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:57,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,587 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:57,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,588 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:57,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,588 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:57,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,589 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:57,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,589 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:57,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,590 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:57,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,590 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:57,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,591 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:57,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,591 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:57,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,592 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:57,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,592 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:57,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,593 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:57,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,593 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:57,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,594 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:57,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,594 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:57,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,595 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:57,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,595 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:57,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,596 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:57,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,596 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:57,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,597 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:57,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,597 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:57,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,598 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:57,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,598 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:57,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,599 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:57,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,599 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:57,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,600 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:57,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,600 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:57,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,601 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:57,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,601 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:57,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,602 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:57,606 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:57,606 [1520] DEBUG index - Prepared sql query parameters : [462,1,Project,Save,,2013-01-30 11:59:57] +01/30/13 11:59:57,610 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:57,610 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:57,610 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:57,610 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:57,612 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:57,612 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:57,614 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:57,614 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:57,615 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:57,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:57,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,616 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:57,616 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:57,616 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:57,616 [1520] DEBUG index - skipping headers +01/30/13 11:59:57,617 [1520] DEBUG index - Entering isPermitted(Project,Save,) method ... +01/30/13 11:59:57,617 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:57,639 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:57,639 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:57,639 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,639 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,639 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:57,639 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:57,645 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,645 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,645 [1520] DEBUG index - Entering setObjectValuesFromRequest(Project) method ... +01/30/13 11:59:57,645 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:59:57,645 [1520] DEBUG index - module name is Project +01/30/13 11:59:57,646 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:59:57,652 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:59:57,652 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:57,655 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Project +01/30/13 11:59:57,655 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:59:57,655 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:59:57,656 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:57,660 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:59:57,660 [1520] DEBUG index - Prepared sql query parameters : [144,1,5,Project,,1,2013-01-30 11:59:57,2013-01-30 11:59:57] +01/30/13 11:59:57,664 [1520] INFO index - function insertIntoEntityTable Project vtiger_table name vtiger_project +01/30/13 11:59:57,664 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,665 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:59:57,665 [1520] DEBUG index - Prepared sql query parameters : [48,vtiger_project] +01/30/13 11:59:57,669 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:59:57,669 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:59:57,669 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:59:57,669 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:59:57,670 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:59:57,670 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:59:57,671 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:59:57,671 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:57,673 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:59:57,673 [1520] DEBUG index - Prepared sql query parameters : [1001,1000,Project] +01/30/13 11:59:57,677 [1520] DEBUG index - Entering function get_column_value (targetbudget, , targetbudget, 7, V='') +01/30/13 11:59:57,677 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:59:57,677 [1520] DEBUG index - Entering function get_column_value (projecturl, , projecturl, 17, V='') +01/30/13 11:59:57,677 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:59:57,678 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_project(projectid,projectname,startdate,targetenddate,actualenddate,projectstatus,projecttype,linktoaccountscontacts,project_no,targetbudget,projecturl,projectpriority,progress) values(?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:59:57,678 [1520] DEBUG index - Prepared sql query parameters : [144,OSSEZ A 项目 TEST,2013-01-30,2013-01-30,2013-01-30,--none--,--none--,142,PRJ1000,,,--none--,--none--] +01/30/13 11:59:57,681 [1520] INFO index - function insertIntoEntityTable Project vtiger_table name vtiger_projectcf +01/30/13 11:59:57,681 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,681 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,681 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:59:57,681 [1520] DEBUG index - Prepared sql query parameters : [48,vtiger_projectcf] +01/30/13 11:59:57,685 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_projectcf(projectid) values(?) +01/30/13 11:59:57,685 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,689 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:59:57,689 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:59:57,689 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:59:57,691 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:57,691 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:57,691 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:57,691 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,691 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:57,691 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,691 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:57,691 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:57,701 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:57,702 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,702 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,702 [1520] DEBUG index - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentityrel WHERE + crmid = ? AND module = ? AND relcrmid = ? AND relmodule = ? +01/30/13 11:59:57,702 [1520] DEBUG index - Prepared sql query parameters : [142,Contacts,144,Project] +01/30/13 11:59:57,704 [1520] DEBUG index - Prepared sql query being executed : INSERT INTO vtiger_crmentityrel(crmid, module, relcrmid, relmodule) VALUES(?,?,?,?) +01/30/13 11:59:57,704 [1520] DEBUG index - Prepared sql query parameters : [142,Contacts,144,Project] +01/30/13 11:59:57,707 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity SET modifiedtime = ?, modifiedby = ? WHERE crmid = ? +01/30/13 11:59:57,707 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:59:57,1,142] +01/30/13 11:59:57,712 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:59:57,712 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,714 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:57,714 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:57,714 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,714 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,714 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:59:57,714 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,717 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_project where projectid=? +01/30/13 11:59:57,717 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,719 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_projectcf where projectid=? +01/30/13 11:59:57,719 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,721 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,726 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:59:57,728 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:57,728 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:57,728 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:57,728 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:57,728 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,728 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,729 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:57,729 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:57,729 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:57,732 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:59:57,732 [1520] DEBUG index - Prepared sql query parameters : [31x144] +01/30/13 11:59:57,737 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:57,737 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:57,737 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,737 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:57,737 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:57,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:57,737 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:59:57,737 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:57,740 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:57,740 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:57,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,740 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:57,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:57,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:57,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:57,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,745 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:57,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:57,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:57,748 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:59:57,752 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:57,752 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:57,752 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:59:57,758 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:59:57,758 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:59:57,795 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,795 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:59:57,797 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,797 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:59:57,799 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,799 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:59:57,801 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:57,801 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:59:57,803 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:59:57,803 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:57,849 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,850 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:59:57,852 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,852 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:59:57,854 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,854 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:59:57,858 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,858 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:59:57,860 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,860 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:59:57,862 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,863 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:59:57,864 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,865 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:59:57,866 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,867 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:59:57,869 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:57,869 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:59:57,871 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:59:57,871 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:59:57,904 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,904 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:59:57,906 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,906 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:59:57,909 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,909 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:59:57,911 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,911 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:59:57,913 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:59:57,913 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:57,915 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,915 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:59:57,917 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:57,917 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:59:57,921 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:59:57,922 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:59:57,957 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,957 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:59:57,962 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,962 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:59:57,964 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,965 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:59:57,967 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,967 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:59:57,969 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,969 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:59:57,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,971 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:59:57,973 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,973 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:59:57,975 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,976 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:59:57,977 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,978 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:59:57,980 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,980 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:59:57,982 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,983 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:59:57,984 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:59:57,985 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:59:57,987 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:57,990 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:57,990 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:57,992 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:57,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:57,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,994 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:57,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:57,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,995 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:59:57,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:57,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,995 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:59:57,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:57,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,996 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:59:57,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:59:57,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,997 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:59:57,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:59:57,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,997 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:59:57,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:57,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,998 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:59:57,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:57,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,998 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:59:57,998 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:57,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,999 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:57,999 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:57,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:57,999 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:57,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:58,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,000 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:59:58,000 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:58,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,001 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:59:58,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:58,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,002 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:58,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:58,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,002 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:59:58,002 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:58,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,003 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:59:58,003 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:58,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,003 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:59:58,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,004 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:59:58,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,004 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:59:58,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:58,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,005 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:59:58,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:58,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,006 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:59:58,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:58,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,007 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:59:58,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:58,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,007 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:59:58,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,008 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,008 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:59:58,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:58,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,009 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:59:58,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:58,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,009 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:59:58,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:58,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,010 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:58,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:58,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,011 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:59:58,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:58,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,011 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:58,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:58,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,012 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:59:58,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:58,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,013 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:59:58,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:58,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,013 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:59:58,013 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:58,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,014 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:58,014 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:58,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,014 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:59:58,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,015 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:59:58,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,015 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:59:58,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:59:58,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,016 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:59:58,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:59:58,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,017 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:59:58,017 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:59:58,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,018 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:59:58,018 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:59:58,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,018 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:59:58,018 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:58,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,019 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:59:58,019 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:58,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,019 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:59:58,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:58,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,020 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:58,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:58,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,020 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:59:58,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:58,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,021 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:59:58,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:58,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,021 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:59:58,021 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:58,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,022 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:59:58,022 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:58,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,022 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:59:58,022 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:58,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,022 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:59:58,022 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:58,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,023 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:59:58,023 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:58,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,023 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:59:58,023 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:58,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,023 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:59:58,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:58,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,024 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:58,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:58,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,024 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:58,024 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:59:58,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,025 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:59:58,025 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:59:58,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,025 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:59:58,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,026 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,026 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:58,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,027 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:58,028 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,028 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:59:58,028 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:58,033 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:59:58,033 [1520] DEBUG index - Prepared sql query parameters : [48,109,110,111] +01/30/13 11:59:58,043 [1520] DEBUG index - Entering isPermitted(Project,DetailView,144) method ... +01/30/13 11:59:58,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,044 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Project' +01/30/13 11:59:58,044 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:58,046 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:58,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,046 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:59:58,046 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:59:58,047 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:58,047 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,047 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,047 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:59:58,047 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:59:58,047 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:58,049 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_project where projectid=? +01/30/13 11:59:58,050 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:58,051 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_projectcf where projectid=? +01/30/13 11:59:58,051 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 11:59:58,053 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:58,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,054 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:59:58,054 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:59:58,054 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:59:58,163 [1520] DEBUG index - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:59:58,164 [1520] DEBUG index - Prepared sql query parameters : [624] +01/30/13 11:59:58,167 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,167 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,167 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:58,167 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:59:58,170 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:59:58,170 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:59:58,170 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:58,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,171 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:58,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,171 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:58,171 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:59:58,185 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:58,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,185 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,186 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:58,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:59:58,186 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,189 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:58,189 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:59:58,192 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:58,192 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:58,192 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,192 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,193 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,193 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Contacts' +01/30/13 11:59:58,193 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,195 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:59:58,195 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:59:58,197 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:59:58,197 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:59:58,199 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:59:58,199 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:58,202 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:59:58,202 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:59:58,203 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:59:58,251 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:59:58,251 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:59:58,271 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:59:58,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,271 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:59:58,271 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:59:58,275 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:58,275 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:58,283 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:59:58,283 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:58,284 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,383 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:58,507 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:58,507 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:58,507 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:58,508 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:58,508 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Contacts', + 'record' => '142', + 'parenttab' => 'Marketing', + 'start' => '', +) +01/30/13 11:59:58,508 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:59:58,508 [1520] DEBUG index - in CallRelatedList +01/30/13 11:59:58,508 [1520] INFO index - current page is modules/Contacts/CallRelatedList.php +01/30/13 11:59:58,508 [1520] INFO index - current module is Contacts +01/30/13 11:59:58,550 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:58,550 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:58,550 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:58,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:58,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,551 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:58,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,551 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:58,551 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:58,562 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:58,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,562 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,562 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:58,563 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:58,563 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:58,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,564 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:58,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,564 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:58,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,565 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:58,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,565 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:58,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,566 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:58,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,566 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:58,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,567 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:58,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,567 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:58,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,568 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:58,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,568 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:58,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,569 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:58,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,569 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:58,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,570 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:58,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,570 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:58,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,571 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:58,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,571 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:58,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,572 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:58,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,572 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:58,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,573 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:58,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,573 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:58,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,574 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:58,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,574 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:58,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,575 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:58,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,575 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:58,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,576 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:58,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,576 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:58,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,577 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:58,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,577 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:58,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,578 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:58,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,578 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:58,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,579 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:58,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,579 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:58,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,580 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:58,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,580 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:58,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,581 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:58,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,581 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:58,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,582 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:58,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,582 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:58,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,583 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:58,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,583 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:58,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,584 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:58,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,584 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:58,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,585 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:58,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,585 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:58,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,586 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:58,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,586 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:58,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,587 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:58,590 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:58,590 [1520] DEBUG index - Prepared sql query parameters : [463,1,Contacts,CallRelatedList,142,2013-01-30 11:59:58] +01/30/13 11:59:58,593 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:58,593 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:58,593 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:58,593 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:58,595 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:58,595 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:58,597 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:58,597 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:58,598 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:58,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,599 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:58,599 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:58,599 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:58,599 [1520] DEBUG index - including headers +01/30/13 11:59:58,600 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:59:58,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:59:58,603 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:58,603 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:58,606 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:59:58,606 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:59:58,607 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,607 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:59:58,607 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,607 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:59:58,608 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,608 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:59:58,608 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,608 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:59:58,608 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,609 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:59:58,609 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,609 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:59:58,609 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,609 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:59:58,610 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:59:58,610 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:59:58,610 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:59:58,610 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:59:58,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:58,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,619 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:59:58,619 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:59:58,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:58,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,620 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:59:58,620 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:59:58,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:59:58,622 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:59:58,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:58,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,624 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:59:58,624 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:59:58,624 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,625 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:58,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,625 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:59:58,625 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:59:58,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,626 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:59:58,626 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:59:58,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:58,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,627 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:59:58,627 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:59:58,628 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:59:58,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,628 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:59:58,628 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:59:58,629 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,629 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:58,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,630 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:59:58,630 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:59:58,630 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:58,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,631 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:59:58,631 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:59:58,632 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:58,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,632 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:59:58,632 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:59:58,633 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,633 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:58,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,634 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:59:58,634 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:59:58,634 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:58,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,635 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:59:58,635 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:59:58,635 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:58,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,636 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:59:58,636 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:59:58,637 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,637 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:58,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,637 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:59:58,637 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:59:58,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,638 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:58,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,639 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:59:58,639 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:59:58,639 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,639 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:58,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,640 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:59:58,640 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:59:58,641 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:58,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,641 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:59:58,642 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:59:58,642 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:58,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,643 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:59:58,643 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:59:58,643 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,643 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:58) method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:59:58) method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:58,644 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:58,646 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:59:58,646 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:59:58,646 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:59:58,649 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,649 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,650 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,651 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,653 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,656 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,657 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,659 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,659 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:59:58,663 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:59:58,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,663 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:59:58,663 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:58,665 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:59:58,665 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:59:58,666 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,666 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,667 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,668 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:59:58,669 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,669 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:58,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,669 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,670 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,671 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:59:58,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,672 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:58,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,672 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:59:58,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,673 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:58,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,673 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:59:58,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,674 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:59:58,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,674 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:59:58,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,675 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:59:58,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,675 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:59:58,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,677 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:59:58,677 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,677 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:59:58,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,677 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:59:58,678 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,678 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:59:58,678 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:59:58,678 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:58,682 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:58,682 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,683 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:59:58,683 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,683 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:59:58,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,684 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:59:58,685 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,685 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:59:58,685 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,686 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:59:58,686 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:59:58,688 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:59:58,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,688 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:59:58,688 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:59:58,692 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:59:58,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,699 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:58,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,700 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:59:58,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:59:58,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,700 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:59:58,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:59:58,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,700 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:59:58,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,701 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:58,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,701 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:59:58,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:58,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,701 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:58,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:58,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,702 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:58,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:58,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,702 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:59:58,702 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:58,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,703 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:58,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:59:58,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,703 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:59:58,705 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:59:58,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,706 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:59:58,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:59:58,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,706 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:59:58,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:59:58,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,707 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:59:58,707 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:59:58,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,708 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:59:58,708 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:59:58,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,709 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:59:58,709 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:59:58,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,709 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:59:58,709 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:59:58,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,709 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:59:58,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:59:58,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,710 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:59:58,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:59:58,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,711 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:59:58,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:58,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,711 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:58,711 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:59:58,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,712 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:59:58,712 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:59:58,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,712 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:59:58,712 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:59:58,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,712 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:59:58,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:59:58,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,713 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:59:58,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:59:58,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,713 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:59:58,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:58,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,714 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:58,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:59:58,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,714 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:59:58,714 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:58,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,715 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:58,715 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:59:58,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,715 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:59:58,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:59:58,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,715 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:59:58,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:58,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,716 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:58,716 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:59:58,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,717 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:59:58,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:58,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,718 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:59:58,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,718 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:59:58,719 [1520] DEBUG index - Entering isPermitted(Contacts,CallRelatedList,142) method ... +01/30/13 11:59:58,719 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,721 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:58,722 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:58,723 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:58,723 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:58,723 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,723 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,724 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:58,724 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:58,734 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,734 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,734 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:59:58,734 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,737 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:59:58,737 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,740 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:59:58,740 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,743 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:59:58,744 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,746 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:59:58,746 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,747 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:59:58,747 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,750 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,751 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:59:58,751 [1520] DEBUG index - id is 142 +01/30/13 11:59:58,751 [1520] DEBUG index - name is OSSEZ A +01/30/13 11:59:58,752 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:59:58,752 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,754 [1520] DEBUG index - Entering getEmailParentsList(Contacts,142) method ... +01/30/13 11:59:58,754 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,754 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:59:58,754 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:59:58,758 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:59:58,758 [1520] DEBUG index - Prepared sql query being executed : select fieldname from vtiger_field where uitype = '13' and tabid = 4 and vtiger_field.presence in (0,2) +01/30/13 11:59:58,761 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,email) method ... +01/30/13 11:59:58,761 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,761 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,761 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,secondaryemail) method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:59:58,762 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:59:58,763 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:59:58,763 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,763 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:59:58,763 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:59:58,774 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:58,774 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,774 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:58,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,775 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:58,775 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:58,775 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:58,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,777 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:58,777 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:59:58,777 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,777 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,777 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:59:58,777 [1520] DEBUG index - Entering getRelatedLists(Contacts,Contacts) method ... +01/30/13 11:59:58,778 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,778 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,778 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:59:58,778 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:58,784 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:59:58,785 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:58,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:58,785 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:59:58,785 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:58,789 [1520] DEBUG index - Entering updateInfo(142) method ... +01/30/13 11:59:58,789 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:59:58,789 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:59:58,791 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:59:58,791 [1520] INFO index - in getOwnerName 1 +01/30/13 11:59:58,791 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:59:58,791 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:58,791 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:58,793 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:59:58,793 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:59:58,795 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:59:57) method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,796 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:59:58,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,797 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:59:58,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,798 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:59:58,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,798 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:59:58,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,799 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:59:58,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,799 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:58,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,800 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:59:58,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:58,801 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:59:58,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,803 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,804 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:59:58,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,804 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:59:58,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,804 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,805 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,805 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,805 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,806 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:58,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,806 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:59:58,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:59:58,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,810 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:59:58,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:59:58,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,811 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:59:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:58,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,811 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:59:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:59:58,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,811 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:59:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,812 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:59:58,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Purchase Order) method ... +01/30/13 11:59:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,812 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:59:58,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:59:58,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,813 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:59:58,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:59:58,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,813 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:59:58,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:59:58,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,814 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:59:58,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:59:58,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,814 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:59:58,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:59:58,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,814 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:59:58,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:59:58,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,815 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:59:58,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:59:58,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,815 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:59:58,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:59:58,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,816 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:59:58,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:59:58,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:58,817 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:59:58,817 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:59:58,817 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:59:58,818 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,140 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,141 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,151 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,155 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,167 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,186 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,316 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:59,317 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:59,317 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:59,317 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:59,318 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '19', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:59,318 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:59,318 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:59,318 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:59,318 [1520] INFO index - current module is Contacts +01/30/13 11:59:59,353 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:59,354 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:59,354 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:59,354 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,354 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,354 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,354 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,355 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,355 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:59,364 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,364 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,364 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:59,364 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:59,365 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:59,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,366 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:59,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,366 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:59,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,367 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:59,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,367 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:59,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,368 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:59,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,368 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:59,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,369 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:59,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,369 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:59,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,370 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:59,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,370 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:59,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,371 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:59,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,371 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:59,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,372 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:59,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,372 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:59,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,373 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:59,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,373 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:59,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,374 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:59,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,374 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:59,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,375 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:59,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,375 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:59,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,376 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:59,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,376 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,377 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:59,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,378 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:59,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,378 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:59,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,379 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:59,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,379 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:59,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,380 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:59,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,380 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:59,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,381 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:59,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,381 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:59,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,382 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:59,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,383 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:59,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,383 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:59,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,384 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:59,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,384 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:59,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,385 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:59,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,385 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:59,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,386 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:59,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,386 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:59,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,387 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:59,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,387 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:59,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,387 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:59,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,388 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:59,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,388 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:59,394 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:59,394 [1520] DEBUG index - Prepared sql query parameters : [464,1,Contacts,ContactsAjax,142,2013-01-30 11:59:59] +01/30/13 11:59:59,397 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:59,397 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:59,397 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:59,398 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:59,399 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:59,399 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:59,401 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:59,401 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:59,403 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:59,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,404 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:59,404 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:59,404 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:59,404 [1520] DEBUG index - skipping headers +01/30/13 11:59:59,404 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:59,405 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,406 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:59,406 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:59,407 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,407 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,407 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,407 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:59,416 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,416 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,416 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,420 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:59,420 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:59:59,424 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:59,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,424 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,424 [1520] DEBUG index - Entering get_activities(142) method ... +01/30/13 11:59:59,424 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:59,424 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:59:59,427 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:59:59,427 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:59:59,427 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,427 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,427 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:59:59,427 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:59:59,435 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,436 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:59,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,436 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,436 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,437 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,438 [1520] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/30/13 11:59:59,438 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,438 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:59:59,438 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,439 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:59,439 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:59:59,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,440 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:59,440 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,440 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:59,440 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,contact_id) method ... +01/30/13 11:59:59,440 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:59,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,441 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:59,441 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:59:59,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,441 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:59:59,441 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,441 [1520] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/30/13 11:59:59,441 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:59,442 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:59,444 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Calendar,Activity,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_activity.activityid , vtiger_activity.subject, vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, vtiger_activity.time_start,vtiger_activity.time_end, vtiger_cntactivityrel.contactid, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime, vtiger_recurringevents.recurringtype, case when (vtiger_activity.activitytype = 'Task') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_seactivityrel.crmid as parent_id from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))), ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:59,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,447 [1520] DEBUG index - Entering function initSortByField (Calendar) +01/30/13 11:59:59,447 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,447 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,447 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:59,447 [1520] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:59,451 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:59,451 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:59:59,451 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:59:59,451 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,451 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:59:59,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,451 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,452 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:59,452 [1520] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/30/13 11:59:59,455 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:59,456 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/30/13 11:59:59,459 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_contactdetails.lastname, vtiger_contactdetails.firstname, vtiger_activity.activityid , vtiger_activity.subject, vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, vtiger_activity.time_start,vtiger_activity.time_end, vtiger_cntactivityrel.contactid, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime, vtiger_recurringevents.recurringtype, case when (vtiger_activity.activitytype = 'Task') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_seactivityrel.crmid as parent_id from vtiger_contactdetails inner join vtiger_cntactivityrel on vtiger_cntactivityrel.contactid = vtiger_contactdetails.contactid inner join vtiger_activity on vtiger_cntactivityrel.activityid=vtiger_activity.activityid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_cntactivityrel.activityid left join vtiger_seactivityrel on vtiger_seactivityrel.activityid = vtiger_cntactivityrel.activityid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid=142 and vtiger_crmentity.deleted = 0 and ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) or (vtiger_activity.activitytype Not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/30/13 11:59:59,466 [1520] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,142,) method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,466 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,467 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,467 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,468 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:59:59,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,470 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:59:59,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,471 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:59:59,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,473 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:59,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,473 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:59:59,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,475 [1520] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/30/13 11:59:59,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,475 [1520] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/30/13 11:59:59,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,477 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:59:59,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,479 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:59:59,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,479 [1520] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/30/13 11:59:59,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,481 [1520] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/30/13 11:59:59,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,482 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:59,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:59:59,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,484 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:59:59,486 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:59:59,486 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,486 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:59,487 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,user_name,lastname,firstname,activityid,subject,activitytype,date_start,due_date,time_start,time_end,contactid,crmid,smownerid,modifiedtime,recurringtype,status,parent_id +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:59,487 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,487 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,488 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,489 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:59:59,489 [1520] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/30/13 11:59:59,494 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,494 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:59,494 [1520] DEBUG index - Prepared sql query parameters : [4,9] +01/30/13 11:59:59,498 [1520] INFO index - getNextRow +01/30/13 11:59:59,499 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:59,499 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:59,499 [1520] DEBUG index - Exiting get_activities method ... +01/30/13 11:59:59,502 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:59,502 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:59,502 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:59,503 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:59,503 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Purchase Order', + 'relation_id' => '23', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:59,503 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:59,503 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:59,503 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:59,503 [1520] INFO index - current module is Contacts +01/30/13 11:59:59,545 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:59,545 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:59,545 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:59,545 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,546 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,546 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,546 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:59,554 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,555 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,555 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:59,555 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:59,556 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:59,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,556 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:59,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,557 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:59,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,557 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:59,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,558 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:59,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,558 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:59,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,559 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:59,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,559 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:59,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,560 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:59,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,560 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:59,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,561 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:59,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,561 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:59,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,562 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:59,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,562 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:59,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,563 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:59,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,563 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:59,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,564 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:59,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,564 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:59,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,565 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:59,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,565 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:59,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,566 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:59,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,566 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,567 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:59,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,568 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:59,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,568 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:59,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,569 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:59,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,569 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:59,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,570 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:59,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,570 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:59,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,571 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:59,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,571 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:59,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,572 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:59,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,572 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:59,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,573 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:59,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,573 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:59,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,574 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:59,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,574 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:59,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,575 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:59,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,575 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:59,576 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,576 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:59,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,576 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:59,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,577 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:59,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,577 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:59,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,578 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:59,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,578 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:59,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,579 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:59,583 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:59,583 [1520] DEBUG index - Prepared sql query parameters : [465,1,Contacts,ContactsAjax,142,2013-01-30 11:59:59] +01/30/13 11:59:59,586 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:59,586 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:59,586 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:59,586 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:59,588 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:59,588 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:59,590 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:59,590 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:59,592 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:59,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,592 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:59,593 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:59,593 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:59,593 [1520] DEBUG index - skipping headers +01/30/13 11:59:59,593 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:59,594 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,595 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:59,595 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:59,595 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,596 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,596 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,596 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:59,606 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,606 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,606 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,610 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:59,610 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:59:59,613 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:59,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,613 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,613 [1520] DEBUG index - Entering get_purchase_orders(142) method ... +01/30/13 11:59:59,613 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:59,613 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:59,616 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:59:59,616 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:59:59,617 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,617 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,617 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,617 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:59,624 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,624 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,624 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,624 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,626 [1520] DEBUG index - Entering getFieldVisibilityPermission(PurchaseOrder,1,contact_id) method ... +01/30/13 11:59:59,626 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,626 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:59,626 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,1,) method ... +01/30/13 11:59:59,627 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,627 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,627 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:59,627 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,627 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:59:59,627 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:59,628 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:59,630 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,PurchaseOrder,PurchaseOrder,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_purchaseorder.*,vtiger_vendor.vendorname,vtiger_contactdetails.lastname from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:59,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,633 [1520] DEBUG index - Entering function initSortByField (PurchaseOrder) +01/30/13 11:59:59,633 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,633 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:59,633 [1520] DEBUG index - Prepared sql query parameters : [21,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:59,637 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:59,637 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:59:59,637 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:59:59,637 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,637 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Entering getTableNameForField(PurchaseOrder,subject) method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,638 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:59,638 [1520] DEBUG index - Prepared sql query parameters : [21,%subject%] +01/30/13 11:59:59,641 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:59,641 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142 +01/30/13 11:59:59,644 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_purchaseorder.*,vtiger_vendor.vendorname,vtiger_contactdetails.lastname from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_purchaseorder.purchaseorderid left outer join vtiger_vendor on vtiger_purchaseorder.vendorid=vtiger_vendor.vendorid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_purchaseorder.contactid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.contactid=142 ORDER BY vtiger_purchaseorder.subject ASC LIMIT 0, 20 +01/30/13 11:59:59,650 [1520] DEBUG index - Entering getListViewHeader(PurchaseOrder,,ASC,subject,142,) method ... +01/30/13 11:59:59,650 [1520] DEBUG index - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:59:59,650 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:59,650 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,651 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,651 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,652 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,652 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,652 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,653 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:59:59,655 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,655 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:59,657 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,657 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:59:59,657 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,657 [1520] DEBUG index - function getTranslatedString(Tracking Number) - translated to (追踪编号) +01/30/13 11:59:59,659 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,659 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:59:59,661 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:59:59,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,661 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:59,662 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:59:59,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,663 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:59,664 [1520] DEBUG index - Entering getListViewEntries(PurchaseOrder,PurchaseOrder,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,purchaseorderid,subject,quoteid,vendorid,requisition_no,purchaseorder_no,tracking_no,contactid,duedate,carrier,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,terms_conditions,postatus,currency_id,conversion_rate,vendorname,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:59,664 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,664 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,666 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,666 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:59:59,666 [1520] DEBUG index - Prepared sql query parameters : [21,purchaseorder_no,subject,vendor_id,tracking_no,hdnGrandTotal,assigned_user_id] +01/30/13 11:59:59,671 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,672 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:59,672 [1520] DEBUG index - Prepared sql query parameters : [4,21] +01/30/13 11:59:59,675 [1520] INFO index - getNextRow +01/30/13 11:59:59,676 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:59,676 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:59,677 [1520] DEBUG index - Exiting get_purchase_orders method ... +01/30/13 11:59:59,682 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:59,682 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:59,682 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:59,683 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:59,683 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '20', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:59,683 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:59,683 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:59,683 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:59,683 [1520] INFO index - current module is Contacts +01/30/13 11:59:59,730 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:59,730 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:59,730 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:59,730 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,730 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,731 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,731 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,731 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:59,739 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,739 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,740 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:59,740 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:59,741 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:59,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,741 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:59,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,742 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:59,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,742 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:59,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,743 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:59,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,743 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:59,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,744 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:59,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,745 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:59,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,745 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:59,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,746 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:59,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,746 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:59,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,747 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:59,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,747 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:59,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,748 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:59,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,748 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:59,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,749 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:59,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,749 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:59,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,750 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:59,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,750 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:59,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,751 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:59,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,751 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:59,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,752 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:59,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,752 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:59,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,753 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:59,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,753 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:59,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,754 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:59,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,754 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:59,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,755 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:59,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,755 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:59,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,756 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:59,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,756 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:59,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,757 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:59,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,757 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:59,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,758 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:59,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,758 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:59,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,759 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:59,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,759 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:59,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,760 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:59,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,760 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:59,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,761 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:59,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,761 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:59,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,762 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:59,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,763 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:59,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,763 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:59,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,764 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:59,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,764 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:59,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,765 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:59,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,765 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:59,766 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,770 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:59,770 [1520] DEBUG index - Prepared sql query parameters : [466,1,Contacts,ContactsAjax,142,2013-01-30 11:59:59] +01/30/13 11:59:59,774 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:59,774 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:59,774 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:59,774 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:59,776 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:59,776 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:59,778 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:59,778 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:59,780 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:59,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,781 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:59,781 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:59,781 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:59,781 [1520] DEBUG index - skipping headers +01/30/13 11:59:59,781 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:59,782 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,783 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:59,783 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:59,784 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,784 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,784 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,784 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:59,792 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,792 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,796 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:59,796 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:59:59,798 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:59,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,798 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,798 [1520] DEBUG index - Entering get_emails(142) method ... +01/30/13 11:59:59,798 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:59,798 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:59:59,800 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:59:59,800 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:59:59,800 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:59:59,801 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,801 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,801 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,801 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:59:59,808 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,808 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,808 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:59:59,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,810 [1520] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/30/13 11:59:59,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,810 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,810 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:59:59,811 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,811 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:59:59,811 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:59,811 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:59,813 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Emails,Emails,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:59,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,816 [1520] DEBUG index - Entering function initSortByField (Emails) +01/30/13 11:59:59,816 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,816 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:59,816 [1520] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:59,819 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:59,819 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:59:59,819 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:59:59,819 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:59:59,819 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,820 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,820 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:59:59,820 [1520] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/30/13 11:59:59,820 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,820 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:59,820 [1520] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/30/13 11:59:59,823 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:59,823 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0 +01/30/13 11:59:59,826 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id from vtiger_activity, vtiger_seactivityrel, vtiger_contactdetails, vtiger_users, vtiger_crmentity left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 where vtiger_seactivityrel.activityid = vtiger_activity.activityid and vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid and vtiger_users.id=vtiger_crmentity.smownerid and vtiger_crmentity.crmid = vtiger_activity.activityid and vtiger_contactdetails.contactid = 142 and vtiger_activity.activitytype='Emails' and vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/30/13 11:59:59,831 [1520] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,142,) method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,831 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,832 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,833 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:59:59,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,835 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:59:59,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,836 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:59:59,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,837 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:59:59,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,838 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:59:59,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,839 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:59:59,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:59:59,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,840 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:59:59,840 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:59:59,840 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,840 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:59:59,841 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 11:59:59,841 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,841 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,842 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,843 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:59:59,843 [1520] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/30/13 11:59:59,846 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Contacts,,) method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,846 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:59:59,846 [1520] DEBUG index - Prepared sql query parameters : [4,10] +01/30/13 11:59:59,849 [1520] INFO index - getNextRow +01/30/13 11:59:59,850 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:59:59,850 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:59:59,850 [1520] DEBUG index - Exiting get_emails method ... +01/30/13 11:59:59,854 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:59:59,854 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:59:59,854 [1520] DEBUG index - ****Starting for new session +01/30/13 11:59:59,855 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:59:59,855 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '21', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:59:59,855 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:59:59,855 [1520] DEBUG index - in ContactsAjax +01/30/13 11:59:59,855 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:59:59,855 [1520] INFO index - current module is Contacts +01/30/13 11:59:59,901 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:59:59,901 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:59:59,901 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:59:59,901 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,902 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,902 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,902 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:59:59,913 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:59:59,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,913 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,913 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:59:59,914 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:59:59,914 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:59:59,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,915 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:59:59,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,915 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:59:59,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,916 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:59:59,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,916 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:59:59,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,917 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:59:59,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,917 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:59:59,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,918 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:59:59,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,918 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:59:59,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,919 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:59,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,919 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:59:59,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,920 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:59:59,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,920 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:59:59,921 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:59:59,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,921 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:59:59,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,921 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:59:59,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,922 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:59:59,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,922 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:59:59,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,923 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:59:59,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,924 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:59:59,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,924 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:59:59,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,925 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:59:59,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,925 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:59:59,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,926 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:59:59,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,926 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:59:59,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,926 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:59:59,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,927 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:59:59,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,927 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:59:59,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,928 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:59:59,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,928 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:59:59,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,929 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:59:59,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,929 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:59:59,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,930 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:59:59,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,930 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:59:59,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,931 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:59:59,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,931 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:59:59,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,932 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:59:59,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,932 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:59:59,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,933 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:59:59,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,933 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:59:59,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,934 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:59:59,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,934 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:59:59,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,935 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:59:59,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,935 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:59:59,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,936 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:59:59,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,936 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:59:59,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,937 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:59:59,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,937 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:59:59,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,938 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:59:59,942 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:59:59,942 [1520] DEBUG index - Prepared sql query parameters : [467,1,Contacts,ContactsAjax,142,2013-01-30 11:59:59] +01/30/13 11:59:59,945 [1520] DEBUG index - Current user is: admin +01/30/13 11:59:59,945 [1520] DEBUG index - Current theme is: softed +01/30/13 11:59:59,945 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:59:59,945 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:59:59,947 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:59:59,947 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:59:59,949 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:59:59,949 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:59:59,951 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:59:59,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,952 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:59:59,952 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:59:59,952 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:59:59,952 [1520] DEBUG index - skipping headers +01/30/13 11:59:59,952 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:59:59,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,954 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:59:59,955 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:59:59,955 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,955 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,955 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,955 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:59:59,963 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,963 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,967 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:59:59,967 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:59:59,970 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:59:59,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:59:59,970 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:59:59,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,970 [1520] DEBUG index - Entering get_tickets(142) method ... +01/30/13 11:59:59,970 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:59:59,970 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:59:59,972 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:59:59,972 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:59:59,973 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:59:59,973 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,973 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,973 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:59:59,973 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:59:59,981 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,981 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,981 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:59:59,981 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:59:59,981 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:59:59,983 [1520] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/30/13 11:59:59,983 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,983 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:59:59,983 [1520] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/30/13 11:59:59,984 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:59:59,984 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,984 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:59,984 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:59:59,984 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:59:59,985 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:59:59,985 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:59:59,987 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,HelpDesk,HelpDesk,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.crmid, vtiger_troubletickets.title, vtiger_contactdetails.contactid, vtiger_troubletickets.parent_id, + vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_crmentity.smownerid, vtiger_troubletickets.ticket_no + from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid + left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 11:59:59,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:59:59,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:59:59,990 [1520] DEBUG index - Entering function initSortByField (HelpDesk) +01/30/13 11:59:59,990 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,990 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:59:59,990 [1520] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/30/13 11:59:59,994 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:59:59,994 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:59:59,994 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:59:59,994 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:59:59,994 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,994 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:59:59,994 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:59:59,995 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:59:59,995 [1520] DEBUG index - Prepared sql query parameters : [13,%title%] +01/30/13 11:59:59,998 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:59:59,998 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 +01/30/13 12:00:00,001 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.crmid, vtiger_troubletickets.title, vtiger_contactdetails.contactid, vtiger_troubletickets.parent_id, + vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_crmentity.smownerid, vtiger_troubletickets.ticket_no + from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_troubletickets.ticketid + left join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/30/13 12:00:00,005 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,142,) method ... +01/30/13 12:00:00,005 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 12:00:00,006 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:00,006 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:00,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,006 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,006 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,007 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:00,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,008 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,008 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 12:00:00,010 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,011 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 12:00:00,012 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,012 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 12:00:00,013 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,013 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 12:00:00,014 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,015 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 12:00:00,016 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,016 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 12:00:00,017 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:00,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,017 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 12:00:00,018 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:00,019 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,019 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:00,020 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,crmid,title,contactid,parent_id,firstname,lastname,status,priority,smownerid,ticket_no +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:00,020 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,020 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,021 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:00,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,022 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 12:00:00,022 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 12:00:00,026 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Contacts,,) method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,026 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:00,026 [1520] DEBUG index - Prepared sql query parameters : [4,13] +01/30/13 12:00:00,029 [1520] INFO index - getNextRow +01/30/13 12:00:00,030 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:00,030 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:00,030 [1520] DEBUG index - Exiting get_tickets method ... +01/30/13 12:00:00,036 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,036 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,036 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,037 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,037 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '22', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,037 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,037 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,037 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,037 [1520] INFO index - current module is Contacts +01/30/13 12:00:00,077 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:00,077 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:00,077 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:00,077 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,078 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,078 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,078 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:00,087 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,088 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,088 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:00,088 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:00,089 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:00,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,089 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,090 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:00,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,090 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:00,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,091 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:00,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,091 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:00,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,092 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:00,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,092 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,093 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:00,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,093 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:00,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,094 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,095 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:00,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,095 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:00,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,096 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:00,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,096 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,097 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:00,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,097 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,098 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:00,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,098 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:00,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,099 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:00,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,100 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:00,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,100 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,101 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:00,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,102 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:00,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,102 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:00,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,103 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:00,103 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:00,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,104 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:00,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,104 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:00,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,105 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:00,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,105 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:00,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,106 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:00,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,106 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:00,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,107 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:00,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,107 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:00,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,108 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:00,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,108 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:00,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,109 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:00,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,109 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:00,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,110 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:00,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,110 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:00,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,111 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:00,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,112 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:00,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,112 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:00,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,113 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:00,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,113 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:00,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,114 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:00,118 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:00,119 [1520] DEBUG index - Prepared sql query parameters : [468,1,Contacts,ContactsAjax,142,2013-01-30 12:00:00] +01/30/13 12:00:00,126 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:00,126 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:00,126 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:00,126 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:00,128 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:00,128 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:00,130 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:00,131 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:00,132 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:00,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,133 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:00,133 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:00,133 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:00,133 [1520] DEBUG index - skipping headers +01/30/13 12:00:00,134 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:00,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,136 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,136 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,136 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,136 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,136 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,136 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:00,145 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,145 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,146 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:00,149 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:00,152 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,152 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,152 [1520] DEBUG index - Entering get_quotes(142) method ... +01/30/13 12:00:00,152 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:00,153 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:00:00,158 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 12:00:00,158 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 12:00:00,158 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,158 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,158 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,158 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:00:00,166 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,166 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,166 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,166 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,168 [1520] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,contact_id) method ... +01/30/13 12:00:00,168 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,168 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:00,168 [1520] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/30/13 12:00:00,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,169 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:00,169 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 12:00:00,169 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:00,169 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 12:00:00,169 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:00,169 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:00,172 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Quotes,Quotes,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_quotes.*,vtiger_potential.potentialname,vtiger_contactdetails.lastname,vtiger_account.accountname from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:00,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,175 [1520] DEBUG index - Entering function initSortByField (Quotes) +01/30/13 12:00:00,175 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,175 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,176 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:00,176 [1520] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:00,179 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:00,180 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 12:00:00,180 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 12:00:00,180 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,180 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,181 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,181 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 +01/30/13 12:00:00,184 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_quotes.*,vtiger_potential.potentialname,vtiger_contactdetails.lastname,vtiger_account.accountname from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_quotes.quoteid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_quotes.contactid left outer join vtiger_potential on vtiger_potential.potentialid=vtiger_quotes.potentialid left join vtiger_account on vtiger_account.accountid = vtiger_quotes.accountid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid=142 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 12:00:00,209 [1520] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,142,) method ... +01/30/13 12:00:00,209 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 12:00:00,210 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:00,210 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,210 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,210 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,211 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,212 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 12:00:00,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,214 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 12:00:00,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,216 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 12:00:00,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,218 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 12:00:00,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,218 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:00,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,218 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 12:00:00,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:00,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,220 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:00,222 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 12:00:00,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,222 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:00,223 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,lastname,accountname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:00,223 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,224 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,225 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,225 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 12:00:00,225 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 12:00:00,229 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,230 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:00,230 [1520] DEBUG index - Prepared sql query parameters : [4,20] +01/30/13 12:00:00,233 [1520] INFO index - getNextRow +01/30/13 12:00:00,234 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:00,234 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:00,234 [1520] DEBUG index - Exiting get_quotes method ... +01/30/13 12:00:00,238 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,238 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,239 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,239 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,239 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '18', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,240 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,240 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,240 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,240 [1520] INFO index - current module is Contacts +01/30/13 12:00:00,287 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:00,287 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:00,287 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:00,287 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,288 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,288 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,288 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:00,297 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,297 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,297 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:00,298 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:00,298 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:00,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,299 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,300 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:00,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,300 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:00,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,301 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:00,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,301 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:00,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,302 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:00,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,302 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,303 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:00,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,303 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:00,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,304 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,305 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:00,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,305 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:00,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,306 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:00,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,306 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,307 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:00,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,307 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,308 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:00,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,309 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:00,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,309 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:00,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,310 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:00,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,310 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,311 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:00,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,312 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:00,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,313 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:00,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,313 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:00,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,314 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:00,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,314 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:00,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,315 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:00,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,315 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:00,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,316 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:00,316 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:00,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,317 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:00,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,317 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:00,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,318 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:00,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,318 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:00,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,319 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:00,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,319 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:00,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,320 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:00,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,320 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:00,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,321 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:00,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,321 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:00,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,322 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:00,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,323 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:00,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,323 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:00,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,324 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:00,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,324 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:00,329 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:00,329 [1520] DEBUG index - Prepared sql query parameters : [469,1,Contacts,ContactsAjax,142,2013-01-30 12:00:00] +01/30/13 12:00:00,332 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:00,332 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:00,333 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:00,333 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:00,335 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:00,335 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:00,337 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:00,337 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:00,338 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:00,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,339 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:00,339 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:00,340 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:00,340 [1520] DEBUG index - skipping headers +01/30/13 12:00:00,340 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:00,340 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,342 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,342 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,342 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,343 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,343 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,343 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:00,354 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,354 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,354 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:00,358 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 12:00:00,361 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,362 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,362 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,362 [1520] DEBUG index - Entering get_opportunities(142) method ... +01/30/13 12:00:00,362 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:00,362 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 12:00:00,364 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 12:00:00,364 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 12:00:00,364 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,364 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,365 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,365 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 12:00:00,369 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,370 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,370 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,370 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,371 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 12:00:00,372 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,372 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 12:00:00,372 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 12:00:00,372 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:00,372 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 12:00:00,372 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:00,373 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:00,375 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Potentials,Potentials,select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:00,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,378 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 12:00:00,378 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,378 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:00,378 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:00,382 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:00,382 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 12:00:00,382 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 12:00:00,382 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,382 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,382 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,383 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:00,384 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 12:00:00,388 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:00,388 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_contactdetails left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid where vtiger_contactdetails.contactid =142 and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) and vtiger_crmentity.deleted=0 +01/30/13 12:00:00,392 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like "") then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_contactdetails.accountid, vtiger_contactdetails.contactid , vtiger_potential.potentialid, vtiger_potential.potentialname, + vtiger_potential.potentialtype, vtiger_potential.sales_stage, vtiger_potential.amount, vtiger_potential.closingdate, + vtiger_potential.related_to, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname + from vtiger_contactdetails + left join vtiger_contpotentialrel on vtiger_contpotentialrel.contactid=vtiger_contactdetails.contactid + left join vtiger_potential on (vtiger_potential.potentialid = vtiger_contpotentialrel.potentialid or vtiger_potential.related_to=vtiger_contactdetails.contactid) + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid + left join vtiger_account on vtiger_account.accountid=vtiger_contactdetails.accountid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where vtiger_contactdetails.contactid =142 + and (vtiger_contactdetails.accountid = vtiger_potential.related_to or vtiger_contactdetails.contactid=vtiger_potential.related_to) + and vtiger_crmentity.deleted=0 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 12:00:00,399 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,142,) method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,399 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,400 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,402 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 12:00:00,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,404 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 12:00:00,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,406 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 12:00:00,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,408 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 12:00:00,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,410 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 12:00:00,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,411 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:00,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,412 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 12:00:00,413 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:00,414 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,414 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:00,415 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +Administrator,138,142,143,OSSEZ A 销售机会,--None--,Prospecting,0.00,2013-01-30,142,143,1,OSSEZ +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:00,415 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,415 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,416 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,417 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 12:00:00,417 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 12:00:00,421 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,potentialname,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,421 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,421 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,422 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,423 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,423 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,related_to,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,424 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,424 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,425 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,425 [1520] DEBUG index - Entering getSalesEntityType(142) method ... +01/30/13 12:00:00,425 [1520] INFO index - in getSalesEntityType 142 +01/30/13 12:00:00,425 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 12:00:00,425 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 12:00:00,428 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 12:00:00,428 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 12:00:00,428 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:00,428 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:00,430 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 12:00:00,431 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 12:00:00,433 [1520] DEBUG index - in function getcolumnvisibilitypermission firstname -1 +01/30/13 12:00:00,433 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,433 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,433 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 12:00:00,433 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,433 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,433 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:00,434 [1520] DEBUG index - in function getcolumnvisibilitypermission lastname -1 +01/30/13 12:00:00,434 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,434 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 12:00:00,434 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,434 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:00,435 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,435 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,sales_stage,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,435 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,435 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,436 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,437 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,437 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,amount,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,438 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,438 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,439 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,439 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,439 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,440 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,closingdate,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,440 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,440 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,441 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,442 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,442 [1520] DEBUG index - Entering getValue(Array,user_name,accountid,contactid,potentialid,potentialname,potentialtype,sales_stage,amount,closingdate,related_to,crmid,smownerid,accountname +,assigned_user_id,Potentials,Potentials,143,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:00,443 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,443 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:00,444 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:00,445 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,445 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,445 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,446 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 12:00:00,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,447 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,447 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,452 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,452 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,452 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,452 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,453 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:00,453 [1520] DEBUG index - Prepared sql query parameters : [143] +01/30/13 12:00:00,456 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,456 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:00,456 [1520] DEBUG index - Prepared sql query parameters : [4,2] +01/30/13 12:00:00,459 [1520] INFO index - getNextRow +01/30/13 12:00:00,459 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:00,460 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:00,460 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 12:00:00,464 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,464 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,464 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,465 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,465 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '24', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,465 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,465 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,465 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,465 [1520] INFO index - current module is Contacts +01/30/13 12:00:00,502 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:00,502 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:00,502 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:00,502 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,503 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,503 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,503 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:00,512 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,513 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,513 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:00,513 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:00,514 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:00,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,514 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,515 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:00,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,515 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:00,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,516 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:00,516 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,516 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:00,517 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,517 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:00,517 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,517 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,518 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:00,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,518 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:00,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,519 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,519 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,519 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:00,519 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,520 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:00,520 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,520 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:00,520 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,521 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,521 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,521 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:00,521 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,522 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,522 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,522 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:00,522 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,522 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:00,523 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,523 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:00,523 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,523 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:00,524 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,524 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:00,524 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,524 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:00,525 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,525 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:00,525 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,525 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:00,526 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,526 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:00,526 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,526 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:00,527 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,527 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:00,527 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,527 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:00,528 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,528 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:00,528 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,528 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:00,529 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,529 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:00,529 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,529 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:00,530 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,530 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:00,530 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,530 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:00,531 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,531 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:00,531 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,531 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:00,532 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,532 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:00,532 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,532 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:00,532 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:00,533 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,533 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:00,533 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,533 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:00,534 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,534 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:00,534 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,534 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:00,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,535 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:00,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,535 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:00,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,536 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:00,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,536 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:00,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,537 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:00,541 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:00,542 [1520] DEBUG index - Prepared sql query parameters : [470,1,Contacts,ContactsAjax,142,2013-01-30 12:00:00] +01/30/13 12:00:00,544 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:00,544 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:00,544 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:00,544 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:00,546 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:00,547 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:00,548 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:00,549 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:00,550 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:00,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,551 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:00,551 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:00,551 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:00,551 [1520] DEBUG index - skipping headers +01/30/13 12:00:00,551 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:00,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,553 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,554 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,554 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,554 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,554 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,554 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:00,562 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,563 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,566 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:00,566 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 12:00:00,569 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,569 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,569 [1520] DEBUG index - Entering get_salesorder(142) method ... +01/30/13 12:00:00,569 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:00,569 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:00,573 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 12:00:00,573 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 12:00:00,573 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,573 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,573 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,573 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:00,581 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,582 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,582 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,582 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,583 [1520] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,contact_id) method ... +01/30/13 12:00:00,583 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,584 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:00,584 [1520] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/30/13 12:00:00,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,584 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:00,584 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:00,584 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:00,585 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:00,585 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:00,585 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:00,587 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,SalesOrder,SalesOrder,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_salesorder.*, vtiger_quotes.subject as quotename, vtiger_account.accountname, vtiger_contactdetails.lastname from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:00,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,590 [1520] DEBUG index - Entering function initSortByField (SalesOrder) +01/30/13 12:00:00,590 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,590 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:00,590 [1520] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:00,594 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:00,594 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 12:00:00,594 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 12:00:00,594 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,594 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,595 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:00,596 [1520] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/30/13 12:00:00,602 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:00,602 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142 +01/30/13 12:00:00,608 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.*, vtiger_salesorder.*, vtiger_quotes.subject as quotename, vtiger_account.accountname, vtiger_contactdetails.lastname from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_salesorder.salesorderid left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid left outer join vtiger_quotes on vtiger_quotes.quoteid=vtiger_salesorder.quoteid left outer join vtiger_account on vtiger_account.accountid=vtiger_salesorder.accountid left outer join vtiger_contactdetails on vtiger_contactdetails.contactid=vtiger_salesorder.contactid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid where vtiger_crmentity.deleted=0 and vtiger_salesorder.contactid = 142 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/30/13 12:00:00,614 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,142,) method ... +01/30/13 12:00:00,614 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 12:00:00,614 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:00,615 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,615 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,615 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,616 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,616 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,617 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 12:00:00,617 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,617 [1520] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/30/13 12:00:00,619 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,619 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 12:00:00,621 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,621 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:00,621 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,622 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 12:00:00,622 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,622 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 12:00:00,623 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:00,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,624 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:00,625 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 12:00:00,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,626 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:00,627 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,SalesOrderEditView,DeleteSalesOrder,) method ... +01/30/13 12:00:00,627 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,627 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,628 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,628 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 12:00:00,628 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 12:00:00,632 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,632 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:00,632 [1520] DEBUG index - Prepared sql query parameters : [4,22] +01/30/13 12:00:00,635 [1520] INFO index - getNextRow +01/30/13 12:00:00,635 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:00,635 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:00,635 [1520] DEBUG index - Exiting get_salesorder method ... +01/30/13 12:00:00,639 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,639 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,640 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,640 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,640 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '25', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,640 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,641 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,641 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,641 [1520] INFO index - current module is Contacts +01/30/13 12:00:00,684 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:00,684 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:00,684 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:00,684 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,685 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,685 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,685 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:00,693 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,693 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,693 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:00,694 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:00,694 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:00,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,695 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,695 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:00,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,696 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:00,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,696 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:00,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,697 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:00,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,697 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:00,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,698 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,698 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:00,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,699 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:00,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,699 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,700 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:00,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,700 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:00,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,701 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:00,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,701 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,702 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:00,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,702 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,703 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:00,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,703 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:00,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,704 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:00,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,704 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:00,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,705 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:00,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,705 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:00,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,706 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:00,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,706 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:00,706 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:00,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,706 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:00,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,707 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:00,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,707 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:00,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,708 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:00,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,709 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:00,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,709 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:00,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,709 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:00,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,710 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:00,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,710 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:00,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,711 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:00,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,711 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:00,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,712 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:00,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,712 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:00,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,713 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:00,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,713 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:00,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,714 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:00,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,714 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:00,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,715 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:00,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,715 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:00,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,716 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:00,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,716 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:00,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,717 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:00,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,717 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:00,722 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:00,722 [1520] DEBUG index - Prepared sql query parameters : [471,1,Contacts,ContactsAjax,142,2013-01-30 12:00:00] +01/30/13 12:00:00,725 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:00,725 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:00,725 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:00,725 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:00,727 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:00,727 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:00,729 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:00,729 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:00,730 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:00,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,731 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:00,731 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:00,731 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:00,732 [1520] DEBUG index - skipping headers +01/30/13 12:00:00,732 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:00,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,734 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,734 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,734 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,734 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,735 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,735 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:00,743 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,743 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,747 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:00,747 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 12:00:00,749 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,749 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,750 [1520] DEBUG index - Entering get_products(142) method ... +01/30/13 12:00:00,750 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:00,750 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 12:00:00,752 [1520] DEBUG product - Entering Products() method ... +01/30/13 12:00:00,752 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 12:00:00,752 [1520] DEBUG index - in getColumnFields Products +01/30/13 12:00:00,752 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,752 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,753 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,753 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 12:00:00,762 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,762 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,762 [1520] DEBUG product - Exiting Product method ... +01/30/13 12:00:00,762 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,762 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,763 [1520] DEBUG index - Entering isPermitted(Products,4,) method ... +01/30/13 12:00:00,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,764 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:00,764 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:00,764 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:00,765 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:00,765 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, vtiger_products.productcode, + vtiger_products.commissionrate, vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid,vtiger_contactdetails.lastname + FROM vtiger_products + INNER JOIN vtiger_seproductsrel + ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:00,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,768 [1520] DEBUG index - Entering function initSortByField (Products) +01/30/13 12:00:00,768 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,768 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:00,768 [1520] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:00,771 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:00,771 [1520] DEBUG product - Entering Products() method ... +01/30/13 12:00:00,772 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 12:00:00,772 [1520] DEBUG index - in getColumnFields Products +01/30/13 12:00:00,772 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,772 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,772 [1520] DEBUG product - Exiting Product method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,773 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:00,773 [1520] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/30/13 12:00:00,776 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:00,776 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0 +01/30/13 12:00:00,779 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, vtiger_products.productcode, + vtiger_products.commissionrate, vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid,vtiger_contactdetails.lastname + FROM vtiger_products + INNER JOIN vtiger_seproductsrel + ON vtiger_seproductsrel.productid=vtiger_products.productid and vtiger_seproductsrel.setype="Contacts" + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_contactdetails.contactid = 142 and vtiger_crmentity.deleted = 0 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/30/13 12:00:00,784 [1520] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,142,) method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,784 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,785 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:00,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,787 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 12:00:00,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:00,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,788 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 12:00:00,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:00,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,790 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 12:00:00,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:00,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,792 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 12:00:00,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:00,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,794 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 12:00:00,795 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:00,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,796 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:00,796 [1520] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid,lastname +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:00,797 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:00,797 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:00,798 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,798 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 12:00:00,798 [1520] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/30/13 12:00:00,802 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,802 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:00,803 [1520] DEBUG index - Prepared sql query parameters : [4,14] +01/30/13 12:00:00,806 [1520] INFO index - getNextRow +01/30/13 12:00:00,807 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:00,807 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:00,807 [1520] DEBUG index - Exiting get_products method ... +01/30/13 12:00:00,811 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,811 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,812 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,812 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,812 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '26', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,812 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,812 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,813 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,813 [1520] INFO index - current module is Contacts +01/30/13 12:00:00,859 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:00,860 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:00,860 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:00,860 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,860 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,861 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,861 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:00,869 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:00,869 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,869 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,869 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:00,870 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:00,870 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:00,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,871 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:00,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,871 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:00,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,872 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:00,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,872 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:00,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,873 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:00,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,874 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:00,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,874 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,875 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:00,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,875 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:00,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,876 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:00,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,876 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:00,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,877 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:00,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,877 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:00,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,878 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:00,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,878 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:00,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,879 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:00,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,879 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:00,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,880 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:00,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,880 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:00,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,881 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:00,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,881 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:00,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,882 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:00,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,883 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:00,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,883 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:00,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,883 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:00,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,884 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:00,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,884 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:00,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,885 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:00,885 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:00,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,885 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:00,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,886 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:00,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,886 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:00,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,887 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:00,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,887 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:00,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,888 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:00,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,889 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:00,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,889 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:00,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,890 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:00,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,890 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:00,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,891 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:00,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,891 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:00,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,892 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:00,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,892 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:00,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,893 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:00,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,893 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:00,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,894 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:00,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,894 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:00,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,895 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:00,900 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:00,900 [1520] DEBUG index - Prepared sql query parameters : [472,1,Contacts,ContactsAjax,142,2013-01-30 12:00:00] +01/30/13 12:00:00,911 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:00,911 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:00,912 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:00,912 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:00,913 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:00,914 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:00,915 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:00,916 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:00,917 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:00,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:00,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:00,918 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:00,918 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:00,918 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:00,918 [1520] DEBUG index - skipping headers +01/30/13 12:00:00,918 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:00,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:00,921 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:00,921 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:00,921 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,921 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,921 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:00,921 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:00,929 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,930 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,930 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:00,933 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:00,933 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 12:00:00,935 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:00,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:00,936 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:00,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,936 [1520] DEBUG index - Entering get_history(142) method ... +01/30/13 12:00:00,936 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:00,936 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:00,938 [1520] DEBUG index - Entering get_history method ... +01/30/13 12:00:00,938 [1520] DEBUG index - Entering getHistory(Contacts,SELECT vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.status + , vtiger_activity.eventstatus,vtiger_activity.activitytype, vtiger_activity.date_start, + vtiger_activity.due_date,vtiger_activity.time_start,vtiger_activity.time_end, + vtiger_contactdetails.contactid, vtiger_contactdetails.firstname, + vtiger_contactdetails.lastname, vtiger_crmentity.modifiedtime, + vtiger_crmentity.createdtime, vtiger_crmentity.description, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + from vtiger_activity + inner join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid + inner join vtiger_contactdetails on vtiger_contactdetails.contactid= vtiger_cntactivityrel.contactid + inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid + left join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where (vtiger_activity.activitytype != 'Emails') + and (vtiger_activity.status = 'Completed' or vtiger_activity.status = 'Deferred' or (vtiger_activity.eventstatus = 'Held' and vtiger_activity.eventstatus != '')) + and vtiger_cntactivityrel.contactid=142 + and vtiger_crmentity.deleted = 0,142) method ... +01/30/13 12:00:00,939 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:00,939 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,940 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:00,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:00,940 [1520] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.status + , vtiger_activity.eventstatus,vtiger_activity.activitytype, vtiger_activity.date_start, + vtiger_activity.due_date,vtiger_activity.time_start,vtiger_activity.time_end, + vtiger_contactdetails.contactid, vtiger_contactdetails.firstname, + vtiger_contactdetails.lastname, vtiger_crmentity.modifiedtime, + vtiger_crmentity.createdtime, vtiger_crmentity.description, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + from vtiger_activity + inner join vtiger_cntactivityrel on vtiger_cntactivityrel.activityid= vtiger_activity.activityid + inner join vtiger_contactdetails on vtiger_contactdetails.contactid= vtiger_cntactivityrel.contactid + inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid + left join vtiger_seactivityrel on vtiger_seactivityrel.activityid=vtiger_activity.activityid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id=vtiger_crmentity.smownerid + where (vtiger_activity.activitytype != 'Emails') + and (vtiger_activity.status = 'Completed' or vtiger_activity.status = 'Deferred' or (vtiger_activity.eventstatus = 'Held' and vtiger_activity.eventstatus != '')) + and vtiger_cntactivityrel.contactid=142 + and vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/30/13 12:00:00,969 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:00,969 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:00,969 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:00,970 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:00,970 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '27', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:00,970 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:00,970 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:00,970 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:00,970 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,008 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,008 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,008 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,008 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,009 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,009 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,009 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,017 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,017 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,017 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,018 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,019 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,019 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,020 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,020 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,021 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,021 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,022 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,022 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,023 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,023 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,024 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,024 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,025 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,025 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,026 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,026 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,027 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,027 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,027 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,028 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,028 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,029 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,029 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,030 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,030 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,031 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,031 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,032 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,032 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,033 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,033 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:01,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,033 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,034 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,034 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,035 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,035 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,036 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,036 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,037 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,037 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,038 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,038 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,039 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,039 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,040 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,040 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,041 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,041 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,042 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,047 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,047 [1520] DEBUG index - Prepared sql query parameters : [473,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,050 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,050 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,050 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,050 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,052 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,052 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,054 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,054 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,056 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,057 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,057 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,057 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,057 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,057 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,058 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,060 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,060 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,060 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,060 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,060 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,060 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,069 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,069 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,073 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,073 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 12:00:01,076 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,076 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,076 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,076 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,077 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,077 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:01,079 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 12:00:01,079 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 12:00:01,080 [1520] DEBUG index - in getColumnFields Documents +01/30/13 12:00:01,080 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,080 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,080 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,080 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:01,084 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,084 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,084 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 12:00:01,084 [1520] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/30/13 12:00:01,085 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,085 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,085 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:01,085 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,085 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:01,085 [1520] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/30/13 12:00:01,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,086 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,086 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 12:00:01,086 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,086 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 12:00:01,086 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,086 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,089 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=142,  ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,092 [1520] DEBUG index - Entering function initSortByField (Documents) +01/30/13 12:00:01,092 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,092 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,092 [1520] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,095 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,095 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 12:00:01,095 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 12:00:01,095 [1520] DEBUG index - in getColumnFields Documents +01/30/13 12:00:01,095 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,095 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,095 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,096 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:01,097 [1520] DEBUG index - Prepared sql query parameters : [8,%title%] +01/30/13 12:00:01,099 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:01,099 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=142 +01/30/13 12:00:01,103 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=142 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/30/13 12:00:01,108 [1520] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,142,) method ... +01/30/13 12:00:01,108 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 12:00:01,108 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,108 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,108 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,109 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,110 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:01,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,111 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 12:00:01,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:01,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,113 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 12:00:01,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:01,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,114 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 12:00:01,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:01,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,116 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:01,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:01,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,118 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 12:00:01,118 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:01,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,118 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,119 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,119 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,119 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,120 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,121 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 12:00:01,121 [1520] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/30/13 12:00:01,124 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,124 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:01,124 [1520] DEBUG index - Prepared sql query parameters : [4,8] +01/30/13 12:00:01,127 [1520] INFO index - getNextRow +01/30/13 12:00:01,128 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:01,128 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:01,133 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:01,133 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:01,134 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:01,134 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:01,134 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '28', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:01,134 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:01,134 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:01,135 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:01,135 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,173 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,173 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,174 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,174 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,174 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,174 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,175 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,183 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,183 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,183 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,183 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,184 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,184 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,185 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,185 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,186 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,186 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,187 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,187 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,188 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,188 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,189 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,189 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,190 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,190 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,191 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,191 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,192 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,192 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,193 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,193 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,194 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,194 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,195 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,195 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,196 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,196 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,197 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,197 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,198 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,198 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,199 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,199 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,200 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,200 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,201 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,201 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,202 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,202 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,203 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,203 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,204 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,204 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,205 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,205 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,206 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,206 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,207 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,207 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,208 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,212 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,212 [1520] DEBUG index - Prepared sql query parameters : [474,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,214 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,215 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,215 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,215 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,216 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,217 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,218 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,218 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,220 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,221 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,221 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,221 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,221 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,221 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,223 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,223 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,223 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,223 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,223 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,224 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,224 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,224 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,231 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,231 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,235 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,235 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 12:00:01,238 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,239 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,239 [1520] DEBUG index - Entering get_campaigns(142) method ... +01/30/13 12:00:01,239 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,239 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 12:00:01,241 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 12:00:01,241 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 12:00:01,241 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,242 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,242 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,242 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 12:00:01,247 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,248 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,248 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,248 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,249 [1520] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/30/13 12:00:01,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,250 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,250 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:01,250 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,250 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:01,250 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,250 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,252 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,255 [1520] DEBUG index - Entering function initSortByField (Campaigns) +01/30/13 12:00:01,255 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,255 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,255 [1520] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,258 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,258 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 12:00:01,258 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 12:00:01,259 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,259 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,259 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,259 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0 +01/30/13 12:00:01,261 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaigncontrel on vtiger_campaigncontrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaigncontrel.contactid=142 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/30/13 12:00:01,265 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,142,) method ... +01/30/13 12:00:01,265 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 12:00:01,265 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,265 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,266 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,266 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,267 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,268 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 12:00:01,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,270 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 12:00:01,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,272 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 12:00:01,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,273 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 12:00:01,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,275 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 12:00:01,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:01,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,277 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:01,278 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 12:00:01,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,279 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,279 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,279 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,280 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,281 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,281 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,281 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 12:00:01,281 [1520] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 12:00:01,284 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:01,284 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Contacts,,) method ... +01/30/13 12:00:01,284 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 12:00:01,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,285 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,285 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:01,285 [1520] DEBUG index - Prepared sql query parameters : [4,26] +01/30/13 12:00:01,287 [1520] INFO index - getNextRow +01/30/13 12:00:01,288 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:01,288 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:01,288 [1520] DEBUG index - Exiting get_campaigns method ... +01/30/13 12:00:01,291 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:01,291 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:01,291 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:01,292 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:01,292 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '29', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:01,292 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:01,292 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:01,293 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:01,293 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,337 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,337 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,337 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,337 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,338 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,338 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,338 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,347 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,347 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,347 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,347 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,347 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,348 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,349 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,349 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,350 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,350 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,351 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,351 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,352 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,352 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,353 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,353 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,354 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,354 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,355 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,355 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,356 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,356 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,357 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,357 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,358 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,358 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,359 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,359 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,360 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,360 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,361 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,361 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,362 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,362 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,363 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,363 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,364 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,364 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,365 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,365 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,366 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,366 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,367 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,367 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,368 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,368 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,369 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,369 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,370 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,370 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,371 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,371 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,372 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,376 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,376 [1520] DEBUG index - Prepared sql query parameters : [475,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,379 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,379 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,379 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,379 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,381 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,381 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,383 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,383 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,385 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,386 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,386 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,386 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,386 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,386 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,388 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,388 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,388 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,389 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,389 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,389 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,397 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,397 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,400 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,400 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,403 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,403 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,403 [1520] DEBUG index - Entering get_invoices(142) method ... +01/30/13 12:00:01,403 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,403 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:00:01,406 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 12:00:01,407 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 12:00:01,407 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 12:00:01,407 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,407 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,407 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,407 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:00:01,417 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,417 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,417 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 12:00:01,418 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,418 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,419 [1520] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,contact_id) method ... +01/30/13 12:00:01,419 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,419 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:01,419 [1520] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/30/13 12:00:01,420 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,420 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,420 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:01,420 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,420 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:01,420 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,421 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,423 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_contactdetails.lastname,vtiger_contactdetails.firstname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_invoice.contactid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,426 [1520] DEBUG index - Entering function initSortByField (Invoice) +01/30/13 12:00:01,426 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,426 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,426 [1520] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,430 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,430 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 12:00:01,430 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 12:00:01,430 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 12:00:01,430 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,430 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,430 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 12:00:01,431 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,431 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 12:00:01,434 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_contactdetails.lastname,vtiger_contactdetails.firstname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_invoice.contactid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.contactid = 142 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 12:00:01,460 [1520] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,142,) method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,460 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,461 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,463 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 12:00:01,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,464 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 12:00:01,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,466 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 12:00:01,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,466 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 12:00:01,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,468 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 12:00:01,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:01,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,470 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:01,471 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 12:00:01,472 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,472 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,473 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,lastname,firstname,salessubject +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,473 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,473 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,474 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,475 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 12:00:01,475 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 12:00:01,478 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:01,478 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:01,478 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:01,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,478 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,479 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:01,479 [1520] DEBUG index - Prepared sql query parameters : [4,23] +01/30/13 12:00:01,481 [1520] INFO index - getNextRow +01/30/13 12:00:01,482 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:01,482 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:01,482 [1520] DEBUG index - Exiting get_invoices method ... +01/30/13 12:00:01,486 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:01,487 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:01,487 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:01,487 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:01,487 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '93', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:01,488 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:01,488 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:01,488 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:01,488 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,523 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,523 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,524 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,524 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,524 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,524 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,524 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,524 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,524 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,533 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,533 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,533 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,534 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,534 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,535 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,535 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,536 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,536 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,537 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,537 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,538 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,538 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,539 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,539 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,540 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,540 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,541 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,541 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,541 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,542 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,542 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,543 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,543 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,544 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,544 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,545 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,546 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,546 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,547 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,547 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,548 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,548 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,549 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,549 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,550 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,550 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,551 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,551 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,552 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,552 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,553 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,553 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,554 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,554 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,555 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,555 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,556 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,556 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,556 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,561 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,561 [1520] DEBUG index - Prepared sql query parameters : [476,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,564 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,564 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,564 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,564 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,566 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,566 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,568 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,568 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,570 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,570 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,570 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,570 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,571 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,571 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,571 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,571 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,571 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,573 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,573 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,573 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,573 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,574 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,574 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,581 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,582 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,585 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,585 [1520] DEBUG index - Prepared sql query parameters : [93] +01/30/13 12:00:01,587 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,587 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,587 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,587 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,588 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,589 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 12:00:01,591 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 12:00:01,591 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 12:00:01,592 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,592 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,592 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,592 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 12:00:01,596 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,596 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,597 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:01,597 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 12:00:01,597 [1520] DEBUG index - Prepared sql query parameters : [Contacts,ServiceContracts] +01/30/13 12:00:01,602 [1520] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/30/13 12:00:01,602 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,602 [1520] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/30/13 12:00:01,602 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,602 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:01,603 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,603 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,604 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:01,604 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,604 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,604 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:01,604 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,604 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,607 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,610 [1520] DEBUG index - Entering function initSortByField (ServiceContracts) +01/30/13 12:00:01,610 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,610 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,610 [1520] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,612 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,612 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 12:00:01,612 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 12:00:01,612 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,613 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,613 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:01,613 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,613 [1520] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/30/13 12:00:01,614 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,614 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:01,614 [1520] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/30/13 12:00:01,616 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:01,616 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 12:00:01,618 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/30/13 12:00:01,625 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,142,) method ... +01/30/13 12:00:01,625 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 12:00:01,625 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,625 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,625 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,626 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,627 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,627 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,627 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 12:00:01,627 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,628 [1520] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/30/13 12:00:01,629 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,629 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 12:00:01,629 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,629 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 12:00:01,631 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,631 [1520] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/30/13 12:00:01,631 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,631 [1520] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/30/13 12:00:01,631 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,632 [1520] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/30/13 12:00:01,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,632 [1520] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/30/13 12:00:01,633 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,634 [1520] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/30/13 12:00:01,634 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:01,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,634 [1520] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/30/13 12:00:01,635 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 12:00:01,636 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,636 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,637 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,638 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,638 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,638 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 12:00:01,639 [1520] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/30/13 12:00:01,641 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:01,641 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:01,641 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 12:00:01,641 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,641 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,642 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:01,642 [1520] DEBUG index - Prepared sql query parameters : [4,37] +01/30/13 12:00:01,644 [1520] INFO index - getNextRow +01/30/13 12:00:01,644 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:01,645 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:01,648 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:01,648 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:01,649 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:01,649 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:01,649 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '109', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:01,649 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:01,649 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:01,649 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:01,650 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,690 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,690 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,690 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,690 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,690 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,691 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,691 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,691 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,701 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,701 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,701 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,701 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,702 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,702 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,703 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,703 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,704 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,704 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,705 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,705 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,706 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,706 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,707 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,707 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,708 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,708 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,709 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,709 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,710 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,710 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,711 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,711 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,711 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,712 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,712 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,713 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,714 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,714 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,715 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,715 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,716 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,716 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,717 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,717 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,718 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,718 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,719 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,719 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,720 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,720 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,720 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,721 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,721 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,722 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,722 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,723 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,723 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,724 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,727 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,728 [1520] DEBUG index - Prepared sql query parameters : [477,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,730 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,731 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,731 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,731 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,732 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,733 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,734 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,734 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,736 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,737 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,737 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,737 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,737 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,738 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,740 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,740 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,740 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,740 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,740 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,740 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,748 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,748 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,752 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,752 [1520] DEBUG index - Prepared sql query parameters : [109] +01/30/13 12:00:01,754 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,754 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,754 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,754 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,755 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,755 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 12:00:01,759 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:01,759 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:01,759 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,760 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,760 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,760 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 12:00:01,764 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,764 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,764 [1520] DEBUG index - Entering isPermitted(Services,4,) method ... +01/30/13 12:00:01,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,765 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,765 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:01,765 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 12:00:01,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,766 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:01,766 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,766 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,768 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142), ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,771 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 12:00:01,771 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,771 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,771 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,774 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,774 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:01,774 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:01,774 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,774 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,774 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,775 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:01,775 [1520] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/30/13 12:00:01,777 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:01,777 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142) +01/30/13 12:00:01,780 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 142 OR vtiger_crmentityrel.relcrmid = 142) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/30/13 12:00:01,796 [1520] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,142,) method ... +01/30/13 12:00:01,796 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 12:00:01,796 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,797 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,797 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,797 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,798 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,799 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 12:00:01,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,799 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 12:00:01,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,801 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 12:00:01,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,802 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 12:00:01,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:01,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,804 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 12:00:01,806 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 12:00:01,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,806 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,807 [1520] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,808 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,809 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 12:00:01,809 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/30/13 12:00:01,812 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,812 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:01,812 [1520] DEBUG index - Prepared sql query parameters : [4,38] +01/30/13 12:00:01,815 [1520] INFO index - getNextRow +01/30/13 12:00:01,815 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:01,815 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:01,820 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:01,820 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:01,820 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:01,821 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:01,821 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'file' => 'DetailViewAjax', + 'record' => '142', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Projects', + 'relation_id' => '124', + 'actions' => 'ADD,SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:01,821 [1520] INFO index - About to take action ContactsAjax +01/30/13 12:00:01,821 [1520] DEBUG index - in ContactsAjax +01/30/13 12:00:01,821 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 12:00:01,821 [1520] INFO index - current module is Contacts +01/30/13 12:00:01,866 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:01,866 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:01,866 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:01,866 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,867 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,867 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,867 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:01,875 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:01,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,876 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,876 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:01,876 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:01,877 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:01,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,877 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:01,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,878 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:01,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,878 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:01,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,879 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:01,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,879 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:01,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,880 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:01,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,880 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:01,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,881 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:01,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,881 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:01,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,882 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:01,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,882 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:01,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,883 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:01,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,883 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:01,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,884 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:01,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,884 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:01,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,885 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:01,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,885 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:01,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,886 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:01,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,886 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:01,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,887 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:01,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,887 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:01,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,888 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:01,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,888 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:01,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,888 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:01,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,889 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:01,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,889 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:01,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,890 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:01,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,890 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:01,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,891 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:01,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,891 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:01,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,892 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:01,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,892 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:01,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,893 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:01,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,893 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:01,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,894 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:01,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,894 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:01,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,895 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:01,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,895 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:01,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,896 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:01,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,896 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:01,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,897 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:01,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,897 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,898 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:01,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,898 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:01,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,899 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:01,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,899 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:01,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,900 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:01,904 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:01,904 [1520] DEBUG index - Prepared sql query parameters : [478,1,Contacts,ContactsAjax,142,2013-01-30 12:00:01] +01/30/13 12:00:01,907 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:01,907 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:01,907 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:01,907 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:01,909 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:01,909 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:01,911 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:01,911 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:01,913 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:01,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,913 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:01,913 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:01,913 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:01,914 [1520] DEBUG index - skipping headers +01/30/13 12:00:01,914 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:01,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,916 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,916 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,916 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,916 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,916 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,916 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:01,924 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,925 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,928 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 12:00:01,928 [1520] DEBUG index - Prepared sql query parameters : [124] +01/30/13 12:00:01,931 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,932 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,932 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,932 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,932 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,933 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 12:00:01,933 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 12:00:01,936 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,937 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,937 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,937 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,937 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,937 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 12:00:01,937 [1520] DEBUG index - Prepared sql query parameters : [Contacts,Project] +01/30/13 12:00:01,943 [1520] DEBUG index - Entering isPermitted(Project,1,) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Entering getFieldVisibilityPermission(Project,1,linktoaccountscontacts) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - in getColumnFields Project +01/30/13 12:00:01,944 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,945 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,945 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:01,945 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 12:00:01,950 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,950 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,950 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:01,950 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,951 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:01,951 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 12:00:01,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,951 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:01,951 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:01,951 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:01,955 [1520] DEBUG account_list - Entering GetRelatedList(Contacts,Project,Project,SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142, ,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,) method ... +01/30/13 12:00:01,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:01,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,958 [1520] DEBUG index - Entering function initSortByField (Project) +01/30/13 12:00:01,959 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,959 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:01,959 [1520] DEBUG index - Prepared sql query parameters : [48,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:01,962 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:01,962 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:01,962 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:01,962 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:01,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,962 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Entering getTableNameForField(Project,projectname) method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,963 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 12:00:01,963 [1520] DEBUG index - Prepared sql query parameters : [48,%projectname%] +01/30/13 12:00:01,966 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 12:00:01,966 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 +01/30/13 12:00:01,969 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.contactid = 142 ORDER BY vtiger_project.projectname ASC LIMIT 0, 20 +01/30/13 12:00:01,973 [1520] DEBUG index - Entering getListViewHeader(Project,,ASC,projectname,142,) method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Entering getURLstring(Project) method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,974 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,975 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,976 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 12:00:01,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,976 [1520] DEBUG index - function getTranslatedString(项目名称) - translated to (项目名称) +01/30/13 12:00:01,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,978 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 12:00:01,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,978 [1520] DEBUG index - function getTranslatedString(开始日期) - translated to (开始日期) +01/30/13 12:00:01,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,980 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 12:00:01,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,980 [1520] DEBUG index - function getTranslatedString(状态) - translated to (状态) +01/30/13 12:00:01,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,982 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 12:00:01,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,982 [1520] DEBUG index - function getTranslatedString(类型) - translated to (类型) +01/30/13 12:00:01,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,984 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 12:00:01,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,984 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 12:00:01,985 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:00:01,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:01,986 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 12:00:01,987 [1520] DEBUG index - Entering getListViewEntries(Project,Project,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +144,1,5,1,Project,,2013-01-30 11:59:57,2013-01-30 11:59:57,,,0,1,0,144,OSSEZ A 项目 TEST,PRJ1000,2013-01-30,2013-01-30,2013-01-30,,,--none--,--none--,--none--,--none--,142,胡昱铖 +,Array,relatedlist,&return_module=Contacts&return_action=CallRelatedList&return_id=142,,,) method ... +01/30/13 12:00:01,987 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,987 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,988 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,988 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,989 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 12:00:01,989 [1520] DEBUG index - Prepared sql query parameters : [48,projectname,startdate,projectstatus,projecttype,assigned_user_id] +01/30/13 12:00:01,992 [1520] DEBUG index - Entering getValue(Array,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,projectname,Project,Project,144,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:01,993 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,993 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,994 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,994 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:01,995 [1520] DEBUG index - Entering getValue(Array,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,startdate,Project,Project,144,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:01,995 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,995 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,996 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,997 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:01,997 [1520] DEBUG index - Entering getValue(Array,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,projectstatus,Project,Project,144,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:01,997 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,997 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:01,998 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:01,999 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:01,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:01,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:01,999 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:01,999 [1520] DEBUG index - Entering getValue(Array,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,projecttype,Project,Project,144,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:01,1000 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:01,1000 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:02,001 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:02,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:02,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:02,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:02,001 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:02,002 [1520] DEBUG index - Entering getValue(Array,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,assigned_user_id,Project,Project,144,0,list,,&return_module=Contacts&return_action=CallRelatedList&return_id=142,) method ... +01/30/13 12:00:02,002 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:02,002 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:02,003 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:02,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Exiting getValue method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:02,004 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:02,005 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:02,006 [1520] DEBUG index - Entering isPermitted(Project,Delete,) method ... +01/30/13 12:00:02,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:02,006 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:02,006 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:02,012 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:02,012 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:02,012 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:02,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:02,012 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:02,013 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:02,013 [1520] DEBUG index - Prepared sql query parameters : [144] +01/30/13 12:00:02,015 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=projectname&sorder=ASC,Contacts,,) method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:02,016 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 12:00:02,016 [1520] DEBUG index - Prepared sql query parameters : [4,48] +01/30/13 12:00:02,019 [1520] INFO index - getNextRow +01/30/13 12:00:02,019 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 12:00:02,019 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 12:00:07,107 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:07,228 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:07,228 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:07,228 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:07,229 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:07,229 [1520] DEBUG index - array ( + 'module' => 'Services', + 'return_module' => 'Contacts', + 'action' => 'Popup', + 'popuptype' => 'detailview', + 'select' => 'enable', + 'form' => 'EditView', + 'form_submit' => 'false', + 'recordid' => '142', + 'parenttab' => 'Marketing', +) +01/30/13 12:00:07,229 [1520] INFO index - About to take action Popup +01/30/13 12:00:07,229 [1520] DEBUG index - in Popup +01/30/13 12:00:07,229 [1520] INFO index - current page is modules/Services/Popup.php +01/30/13 12:00:07,229 [1520] INFO index - current module is Services +01/30/13 12:00:07,270 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:07,270 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:07,270 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:07,270 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:07,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,271 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:07,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,271 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:07,271 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:07,282 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:07,282 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,283 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:07,283 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:07,283 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:07,284 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:07,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,284 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:07,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,285 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:07,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,285 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:07,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,286 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:07,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,286 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:07,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,287 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:07,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,287 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:07,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,288 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:07,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,288 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:07,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,289 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:07,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,289 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:07,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,290 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:07,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,290 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:07,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,291 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:07,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,291 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:07,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,292 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:07,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,292 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:07,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,293 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:07,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,293 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:07,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,294 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:07,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,294 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:07,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,295 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:07,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,295 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:07,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,296 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:07,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,296 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:07,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,297 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:07,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,297 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:07,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,297 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:07,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,298 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:07,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,298 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:07,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,299 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:07,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,299 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:07,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,300 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:07,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,300 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:07,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,301 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:07,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,301 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:07,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,302 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:07,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,302 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:07,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,303 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:07,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,303 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:07,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,304 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:07,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,304 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:07,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,305 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:07,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,306 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:07,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,306 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:07,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,307 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:07,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:07,307 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:07,312 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:07,312 [1520] DEBUG index - Prepared sql query parameters : [479,1,Services,Popup,,2013-01-30 12:00:07] +01/30/13 12:00:07,325 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:07,326 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:07,326 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:07,326 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:07,327 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:07,328 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:07,330 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:07,330 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:07,331 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:07,331 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,332 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:07,332 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:07,332 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:07,332 [1520] DEBUG index - skipping headers +01/30/13 12:00:07,332 [1520] DEBUG index - Entering isPermitted(Services,Popup,) method ... +01/30/13 12:00:07,333 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:07,358 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:07,358 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:07,362 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:07,362 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:07,363 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,363 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,363 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,363 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,363 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:07,363 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 12:00:07,368 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,368 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,369 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:07,369 [1520] DEBUG index - Entering AlphabeticalSearch(Services,Popup,servicename,true,basic,detailview,,,,,) method ... +01/30/13 12:00:07,370 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 12:00:07,372 [1520] DEBUG index - Entering getRelCheckquery(Services,Contacts,142) method ... +01/30/13 12:00:07,372 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:07,372 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:07,372 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,372 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:07,372 [1520] DEBUG index - Prepared sql query being executed : SELECT relcrmid AS relatedid FROM vtiger_crmentityrel WHERE crmid = ? and module = ? and relmodule = ? + UNION SELECT crmid AS relatedid FROM vtiger_crmentityrel WHERE relcrmid = ? and relmodule = ? and module = ? +01/30/13 12:00:07,372 [1520] DEBUG index - Prepared sql query parameters : [142,Contacts,Services,142,Contacts,Services] +01/30/13 12:00:07,376 [1520] DEBUG index - Exiting getRelCheckquery method ... +01/30/13 12:00:07,376 [1520] DEBUG index - Entering getListQuery(Services,) method ... +01/30/13 12:00:07,376 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,376 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:07,376 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:07,378 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:07,378 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:07,378 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 12:00:07,379 [1520] DEBUG index - in getColumnFields Services +01/30/13 12:00:07,379 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Entering getSearchListHeaderValues(Services,Services,&recordid=142,,,,) method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,381 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,381 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 12:00:07,381 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 12:00:07,381 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 12:00:07,381 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 12:00:07,381 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 12:00:07,381 [1520] DEBUG index - Exiting getSearchListHeaderValues method ... +01/30/13 12:00:07,381 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 12:00:07,381 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 12:00:07,381 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 12:00:07,382 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 12:00:07,384 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 12:00:07,386 [1520] DEBUG index - query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, vtiger_servicecf.* FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 12:00:07,390 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 12:00:07,390 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,390 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:07,390 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:07,393 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:07,394 [1520] DEBUG index - Entering getSearchListViewHeader(Services,Services,&recordid=142&popuptype=detailview&select=enable&return_module=Contacts,ASC,) method ... +01/30/13 12:00:07,394 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,394 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,395 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 12:00:07,395 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,395 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 12:00:07,396 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,396 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 12:00:07,396 [1520] DEBUG index - Exiting getSearchListViewHeader method ... +01/30/13 12:00:07,397 [1520] DEBUG index - Entering getSearchListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,serviceid +,Array) method ... +01/30/13 12:00:07,397 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 12:00:07,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:07,398 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 12:00:07,398 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,unit_price] +01/30/13 12:00:07,400 [1520] DEBUG index - Exiting getSearchListViewEntries method ... +01/30/13 12:00:07,400 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:07,401 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:07,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,410 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:07,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:07,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:07,410 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:10,093 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:10,215 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:10,215 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:10,215 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:10,216 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:10,216 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:00:10,216 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:00:10,216 [1520] DEBUG index - in CalendarAjax +01/30/13 12:00:10,216 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:00:10,216 [1520] INFO index - current module is Calendar +01/30/13 12:00:10,258 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:10,258 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:10,258 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:10,259 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:10,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:10,259 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:10,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:10,259 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:10,259 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:10,268 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:10,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:10,268 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:10,268 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:10,269 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:10,269 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:10,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,270 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:10,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,270 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:10,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,271 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:10,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,271 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:10,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,272 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:10,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,272 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:10,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,273 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:10,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,273 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:10,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,274 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:10,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,274 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:10,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,275 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:10,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,275 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:10,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,276 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:10,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,276 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:10,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,277 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:10,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,277 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:10,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,278 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:10,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,278 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:10,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,279 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:10,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,279 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:10,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,280 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:10,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,280 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,281 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:10,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,282 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:10,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,282 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:10,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,283 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:10,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,283 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:10,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,284 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:10,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,284 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:10,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,285 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:10,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,285 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:10,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,286 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:10,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,286 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:10,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,287 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:10,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,287 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:10,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,288 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:10,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,288 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:10,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,289 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:10,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,289 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:10,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,290 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:10,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,291 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:10,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,291 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:10,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,292 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:10,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,292 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:10,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:10,293 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:10,293 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:10,293 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:10,293 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:10,293 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:10,295 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:10,295 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:10,297 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:10,297 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:10,299 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:10,299 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:10,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:10,300 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:10,300 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:10,300 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:10,300 [1520] DEBUG index - skipping headers +01/30/13 12:00:10,301 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:00:10,301 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:10,306 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:10,306 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:00:10,306 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:00:10,306 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:00:10,310 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:01')) +01/30/13 12:00:10,313 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 12:00:21,455 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:21,582 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:21,582 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:21,582 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:21,582 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:21,582 [1520] DEBUG index - array ( + 'module' => 'Documents', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Contacts', + 'RLreturn_module' => 'Contacts', + 'allselectedboxes' => '', + 'return_action' => 'CallRelatedList', + 'return_id' => '142', + 'parent_id' => '142', + 'RLparent_id' => '142', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'contact_id' => '142', + 'account_id' => '138', + 'campaignid' => '', + 'emailids' => '142@80|', + 'pmodule' => 'Contacts', + 'pagenum' => '1', + 'activity_mode' => '', + 'email_directing_module' => '', + 'record' => '', + 'createmode' => 'link', + 'button' => '新增 文档', + 'sc_related_to' => '142', + 'sc_related_to_type' => 'Contacts', + 'linktoaccountscontacts' => '142', + 'linktoaccountscontacts_type' => 'Contacts', +) +01/30/13 12:00:21,583 [1520] INFO index - About to take action EditView +01/30/13 12:00:21,583 [1520] DEBUG index - in EditView +01/30/13 12:00:21,583 [1520] INFO index - current page is modules/Documents/EditView.php +01/30/13 12:00:21,583 [1520] INFO index - current module is Documents +01/30/13 12:00:21,624 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:21,624 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:21,624 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:21,625 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:21,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,625 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:21,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,625 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:21,625 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:21,635 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:21,636 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,636 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:21,636 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:21,636 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:21,637 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:21,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,637 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:21,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,638 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:21,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,638 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:21,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,639 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:21,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,639 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:21,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,640 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:21,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,640 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:21,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,641 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:21,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,641 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:21,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,642 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:21,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,642 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:21,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,643 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:21,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,643 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:21,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,644 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:21,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,644 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:21,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,645 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:21,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,645 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:21,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,646 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:21,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,646 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:21,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,647 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:21,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,647 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:21,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,648 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:21,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,648 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:21,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,649 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:21,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,649 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:21,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,650 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:21,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,650 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:21,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,651 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:21,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,651 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:21,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,652 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:21,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,652 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:21,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,653 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:21,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,653 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:21,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,654 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:21,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,654 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:21,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,655 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:21,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,655 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:21,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,656 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:21,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,656 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:21,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,657 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:21,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,657 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:21,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,657 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:21,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,658 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:21,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,659 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:21,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,659 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:21,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,660 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:21,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,660 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:21,665 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:21,665 [1520] DEBUG index - Prepared sql query parameters : [480,1,Documents,EditView,,2013-01-30 12:00:21] +01/30/13 12:00:21,667 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:21,667 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:21,668 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:21,668 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:21,669 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:21,670 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:21,671 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:21,672 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:21,673 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:21,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,674 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:21,674 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:21,674 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:21,674 [1520] DEBUG index - including headers +01/30/13 12:00:21,674 [1520] DEBUG index - Entering getParentTabFromModule(Documents) method ... +01/30/13 12:00:21,675 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:21,678 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:21,678 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:21,680 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 12:00:21,681 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 12:00:21,681 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,681 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 12:00:21,682 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,682 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 12:00:21,682 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,682 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 12:00:21,682 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,683 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 12:00:21,683 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,683 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 12:00:21,683 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,683 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 12:00:21,684 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,684 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 12:00:21,684 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:21,684 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 12:00:21,684 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 12:00:21,685 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 12:00:21,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:21,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,695 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:00:21,695 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:21,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:21,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:00:21,696 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 12:00:21,696 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:21,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:00:21,697 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 12:00:21,698 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:21,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,699 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:00:21,699 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 12:00:21,699 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,700 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:21,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,700 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:00:21,700 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 12:00:21,700 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:21,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,701 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:00:21,701 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:21,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,702 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:00:21,702 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:21,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 12:00:21,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,703 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:00:21,703 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 12:00:21,703 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,704 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:21,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,704 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:00:21,704 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:21,705 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:21,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,705 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:00:21,706 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:21,706 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:21,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,707 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:00:21,707 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:21,707 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,707 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:21,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,708 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:00:21,708 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 12:00:21,708 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:21,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,709 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:00:21,709 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:21,709 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:21,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,710 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:21,710 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:00:21,710 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,711 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:21,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,711 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:00:21,711 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 12:00:21,712 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,712 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:21,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,712 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:00:21,712 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 12:00:21,713 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,713 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:21,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,714 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:21,714 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 12:00:21,714 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:21,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,715 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:00:21,715 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 12:00:21,715 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:21,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,716 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:00:21,716 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 12:00:21) method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 12:00:21) method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:00:21,717 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:21,718 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:21,719 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 12:00:21,719 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 12:00:21,719 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 12:00:21,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,728 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,733 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,733 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,733 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 12:00:21,736 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:00:21,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,737 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:00:21,737 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:21,739 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:21,739 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,740 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:21,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,741 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:21,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,741 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:21,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,742 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,743 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,744 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,745 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:00:21,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,746 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 12:00:21,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,746 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 12:00:21,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,747 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 12:00:21,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,747 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,748 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,749 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 12:00:21,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,750 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:21,750 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:21,750 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:21,754 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:21,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,754 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 12:00:21,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,755 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 12:00:21,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,755 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 12:00:21,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,756 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 12:00:21,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,756 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:21,757 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 12:00:21,759 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 12:00:21,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,759 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 12:00:21,759 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 12:00:21,762 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 12:00:21,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,768 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:21,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,769 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:00:21,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:21,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,769 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:00:21,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:21,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,770 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:21,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:21,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,770 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:21,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:21,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,770 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:00:21,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:21,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,771 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:21,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,771 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:00:21,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,771 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:00:21,772 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:21,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,772 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:00:21,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 12:00:21,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,772 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 12:00:21,775 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:00:21,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,775 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:00:21,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 12:00:21,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,776 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 12:00:21,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 12:00:21,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,776 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 12:00:21,776 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 12:00:21,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,777 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 12:00:21,777 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:00:21,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,777 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:00:21,778 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:21,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,778 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 12:00:21,778 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 12:00:21,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,778 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 12:00:21,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 12:00:21,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,779 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 12:00:21,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 12:00:21,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,780 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 12:00:21,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:21,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,780 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:21,780 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:21,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,781 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 12:00:21,781 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:21,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,781 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:00:21,781 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:21,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,781 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:00:21,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:21,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,781 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:00:21,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:00:21,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,782 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:00:21,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:21,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,782 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:21,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:21,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,783 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:00:21,783 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:00:21,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,783 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:00:21,783 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:21,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,784 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:00:21,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:21,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,784 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:00:21,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:21,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,785 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:21,785 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:21,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,785 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:21,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:21,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,786 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:00:21,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,787 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 12:00:21,787 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:21,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,789 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 12:00:21,789 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 12:00:21,790 [1520] DEBUG index - in getColumnFields Documents +01/30/13 12:00:21,790 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,790 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,790 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,790 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,790 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:21,790 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:21,795 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,796 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:21,796 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 12:00:21,796 [1520] DEBUG index - Entering getRecordOwnerId(142) method ... +01/30/13 12:00:21,796 [1520] DEBUG index - Prepared sql query being executed : select smownerid from vtiger_crmentity where crmid = ? +01/30/13 12:00:21,796 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 12:00:21,798 [1520] DEBUG index - Prepared sql query being executed : select count(*) as count from vtiger_users where id = ? +01/30/13 12:00:21,798 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:21,800 [1520] DEBUG index - Exiting getRecordOwnerId method ... +01/30/13 12:00:21,800 [1520] DEBUG index - Entering get_user_array(true,Active,1,) method ... +01/30/13 12:00:21,800 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:21,800 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 12:00:21,801 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 12:00:21,803 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:21,803 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:21,805 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:21,805 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:21,808 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:21,808 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:21,808 [1520] DEBUG index - Entering setObjectValuesFromRequest(Documents) method ... +01/30/13 12:00:21,808 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 12:00:21,809 [1520] DEBUG index - Prepared sql query being executed : select filename from vtiger_notes where notesid = ? +01/30/13 12:00:21,809 [1520] DEBUG index - Prepared sql query parameters : [] +01/30/13 12:00:21,810 [1520] DEBUG index - Entering getView() method ... +01/30/13 12:00:21,810 [1520] DEBUG index - Exiting getView method ... +01/30/13 12:00:21,810 [1520] DEBUG index - Entering getBlocks(Documents,create_view,,Array,BAS) method ... +01/30/13 12:00:21,810 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,811 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 12:00:21,811 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:21,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,813 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 12:00:21,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,813 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 12:00:21,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,813 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 12:00:21,814 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 12:00:21,814 [1520] DEBUG index - Prepared sql query parameters : [8,17,84,18,BAS] +01/30/13 12:00:21,818 [1520] DEBUG index - Entering getBlockInformation(Documents,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +8,205,title,vtiger_notes,1,2,notes_title,Title,1,0,,100,1,17,1,V~M,0,1,BAS,0, +8,217,folderid,vtiger_notes,1,26,folderid,Folder Name,1,2,,100,2,17,1,V~O,2,2,BAS,0, +8,218,note_no,vtiger_notes,1,4,note_no,Document No,1,0,,100,3,17,1,V~O,3,,BAS,0, +8,209,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,4,17,1,V~M,0,3,BAS,0, +8,208,filename,vtiger_notes,1,28,filename,File Name,1,2,,100,3,18,1,V~O,3,,BAS,0, +8,210,notecontent,vtiger_notes,1,19,notecontent,Note,1,2,,100,1,84,1,V~O,1,,BAS,0, +,Array,8,Array) method ... +01/30/13 12:00:21,818 [1520] DEBUG index - Entering getOutputHtml(2,notes_title,Title,100,Array,1,Documents) method ... +01/30/13 12:00:21,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,819 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 12:00:21,819 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,820 [1520] DEBUG index - Entering getOutputHtml(26,folderid,Folder Name,100,Array,1,Documents) method ... +01/30/13 12:00:21,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,820 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 12:00:21,820 [1520] DEBUG index - Prepared sql query being executed : select foldername from vtiger_attachmentsfolder where folderid = ? +01/30/13 12:00:21,820 [1520] DEBUG index - Prepared sql query parameters : [] +01/30/13 12:00:21,822 [1520] DEBUG index - Prepared sql query being executed : select foldername,folderid from vtiger_attachmentsfolder order by foldername +01/30/13 12:00:21,824 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,824 [1520] DEBUG index - Entering getOutputHtml(4,note_no,Document No,100,Array,1,Documents) method ... +01/30/13 12:00:21,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,825 [1520] DEBUG index - function getTranslatedString(Document No) - translated to (文档编号) +01/30/13 12:00:21,825 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,825 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Documents) method ... +01/30/13 12:00:21,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,826 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:21,826 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 12:00:21,826 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 12:00:21,827 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 12:00:21,828 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:21,828 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:21,828 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 12:00:21,828 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 12:00:21,830 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:21,831 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:21,833 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:21,833 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:21,834 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:21,834 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:21,835 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:21,835 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 12:00:21,837 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:21,837 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:21,837 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:21,837 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:21,837 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:21,837 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:21,837 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,838 [1520] DEBUG index - Entering getOutputHtml(28,filename,File Name,100,Array,1,Documents) method ... +01/30/13 12:00:21,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,839 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 12:00:21,839 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,839 [1520] DEBUG index - Entering getOutputHtml(19,notecontent,Note,100,Array,1,Documents) method ... +01/30/13 12:00:21,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,840 [1520] DEBUG index - function getTranslatedString(Note) - translated to (描述) +01/30/13 12:00:21,840 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 12:00:21,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,840 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 12:00:21,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,840 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 12:00:21,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,841 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 12:00:21,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,841 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 12:00:21,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,841 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 12:00:21,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,841 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 12:00:21,841 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 12:00:21,841 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 12:00:21,842 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:21,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:21,843 [1520] INFO index - Document detail view +01/30/13 12:00:21,843 [1520] DEBUG index - Entering getFieldVisibilityPermission(Documents,1,notecontent) method ... +01/30/13 12:00:21,843 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,843 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:21,846 [1520] DEBUG index - Entering Button_Check(Documents) method ... +01/30/13 12:00:21,846 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:21,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,847 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 12:00:21,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,847 [1520] DEBUG index - Entering isPermitted(Documents,Import,) method ... +01/30/13 12:00:21,848 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,848 [1520] DEBUG index - Entering isPermitted(Documents,Export,) method ... +01/30/13 12:00:21,848 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,848 [1520] DEBUG index - Entering isPermitted(Documents,Merge,) method ... +01/30/13 12:00:21,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,849 [1520] DEBUG index - Entering isPermitted(Documents,DuplicatesHandling,) method ... +01/30/13 12:00:21,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,849 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:21,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,850 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:21,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:21,851 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 12:00:21,851 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:21,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,853 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 12:00:21,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,853 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 12:00:21,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,854 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:21,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,854 [1520] DEBUG index - function getTranslatedString(Note) - translated to (描述) +01/30/13 12:00:21,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,854 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 12:00:21,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,855 [1520] DEBUG index - function getTranslatedString(Document No) - translated to (文档编号) +01/30/13 12:00:21,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,855 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:00:21,855 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 12:00:21,855 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 12:00:21,856 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Documents)... +01/30/13 12:00:21,856 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,856 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 12:00:21,856 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 12:00:21,856 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 12:00:21,856 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 12:00:21,858 [1520] DEBUG index - Prepared sql query being executed : select note_no from vtiger_notes where note_no = ? +01/30/13 12:00:21,858 [1520] DEBUG index - Prepared sql query parameters : [DOC2] +01/30/13 12:00:21,860 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 12:00:21,885 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,885 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,885 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 12:00:21,886 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:21,888 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:21,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:21,888 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 12:00:21,888 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:21,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,894 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,894 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 12:00:21,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,895 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 12:00:21,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,895 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,896 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,896 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,896 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:21,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,897 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 12:00:21,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,927 [1520] DEBUG index - function getTranslatedString(LBL_MAX_SIZE) - translated to (最大上传大小) +01/30/13 12:00:21,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:21,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:21,927 [1520] DEBUG index - function getTranslatedString(LBL_FILESIZEIN_MB) - translated to (MB) +01/30/13 12:00:21,932 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 12:00:21,932 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:21,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:27,848 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:27,969 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:27,970 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:27,970 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:27,970 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:27,970 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'index', +) +01/30/13 12:00:27,971 [1520] INFO index - About to take action index +01/30/13 12:00:27,971 [1520] DEBUG index - in index +01/30/13 12:00:27,971 [1520] INFO index - current page is modules/Contacts/index.php +01/30/13 12:00:27,971 [1520] INFO index - current module is Contacts +01/30/13 12:00:28,012 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:28,013 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:28,013 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:28,013 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,013 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,014 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:28,014 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:28,025 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,025 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,025 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:28,025 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:28,026 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:28,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,026 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,027 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,027 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,028 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,028 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,029 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,029 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,030 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,031 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:28,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,031 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:28,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,032 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,032 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,033 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,033 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,034 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,034 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,035 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,035 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,036 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,036 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,037 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,037 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,038 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,038 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,038 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,039 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,039 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,040 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,040 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,041 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,041 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,042 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,042 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,043 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,043 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,044 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,044 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,045 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,045 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:28,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,046 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:28,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,046 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:28,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,047 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:28,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,047 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:28,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,048 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:28,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,048 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:28,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,049 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:28,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,049 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:28,057 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:28,057 [1520] DEBUG index - Prepared sql query parameters : [481,1,Contacts,index,,2013-01-30 12:00:28] +01/30/13 12:00:28,060 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:28,060 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:28,060 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:28,061 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:28,062 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:28,063 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:28,064 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:28,064 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:28,066 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:28,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,067 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:28,067 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:28,067 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:28,067 [1520] DEBUG index - including headers +01/30/13 12:00:28,067 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,068 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,071 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:28,071 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:28,073 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 12:00:28,074 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 12:00:28,074 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,074 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 12:00:28,075 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,075 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 12:00:28,075 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,075 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,076 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 12:00:28,077 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,077 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 12:00:28,077 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:28,077 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 12:00:28,077 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 12:00:28,078 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 12:00:28,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,087 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:00:28,087 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:28,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:28,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,088 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:00:28,088 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 12:00:28,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,089 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:00:28,089 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 12:00:28,089 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:28,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,091 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:00:28,091 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 12:00:28,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,091 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:28,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,092 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:00:28,092 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 12:00:28,092 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,093 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:00:28,093 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:28,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,094 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:00:28,094 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:28,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 12:00:28,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,095 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:00:28,095 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 12:00:28,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,095 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:28,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,096 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:00:28,096 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:28,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:28,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,097 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:00:28,097 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:28,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:28,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,098 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:00:28,098 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:28,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,099 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:28,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,099 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:00:28,100 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 12:00:28,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:28,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,101 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:00:28,101 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:28,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:28,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,102 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:28,102 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:00:28,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,102 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:28,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,103 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:00:28,103 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 12:00:28,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,103 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:28,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,104 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:00:28,104 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 12:00:28,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,105 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:28,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,105 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:28,106 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 12:00:28,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:28,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,107 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:00:28,107 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 12:00:28,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:28,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,108 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:00:28,108 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 12:00:28,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,108 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 12:00:28) method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 12:00:28) method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,109 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,110 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,110 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 12:00:28,110 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 12:00:28,111 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 12:00:28,114 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,114 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,114 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,114 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,115 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,118 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,123 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 12:00:28,127 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:00:28,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,128 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:00:28,128 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:28,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,131 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,131 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,131 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,131 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,132 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:28,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,133 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:28,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,133 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:28,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,134 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,135 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,136 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:00:28,137 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,137 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:00:28,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,137 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 12:00:28,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,138 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 12:00:28,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,138 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 12:00:28,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,139 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:28,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,139 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 12:00:28,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,140 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 12:00:28,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,141 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:28,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,141 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 12:00:28,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,142 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:28,142 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:28,142 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:28,146 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:28,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,146 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 12:00:28,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,147 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 12:00:28,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,147 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 12:00:28,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,148 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 12:00:28,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,148 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:28,149 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 12:00:28,151 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 12:00:28,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,151 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 12:00:28,151 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 12:00:28,154 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 12:00:28,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,161 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,162 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:00:28,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:28,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,162 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:00:28,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,163 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,163 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:28,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,163 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:00:28,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:28,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,164 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:28,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:28,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,164 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:28,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:00:28,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,165 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:00:28,165 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:28,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,165 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:00:28,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 12:00:28,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,166 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 12:00:28,167 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:00:28,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,168 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:00:28,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 12:00:28,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,168 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 12:00:28,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 12:00:28,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,169 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 12:00:28,169 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 12:00:28,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,170 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 12:00:28,170 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:00:28,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,170 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:00:28,171 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:28,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,171 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 12:00:28,171 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 12:00:28,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,171 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 12:00:28,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 12:00:28,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,172 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 12:00:28,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 12:00:28,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,173 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 12:00:28,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:28,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,173 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:28,173 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:28,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,173 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 12:00:28,173 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:28,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,173 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:00:28,174 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:28,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,174 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:00:28,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:28,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,174 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:00:28,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:00:28,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,175 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:00:28,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:28,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,175 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:28,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:28,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,175 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:00:28,176 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:00:28,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,176 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:00:28,176 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:28,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,176 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:00:28,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:28,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,177 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:00:28,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:28,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,178 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:28,178 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:28,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,178 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:28,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:28,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,179 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:00:28,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,180 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 12:00:28,180 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 12:00:28,180 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,184 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,185 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,185 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,186 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,186 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 12:00:28,186 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,186 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,187 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 12:00:28,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,187 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 12:00:28,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,188 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 12:00:28,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,188 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:00:28,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,188 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 12:00:28,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,189 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:28,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,190 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 12:00:28,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,190 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 12:00:28,190 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,190 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,190 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,191 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,191 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:28,191 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:28,201 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,202 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,202 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 12:00:28,202 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,202 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:00:28,202 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 12:00:28,206 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:00:28,206 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,207 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,207 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:00:28,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,208 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 12:00:28,208 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 12:00:28,208 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 12:00:28,208 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 12:00:28,208 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:00:28,208 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 12:00:28,209 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:28,209 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:28,209 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 12:00:28,209 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 12:00:28,212 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:28,212 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:28,214 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:28,214 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:28,216 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:28,216 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 12:00:28,217 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 12:00:28,219 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 12:00:28,219 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:28,219 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:28,219 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 12:00:28,221 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:28,221 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:28,221 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:28,221 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:28,221 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:28,222 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:28,222 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 12:00:28,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,222 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:28,224 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,224 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,224 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,224 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,225 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,225 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,226 [1520] DEBUG index - Entering isPermittedCustomView(7,index,Contacts) method.... +01/30/13 12:00:28,226 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 12:00:28,226 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:28,227 [1520] DEBUG index - Entering when status=0 +01/30/13 12:00:28,227 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 12:00:28,228 [1520] DEBUG index - Exiting isPermittedCustomView(7,index,Contacts) method.... +01/30/13 12:00:28,228 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,228 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 12:00:28,228 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:28,232 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,232 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,232 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 12:00:28,232 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:28,234 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 12:00:28,234 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 12:00:28,236 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 12:00:28,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,237 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 12:00:28,237 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 12:00:28,237 [1520] DEBUG index - Entering isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 12:00:28,237 [1520] DEBUG index - Entering when status=0 +01/30/13 12:00:28,237 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 12:00:28,238 [1520] DEBUG index - Exiting isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 12:00:28,238 [1520] DEBUG index - Entering isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 12:00:28,238 [1520] DEBUG index - Entering when status=0 +01/30/13 12:00:28,238 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 12:00:28,238 [1520] DEBUG index - Exiting isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 12:00:28,238 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,238 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:00:28,239 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:28,240 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,241 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:00:28,241 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:28,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,244 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,245 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 12:00:28,245 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:28,250 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 12:00:28,250 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 12:00:28,271 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 12:00:28,275 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:00:28,275 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 12:00:28,278 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:28,278 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,279 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,280 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,282 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,283 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,284 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:28,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:28,286 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 12:00:28,290 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:28,290 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,290 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 12:00:28,294 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:00:28,294 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:00:28,341 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,341 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 12:00:28,343 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,343 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 12:00:28,345 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,345 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 12:00:28,347 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,347 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 12:00:28,350 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:00:28,350 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 12:00:28,397 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,397 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 12:00:28,399 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,400 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 12:00:28,403 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,403 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 12:00:28,406 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,406 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 12:00:28,408 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,408 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 12:00:28,410 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,410 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 12:00:28,412 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,413 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 12:00:28,415 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,415 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 12:00:28,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,417 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 12:00:28,420 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:00:28,420 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:28,452 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,453 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 12:00:28,455 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,455 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 12:00:28,457 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,458 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 12:00:28,460 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,460 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 12:00:28,462 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 12:00:28,462 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:28,464 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,465 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 12:00:28,466 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,467 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 12:00:28,470 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:00:28,470 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:00:28,502 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,502 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 12:00:28,504 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,505 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 12:00:28,507 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,507 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 12:00:28,509 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,509 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 12:00:28,511 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,512 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 12:00:28,514 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,514 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 12:00:28,516 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,516 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 12:00:28,518 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,519 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 12:00:28,521 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,521 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 12:00:28,523 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,524 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 12:00:28,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,526 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 12:00:28,528 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:00:28,528 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 12:00:28,531 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:28,535 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:28,535 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:28,538 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:28,540 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:28,540 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,540 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:28,540 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:28,540 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,540 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:00:28,541 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:28,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,541 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:00:28,541 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:28,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,541 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:00:28,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:00:28,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,542 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:00:28,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:00:28,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,542 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 12:00:28,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:28,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,543 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:00:28,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:28,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,543 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 12:00:28,543 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:00:28,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,543 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:00:28,543 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:00:28,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,544 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 12:00:28,544 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:28,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,544 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:28,544 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:28,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,544 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 12:00:28,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:28,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,545 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:28,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:28,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,545 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 12:00:28,545 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:28,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,545 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:00:28,545 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:28,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,545 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:00:28,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,546 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:00:28,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,546 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:00:28,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:28,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,546 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:00:28,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:28,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,547 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:00:28,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,547 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,547 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:00:28,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,548 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,548 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:00:28,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:28,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,548 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:00:28,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:28,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,548 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:00:28,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:28,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,549 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:28,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:28,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,549 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:00:28,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:28,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,549 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:28,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:28,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,550 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:00:28,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:00:28,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,550 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:00:28,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:00:28,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,550 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 12:00:28,550 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:28,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,551 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:00:28,551 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:28,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,551 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:00:28,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,551 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 12:00:28,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:28,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,551 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:00:28,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 12:00:28,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,553 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 12:00:28,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 12:00:28,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,553 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 12:00:28,553 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:00:28,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,553 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:00:28,554 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:00:28,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,554 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 12:00:28,554 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:28,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,554 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 12:00:28,554 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:28,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,554 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:28,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:28,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,555 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:28,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:28,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,555 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:00:28,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:28,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,555 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:00:28,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:28,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,555 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:00:28,556 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:28,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,556 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 12:00:28,556 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:28,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,556 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:00:28,556 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:28,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,556 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:00:28,556 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:28,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,557 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:00:28,557 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:28,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,557 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:00:28,557 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:28,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,557 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:00:28,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:28,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,558 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:00:28,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:28,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,558 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:28,558 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:00:28,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,558 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:00:28,558 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:00:28,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,558 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 12:00:28,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,613 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:00:28,613 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:28,616 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,616 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,648 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:00:28,648 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 12:00:28,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:28,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:28,681 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 12:00:28,681 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:28,685 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 12:00:28,685 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:28,687 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 12:00:28,687 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:28,689 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,690 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 12:00:28,692 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 12:00:28,693 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 12:00:28,693 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,693 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,694 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:28,694 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:28,708 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,708 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,709 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,709 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:28,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,709 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:00:28,710 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:28,711 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:28,712 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:28,716 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:28,716 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:28,716 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:28,717 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,717 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,717 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:28,717 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,718 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:28,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,718 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:00:28,718 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:28,720 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 12:00:28,720 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:00:28,723 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,723 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,723 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,723 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,723 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,723 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,723 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,724 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,724 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,724 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,725 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,725 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,725 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,725 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,725 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,725 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,725 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,725 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,725 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,726 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,726 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,726 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,726 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,726 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,726 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,726 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,726 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,727 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,727 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,727 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,728 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,728 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,728 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,728 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,728 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,729 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,729 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 +01/30/13 12:00:28,732 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 20 +01/30/13 12:00:28,736 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,736 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,736 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,737 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,738 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,739 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,740 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:00:28,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,740 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:28,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,740 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:28,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,741 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:28,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,741 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:28,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,741 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:28,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,742 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:28,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,742 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:28,742 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,743 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 12:00:28,743 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 12:00:28,744 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:28,744 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 12:00:28,746 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?,?) +01/30/13 12:00:28,746 [1520] DEBUG index - Prepared sql query parameters : [16,8,14,20,18,10,2,,138] +01/30/13 12:00:28,749 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 12:00:28,749 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:28,749 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:28,751 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 12:00:28,751 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,1,1,1] +01/30/13 12:00:28,753 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:00:28,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,754 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:00:28,754 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:28,756 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,756 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,756 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,757 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,757 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,757 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,757 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,758 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,758 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,759 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,759 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,759 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,759 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,760 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,760 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,760 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,760 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,761 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,761 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,761 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,761 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,761 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,762 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,762 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,762 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,763 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,763 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,763 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,764 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,764 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,764 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,765 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,765 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,765 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,765 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,766 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,766 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,766 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,766 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,767 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,767 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,768 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,768 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,768 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,768 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,768 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,769 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,772 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,772 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,772 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,773 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,773 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,773 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,773 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:28,776 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,776 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,776 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,777 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,777 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,777 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,777 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,778 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,778 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,779 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,779 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,780 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,780 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,780 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,780 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,781 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,781 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,781 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,781 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,781 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,782 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,782 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,782 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,782 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,783 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,783 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,783 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,783 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,784 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,785 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,785 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,785 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,785 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,786 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,786 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,786 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,786 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,786 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,787 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,787 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,787 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,788 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,788 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,788 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,789 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,792 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,792 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,792 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,792 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,793 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,793 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,793 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:00:28,795 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,795 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,795 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,796 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,796 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,796 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,796 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,797 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,797 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,798 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,798 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,798 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,799 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,799 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,799 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,799 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,800 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,800 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,800 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,800 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,800 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,801 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,801 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,802 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,802 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,803 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,803 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,803 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,804 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,804 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,804 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,804 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,805 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,805 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,805 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,806 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,806 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,806 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,807 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,808 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,811 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,811 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,811 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,811 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,812 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,812 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,812 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 12:00:28,814 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,814 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,814 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,815 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,815 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,815 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,815 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,816 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,816 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,816 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,816 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,817 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,817 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,818 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,818 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,818 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,818 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,819 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,819 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,819 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,819 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,819 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,820 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,820 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,820 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,820 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,821 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,821 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,821 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,821 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,822 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,822 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,822 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,823 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,823 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,823 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,824 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,824 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,824 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,825 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,825 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,825 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,826 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,826 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,830 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,830 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,830 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,830 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,830 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,830 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,830 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 12:00:28,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,833 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,834 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,834 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,834 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,834 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,835 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,835 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,835 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,835 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,835 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,836 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,836 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,837 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,837 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,837 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,837 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,838 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,838 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,838 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,839 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,839 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,839 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,839 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,840 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,840 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,840 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,841 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,841 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,841 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,842 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,842 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,843 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,843 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,843 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,844 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,844 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,844 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,845 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,845 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,848 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,848 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,849 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,849 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,849 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,849 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,849 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,849 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 12:00:28,851 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,852 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,852 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,852 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,853 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,853 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,853 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,853 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,854 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,854 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,855 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,855 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,855 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,855 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,855 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,857 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,857 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,857 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,858 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,858 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,859 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,859 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,859 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,859 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,860 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,860 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,860 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,860 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,861 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,861 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,861 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,861 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,862 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,862 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,863 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,863 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,863 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,863 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,863 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,863 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,864 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,867 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,867 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,867 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,867 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,868 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,868 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,868 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 12:00:28,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,871 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,872 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,872 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,872 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,873 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,873 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,874 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,874 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,874 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,874 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,875 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,875 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,875 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,876 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,877 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,877 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,877 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,877 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,877 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,878 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,878 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,878 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,879 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,879 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,879 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,879 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,880 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,880 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,880 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,880 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,881 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,881 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,881 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,881 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,882 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,882 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,883 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,883 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,883 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,883 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,883 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,884 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,887 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,887 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,887 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,888 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,888 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,888 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,888 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 12:00:28,890 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,890 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,890 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,891 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,891 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,891 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,891 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,892 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,892 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,892 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,893 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,893 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,893 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,894 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,894 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,894 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,894 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,895 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,895 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,895 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,895 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,895 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,896 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,896 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,896 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,896 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,897 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,897 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,897 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,898 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,898 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,899 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,899 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,899 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,900 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,900 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,901 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,901 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,901 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,902 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,902 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,906 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,906 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,906 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,906 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,906 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,906 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,906 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:28,908 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,909 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,909 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,909 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,910 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,910 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,910 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,910 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,911 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,911 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,911 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,911 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,912 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,912 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,912 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,912 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,912 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,913 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,914 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,914 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,914 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,914 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,915 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,915 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,916 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,916 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,917 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,917 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,917 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,918 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,918 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,918 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,919 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,919 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,920 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,920 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,920 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,921 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,924 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,924 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,924 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,925 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,925 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,925 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,925 [1520] DEBUG index - Prepared sql query parameters : [30] +01/30/13 12:00:28,927 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,927 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,927 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,928 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,928 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,928 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,928 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,929 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,929 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,930 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,930 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,930 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,931 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,931 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,931 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,931 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,931 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,932 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,932 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,933 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,933 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,933 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,934 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,934 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,934 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,935 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,935 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,936 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,936 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,937 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,937 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,937 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,938 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,938 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,939 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,939 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,939 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,939 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,939 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,939 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,940 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,943 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,943 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,944 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,944 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,944 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,944 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,944 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 12:00:28,946 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,946 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,947 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,948 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,948 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,948 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,949 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,949 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,949 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,949 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,950 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,950 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,950 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,950 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,950 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,951 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,951 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,952 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,952 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,952 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,952 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,953 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,953 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,953 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,954 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,954 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,954 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,955 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,955 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,955 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,955 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,956 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,956 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,956 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,956 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,956 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,957 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,957 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,958 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,958 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,958 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,958 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,958 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,959 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,962 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,962 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,962 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,962 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,963 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,963 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,963 [1520] DEBUG index - Prepared sql query parameters : [130] +01/30/13 12:00:28,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,965 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,966 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,966 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,966 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,966 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,967 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,967 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,968 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,968 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,968 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,969 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,969 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,969 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,969 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,969 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,970 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,970 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,970 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,970 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,971 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,971 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,971 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,971 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,972 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,972 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,972 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,972 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,973 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,973 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,974 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,974 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,974 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,974 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,975 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,975 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,975 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,976 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,976 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,976 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,977 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,977 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,977 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,978 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,981 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:28,981 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:28,981 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:28,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:28,981 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:28,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,982 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:28,982 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:28,982 [1520] DEBUG index - Prepared sql query parameters : [132] +01/30/13 12:00:28,984 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,984 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,984 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,985 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,985 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,985 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,985 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,986 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,986 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,986 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,987 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,987 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,987 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,988 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:28,988 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,988 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,988 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,989 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:28,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,989 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:28,989 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,989 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,989 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,990 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,990 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,990 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,990 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,991 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,992 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,992 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,992 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,992 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,993 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,993 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,993 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,994 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,995 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:28,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:28,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:28,996 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:00:28,996 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:00:28,996 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:28,996 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:28,996 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:28,996 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:28,997 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:29,000 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:29,000 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:29,000 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:29,000 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:29,001 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:29,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,001 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:00:29,001 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:00:29,001 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 12:00:29,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,004 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:00:29,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,004 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:29,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,004 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:29,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,004 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:29,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,005 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:29,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,005 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:29,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,005 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:29,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,005 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:29,006 [1520] DEBUG index - Entering AlphabeticalSearch(Contacts,index,lastname,true,basic,,,,,7,) method ... +01/30/13 12:00:29,006 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 12:00:29,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,006 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 12:00:29,006 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,006 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,008 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,009 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:29,009 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,009 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,011 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,011 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:00:29,011 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,011 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,013 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,013 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:29,013 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,014 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,015 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,015 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:29,015 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,015 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,017 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,018 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:00:29,018 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,018 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,019 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,019 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:29,019 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,020 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,021 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,021 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:00:29,021 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,021 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,023 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,024 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:00:29,024 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,024 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,025 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,026 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:00:29,026 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,026 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,028 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,028 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:29,028 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,028 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,029 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,030 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:00:29,030 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,030 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,031 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,031 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:00:29,032 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,032 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,033 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,033 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:00:29,033 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,033 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,035 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,035 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:29,035 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,035 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,037 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,037 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:00:29,038 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,038 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,040 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,040 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:00:29,040 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,040 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,042 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,042 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:00:29,042 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,042 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,044 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,044 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:00:29,044 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,044 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,046 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,046 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:00:29,046 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,046 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,048 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,048 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:00:29,049 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,049 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,050 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,050 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:29,051 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,051 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,052 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,052 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:00:29,052 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,052 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,054 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,054 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:00:29,054 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,054 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,056 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,056 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 12:00:29,056 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,056 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,058 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,058 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 12:00:29,058 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,058 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,059 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,060 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:00:29,060 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,060 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,061 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:29,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,061 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 12:00:29,061 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,061 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:29,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,063 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:29,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,063 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:00:29,063 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,063 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:29,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,065 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:29,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,066 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:00:29,066 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,066 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:29,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,067 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:29,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,068 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:00:29,068 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,068 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,069 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,070 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:00:29,070 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,070 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,071 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,072 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:00:29,072 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,072 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,075 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,075 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:00:29,075 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,075 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,077 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,077 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:00:29,077 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,078 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,079 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,079 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:00:29,080 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,080 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,081 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,081 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:00:29,081 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,081 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,083 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,083 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:00:29,083 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,083 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,085 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,085 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:00:29,085 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,085 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,087 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,087 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:00:29,087 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,087 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,091 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,091 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:00:29,091 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,091 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,094 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,094 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:00:29,094 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,094 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:29,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,096 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:29,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,096 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:00:29,096 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:00:29,096 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:00:29,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,098 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 12:00:29,098 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 12:00:29,098 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 12:00:29,098 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:29,099 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:29,099 [1520] DEBUG index - Entering getFieldsResultForMerge(4) method ... +01/30/13 12:00:29,099 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND fieldname NOT IN (?,?) AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 12:00:29,099 [1520] DEBUG index - Prepared sql query parameters : [4,portal,imagename,4,70,69,4] +01/30/13 12:00:29,101 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 12:00:29,102 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 12:00:29,102 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 12:00:29,102 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:29,104 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 12:00:29,104 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 12:00:29,104 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 12:00:29,104 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:29,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:29,104 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 12:00:29,104 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 12:00:29,116 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 12:00:29,116 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 12:00:29,116 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,121 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 12:00:29,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,121 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:29,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,122 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:29,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,122 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:29,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,122 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:00:29,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,122 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:29,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,123 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:00:29,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,123 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:00:29,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,123 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:00:29,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,124 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:29,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,124 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:00:29,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,124 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:00:29,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,124 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:00:29,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,125 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:29,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,125 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:00:29,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,125 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:00:29,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,126 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:00:29,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,126 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:00:29,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,126 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:00:29,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,127 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:00:29,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,127 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:29,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,127 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:00:29,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,127 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:00:29,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,128 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:00:29,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,128 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:00:29,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,128 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:00:29,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,129 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:00:29,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,129 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:00:29,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,129 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:00:29,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,129 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:00:29,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,130 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:00:29,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,130 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:00:29,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,131 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:00:29,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,131 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:00:29,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,131 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:00:29,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,131 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:00:29,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,132 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:00:29,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,132 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:00:29,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,132 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:00:29,133 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:29,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:29,133 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 12:00:29,133 [1520] DEBUG index - Prepared sql query parameters : [4,1] +01/30/13 12:00:29,135 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 12:00:29,135 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 12:00:29,135 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 12:00:29,135 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 12:00:29,135 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 12:00:29,135 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 12:00:29,135 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:29,141 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:29,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:29,141 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 12:00:29,141 [1520] DEBUG index - Prepared sql query parameters : [4,LISTVIEWBASIC,LISTVIEW] +01/30/13 12:00:29,144 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:00:29,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:29,144 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 12:00:29,144 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 12:00:29,145 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:29,146 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 12:00:29,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:29,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:29,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,150 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,150 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 12:00:29,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,151 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 12:00:29,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,151 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,151 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,152 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,152 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,152 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,152 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,153 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,153 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,156 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 12:00:29,157 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 12:00:29,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,157 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 12:00:29,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,157 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 12:00:29,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,157 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 12:00:29,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,158 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 12:00:29,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,158 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 12:00:29,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,159 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 12:00:29,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,159 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 12:00:29,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,159 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 12:00:29,163 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:29,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:29,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,164 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 12:00:29,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,164 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,164 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:29,172 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:29,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:29,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,172 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 12:00:29,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:29,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:29,173 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 12:00:29,174 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 12:00:29,174 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:29,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,118 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:34,238 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:34,238 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:34,239 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:34,239 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:34,239 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'lastname', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 12:00:34,239 [1520] INFO index - About to take action TooltipAjax +01/30/13 12:00:34,240 [1520] DEBUG index - in TooltipAjax +01/30/13 12:00:34,240 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 12:00:34,240 [1520] INFO index - current module is Tooltip +01/30/13 12:00:34,282 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:34,282 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:34,282 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:34,282 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,283 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,283 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:34,283 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:34,291 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,292 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,292 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:34,292 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:34,292 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:34,293 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:34,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,293 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:34,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,294 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:34,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,294 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:34,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,295 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:34,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,295 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:34,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,296 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:34,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,296 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:34,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,297 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:34,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,297 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:34,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,298 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:34,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,298 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:34,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,299 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:34,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,299 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:34,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,300 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:34,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,300 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:34,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,301 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:34,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,301 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:34,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,302 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:34,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,302 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:34,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,303 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:34,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,303 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:34,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,304 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:34,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,304 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:34,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,305 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:34,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,305 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:34,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,306 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:34,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,306 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:34,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,307 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:34,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,307 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:34,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,308 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:34,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,308 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:34,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,309 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:34,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,309 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:34,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,310 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:34,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,310 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:34,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,311 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:34,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,311 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:34,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,312 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:34,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,312 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:34,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,313 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:34,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,313 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:34,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,314 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:34,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,314 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:34,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,315 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:34,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,315 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:34,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,316 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:34,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,316 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:34,320 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:34,320 [1520] DEBUG index - Prepared sql query parameters : [482,1,Tooltip,TooltipAjax,,2013-01-30 12:00:34] +01/30/13 12:00:34,324 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:34,324 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:34,324 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:34,324 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:34,326 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:34,326 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:34,328 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:34,328 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:34,329 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:34,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 12:00:34,330 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 12:00:34,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,330 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:34,331 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:34,331 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:34,331 [1520] DEBUG index - skipping headers +01/30/13 12:00:34,332 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 12:00:34,332 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,338 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:34,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,338 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 12:00:34,338 [1520] DEBUG index - Prepared sql query parameters : [4,lastname] +01/30/13 12:00:34,342 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 12:00:34,342 [1520] DEBUG index - Prepared sql query parameters : [70] +01/30/13 12:00:34,663 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:00:34,783 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:00:34,784 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:00:34,784 [1520] DEBUG index - ****Starting for new session +01/30/13 12:00:34,785 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:00:34,785 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '22', +) +01/30/13 12:00:34,785 [1520] INFO index - About to take action DetailView +01/30/13 12:00:34,785 [1520] DEBUG index - in DetailView +01/30/13 12:00:34,785 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 12:00:34,785 [1520] INFO index - current module is Contacts +01/30/13 12:00:34,827 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:00:34,827 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:00:34,828 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:00:34,828 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,828 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,828 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:34,829 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:00:34,839 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:00:34,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,840 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:34,840 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:00:34,840 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:00:34,841 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:00:34,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,841 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:00:34,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,842 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:00:34,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,842 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:34,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,843 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:00:34,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,843 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:00:34,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,844 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:00:34,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,844 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:34,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,845 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:00:34,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,845 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:00:34,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,846 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:00:34,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,846 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:00:34,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,847 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:00:34,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,847 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:00:34,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,848 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:00:34,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,848 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:00:34,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,849 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:00:34,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,849 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:00:34,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,850 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:00:34,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,850 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:00:34,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,851 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:00:34,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,851 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,852 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:00:34,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,853 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:00:34,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,853 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:00:34,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,854 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:00:34,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,854 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:00:34,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,855 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:00:34,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,855 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:00:34,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,856 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:00:34,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,856 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:00:34,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,857 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:00:34,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,857 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:00:34,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,858 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:00:34,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,858 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:00:34,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,859 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:00:34,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,859 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:00:34,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,860 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:00:34,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,860 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:00:34,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,861 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:00:34,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,861 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:00:34,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,862 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:00:34,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,862 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:00:34,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,863 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:00:34,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,863 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:00:34,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:34,864 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:00:34,869 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:00:34,869 [1520] DEBUG index - Prepared sql query parameters : [483,1,Contacts,DetailView,22,2013-01-30 12:00:34] +01/30/13 12:00:34,872 [1520] DEBUG index - Current user is: admin +01/30/13 12:00:34,872 [1520] DEBUG index - Current theme is: softed +01/30/13 12:00:34,872 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:00:34,872 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:00:34,874 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:00:34,874 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:00:34,876 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:00:34,876 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:00:34,877 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:00:34,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:34,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,878 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:34,878 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:34,878 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:34,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,879 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:34,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,879 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:34,879 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:34,889 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:34,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,889 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:34,889 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 12:00:34,890 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 12:00:34,890 [1520] DEBUG index - Prepared sql query parameters : [1,22] +01/30/13 12:00:34,893 [1520] INFO index - in track view method Contacts +01/30/13 12:00:34,893 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:34,893 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:34,896 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 12:00:34,896 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:34,897 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 12:00:34,897 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 12:00:34,898 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,22,Mary Smith] +01/30/13 12:00:34,901 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 12:00:34,901 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 12:00:34,903 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 12:00:34,903 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:00:34,903 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:00:34,903 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:00:34,903 [1520] DEBUG index - including headers +01/30/13 12:00:34,903 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:00:34,904 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:00:34,907 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:34,907 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:34,909 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 12:00:34,909 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 12:00:34,909 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:34,911 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 12:00:34,911 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 12:00:34,912 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 12:00:34,912 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,913 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 12:00:34,913 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,913 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 12:00:34,913 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,913 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 12:00:34,914 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,914 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 12:00:34,914 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,914 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 12:00:34,915 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,915 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 12:00:34,915 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,915 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 12:00:34,915 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:00:34,916 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 12:00:34,916 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 12:00:34,916 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 12:00:34,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:34,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,928 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:00:34,928 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:34,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:34,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,929 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:00:34,929 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 12:00:34,929 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:34,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,930 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:00:34,930 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 12:00:34,931 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:34,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,932 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:00:34,932 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 12:00:34,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,932 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:34,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,933 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:00:34,933 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 12:00:34,933 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:34,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,934 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:00:34,934 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:34,934 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:34,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,935 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:00:34,935 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:34,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 12:00:34,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,936 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:00:34,936 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 12:00:34,936 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,936 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:34,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,937 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:00:34,937 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:34,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:34,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,938 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:00:34,938 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:34,939 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:34,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,939 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:00:34,939 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:34,940 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,940 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:34,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,940 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:00:34,941 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 12:00:34,941 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:34,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,942 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:00:34,942 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:34,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:34,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,943 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:00:34,943 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:00:34,943 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,944 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:34,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,944 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:00:34,944 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 12:00:34,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,945 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:34,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,945 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:00:34,945 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 12:00:34,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,946 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:34,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,947 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:00:34,947 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 12:00:34,947 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:34,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,948 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:00:34,948 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 12:00:34,948 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:34,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:34,949 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:00:34,949 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 12:00:34,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,949 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 12:00:34) method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 12:00:34) method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:34,950 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:34,952 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 12:00:34,952 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 12:00:34,952 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 12:00:34,957 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,957 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,957 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,958 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,959 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,961 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,963 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,965 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,966 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,967 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,967 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 12:00:34,971 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:00:34,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:00:34,971 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:34,973 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:34,973 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,974 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:00:34,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,975 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:34,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,975 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:00:34,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,976 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,977 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,978 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,979 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:00:34,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,980 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 12:00:34,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,980 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 12:00:34,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,981 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 12:00:34,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,981 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,982 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:34,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,984 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 12:00:34,984 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,984 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:34,984 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:00:34,984 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:34,988 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 12:00:34,988 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,988 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:00:34,989 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,989 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 12:00:34,989 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,989 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 12:00:34,990 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,990 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 12:00:34,990 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:34,990 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:34,991 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 12:00:34,993 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 12:00:34,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:34,993 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 12:00:34,993 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 12:00:34,996 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 12:00:35,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,003 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:00:35,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,003 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:00:35,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:00:35,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,004 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:00:35,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:00:35,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,004 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:00:35,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,004 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:00:35,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,004 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:00:35,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:00:35,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,005 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:35,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:00:35,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,005 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:35,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:00:35,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,006 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:00:35,006 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:00:35,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,006 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:00:35,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 12:00:35,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,007 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 12:00:35,009 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:00:35,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,009 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:00:35,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 12:00:35,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,010 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 12:00:35,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 12:00:35,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,011 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 12:00:35,011 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 12:00:35,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,011 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 12:00:35,011 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:00:35,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,012 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:00:35,012 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:35,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,012 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 12:00:35,012 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 12:00:35,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,012 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 12:00:35,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 12:00:35,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,013 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 12:00:35,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 12:00:35,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,014 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 12:00:35,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:00:35,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,014 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:35,014 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:00:35,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,015 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 12:00:35,015 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:00:35,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,015 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:00:35,015 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:00:35,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,015 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:00:35,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:00:35,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,015 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:00:35,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:00:35,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,016 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:00:35,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:00:35,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,016 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:35,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:00:35,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,017 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:00:35,017 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:00:35,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,018 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:00:35,018 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:00:35,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,018 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:00:35,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:00:35,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,018 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:00:35,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:00:35,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,019 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:35,019 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:00:35,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,020 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:00:35,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:00:35,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,020 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:00:35,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,021 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 12:00:35,021 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 12:00:35,021 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,024 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,024 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,025 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,025 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,025 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 12:00:35,025 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,029 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 12:00:35,029 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,032 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 12:00:35,032 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,035 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 12:00:35,035 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,037 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 12:00:35,037 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,038 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 12:00:35,039 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,040 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,040 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,042 [1520] INFO VT - PearDatabase ->There is no entry for this entity 22 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 12:00:35,042 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 12:00:35,042 [1520] INFO index - Contact detail view +01/30/13 12:00:35,042 [1520] DEBUG index - Entering updateInfo(22) method ... +01/30/13 12:00:35,042 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 12:00:35,042 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,044 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 12:00:35,044 [1520] INFO index - in getOwnerName 1 +01/30/13 12:00:35,044 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 12:00:35,044 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,044 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:35,046 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 12:00:35,046 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:35,048 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 12:00:35,048 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:35,049 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 12:00:35,049 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 12:00:35,049 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:35,050 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 12:00:35,050 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,051 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:35,051 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 12:00:35,051 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 12:00:35,051 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,051 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 12:00:35,051 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:35,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,053 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:35,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,054 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 12:00:35,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,054 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:35,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,054 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:35,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,055 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 12:00:35,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,055 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 12:00:35,055 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 12:00:35,056 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 12:00:35,066 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 12:00:35,067 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 12:00:35,067 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 12:00:35,068 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,069 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:35,069 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 12:00:35,070 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 12:00:35,070 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 12:00:35,070 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 12:00:35,072 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 12:00:35,072 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 12:00:35,072 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 12:00:35,074 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 12:00:35,074 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 12:00:35,076 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 12:00:35,076 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,076 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,076 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,077 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 12:00:35,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,077 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:00:35,077 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,077 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,077 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,078 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 12:00:35,078 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 12:00:35,078 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,084 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:35,084 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 12:00:35,084 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,085 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:35,085 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,085 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,085 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 12:00:35,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,086 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:35,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,086 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,086 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,087 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 12:00:35,087 [1520] DEBUG index - Entering getAccountName(16) method ... +01/30/13 12:00:35,087 [1520] INFO index - in getAccountName 16 +01/30/13 12:00:35,087 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 12:00:35,087 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 12:00:35,089 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 12:00:35,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,090 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:35,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,090 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,090 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,090 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 12:00:35,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,091 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:00:35,091 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,091 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,091 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,092 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 12:00:35,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,092 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:00:35,092 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 12:00:35,093 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 12:00:35,093 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 12:00:35,093 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 12:00:35,093 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 12:00:35,093 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 12:00:35,096 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 483 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #501 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #501 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 12:00:35,097 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,097 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:35,099 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 12:00:35,099 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 12:00:35,099 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 12:00:35,099 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 12:00:35,102 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 12:00:35,102 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 12:00:35,102 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 12:00:35,102 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 12:00:35,106 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 12:00:35,106 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 12:00:35,106 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 12:00:35,106 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 12:00:35,108 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 12:00:35,108 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 12:00:35,119 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 12:00:35,120 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 12:00:35,120 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 12:00:35,120 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 12:00:35,120 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 12:00:35,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,120 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,121 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 12:00:35,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,121 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:00:35,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,121 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,122 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 12:00:35,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,123 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:35,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,123 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,124 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 12:00:35,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,124 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:00:35,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,124 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,125 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 12:00:35,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,126 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:00:35,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,126 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,126 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 12:00:35,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,127 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:00:35,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,127 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,128 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 12:00:35,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,128 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:35,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,129 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,129 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 12:00:35,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,130 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:00:35,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,130 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,130 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 12:00:35,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,131 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:00:35,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,131 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,132 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 12:00:35,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,132 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:00:35,133 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 12:00:35,133 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,133 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:35,135 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 12:00:35,135 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 12:00:35,136 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,137 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,137 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 12:00:35,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,138 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:00:35,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,138 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,139 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 12:00:35,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,139 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:00:35,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,139 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,140 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 12:00:35,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,140 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:00:35,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,141 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,141 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 12:00:35,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,142 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:00:35,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,142 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,143 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 12:00:35,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,143 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:00:35,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,143 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,144 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 12:00:35,144 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 12:00:35,144 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:35,146 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 12:00:35,146 [1520] INFO index - in getOwnerName 1 +01/30/13 12:00:35,146 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 12:00:35,146 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,147 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:35,149 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 12:00:35,149 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:35,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,151 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:35,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,151 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 12:00:35,151 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 12:00:35,152 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 12:00:35,153 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:35,153 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:35,153 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 12:00:35,153 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 12:00:35,155 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,155 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:35,158 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:00:35,158 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:00:35,160 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:35,160 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:35,160 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:35,160 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:35,160 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:35,160 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:35,161 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:00:35,161 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:00:35,161 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 12:00:35,163 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:00:35,163 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:00:35,163 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:00:35,163 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:00:35,163 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:00:35,163 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:00:35,164 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,164 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,164 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,164 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 12:00:35,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,165 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 12:00:35,165 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 12:00:35,165 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:35,165 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 12:00:35,166 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:00:35,166 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,166 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,166 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,166 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 12:00:35,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,167 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:00:35,167 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,167 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,167 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,168 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 12:00:35,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,168 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 12:00:35,168 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,169 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,170 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 12:00:35,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,171 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 12:00:35,171 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,171 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,171 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,171 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 12:00:35,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,172 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:00:35,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,172 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,172 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,173 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 12:00:35,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,173 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:00:35,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,174 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,174 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 12:00:35,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,175 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:00:35,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,175 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,176 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 12:00:35,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,176 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:00:35,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,176 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,177 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 12:00:35,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,177 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:00:35,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,178 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,178 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 12:00:35,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,179 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:00:35,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,179 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,180 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 12:00:35,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,180 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:00:35,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,180 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,181 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 12:00:35,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,182 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:00:35,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,182 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,182 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 12:00:35,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,183 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:00:35,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,183 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,184 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 12:00:35,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,184 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:00:35,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,185 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,185 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 12:00:35,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,186 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:00:35,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,186 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,187 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 12:00:35,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,187 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:00:35,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,188 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,188 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 12:00:35,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,189 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:00:35,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,189 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,189 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 12:00:35,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,190 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:00:35,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,190 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,191 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 12:00:35,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,191 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:00:35,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,192 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,192 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,192 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 12:00:35,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,193 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 12:00:35,193 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 12:00:35,193 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,195 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:00:35,195 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:00:35,195 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 12:00:35,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,196 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:35,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,196 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:00:35,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,197 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:35,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,197 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:00:35,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,197 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:35,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,197 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:00:35,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,198 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 12:00:35,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,198 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 12:00:35,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,198 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 12:00:35,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,198 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 12:00:35,198 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 12:00:35,199 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 12:00:35,199 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 12:00:35,199 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,199 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 12:00:35,199 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 12:00:35,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,200 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,22) method ... +01/30/13 12:00:35,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,200 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:00:35,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,201 [1520] DEBUG index - Entering getEmailParentsList(Contacts,22) method ... +01/30/13 12:00:35,201 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,201 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 12:00:35,201 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 12:00:35,205 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 12:00:35,205 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:00:35,205 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:35,208 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,208 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,208 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,208 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:00:35,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,210 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 12:00:35,211 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:35,216 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,216 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 12:00:35,216 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 12:00:35,237 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:00:35,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,238 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 12:00:35,238 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 12:00:35,238 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:00:35,240 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 12:00:35,240 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:00:35,240 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:00:35,242 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 12:00:35,242 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:00:35,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,242 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 12:00:35,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,243 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 12:00:35,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,243 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 12:00:35,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,244 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:00:35,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,244 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 12:00:35,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,244 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:35,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,245 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 12:00:35,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,245 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 12:00:35,246 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,246 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:35,246 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:35,246 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 12:00:35,246 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,250 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 12:00:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,250 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:00:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,251 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:00:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,251 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:00:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,251 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:00:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,252 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:00:35,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,252 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:00:35,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,252 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:00:35,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,252 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:00:35,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,253 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:00:35,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,253 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:00:35,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,253 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:00:35,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,254 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:00:35,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,254 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:00:35,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,254 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:00:35,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,255 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:00:35,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,255 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:00:35,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,255 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:00:35,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,256 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:00:35,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,256 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:00:35,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,256 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:00:35,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,257 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:00:35,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,257 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:00:35,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,257 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:00:35,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,258 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:00:35,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,258 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 12:00:35,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,259 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:00:35,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,259 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:00:35,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,259 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:00:35,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,260 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:00:35,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,260 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:00:35,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,260 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:00:35,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,261 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:00:35,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,261 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:00:35,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,261 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:00:35,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,262 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:00:35,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,262 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:00:35,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,262 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:00:35,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,263 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:00:35,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,263 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:00:35,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,263 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 12:00:35,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,264 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:00:35,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,264 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 12:00:35,264 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 12:00:35,264 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 12:00:35,264 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 12:00:35,265 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,265 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,266 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 12:00:35,266 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:00:35,269 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:00:35,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,270 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:00:35,270 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:00:35,272 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 12:00:35,272 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,274 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 12:00:35,274 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:35,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,274 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:00:35,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:35,274 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 12:00:35,274 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 12:00:35,274 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:35,275 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,275 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:35,275 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,275 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 12:00:35,275 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 12:00:35,286 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:35,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,286 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:00:35,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,286 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,286 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 12:00:35,287 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:00:35,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,288 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 12:00:35,289 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 12:00:35,289 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 12:00:35,289 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:35,291 [1520] DEBUG index - Entering when status=0 +01/30/13 12:00:35,291 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 12:00:35,291 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 12:00:35,293 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 12:00:35,293 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 12:00:35,22,1] +01/30/13 12:00:35,308 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,308 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,308 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 12:00:35,308 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 12:00:35,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,318 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,318 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 12:00:35,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,318 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 12:00:35,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,319 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,319 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,319 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,320 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,320 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,320 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:00:35,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,321 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 12:00:35,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,321 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 12:00:35,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,322 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:00:35,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,322 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 12:00:35,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,322 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:00:35,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,323 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:00:35,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,323 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:00:35,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,323 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 12:00:35,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,323 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 12:00:35,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,324 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:00:35,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,324 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 12:00:35,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,324 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:00:35,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,325 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:00:35,325 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,325 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:00:35,325 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,325 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 12:00:35,325 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,326 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:00:35,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,326 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 12:00:35,367 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 12:00:35,367 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 12:00:35,396 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 12:00:35,396 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 12:00:35,399 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 12:00:35,399 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 12:00:35,437 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,437 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,437 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,437 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,437 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 12:00:35,438 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:00:35,440 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:35,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,440 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:00:35,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,440 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 12:00:35,441 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,441 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,441 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,441 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,441 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 12:00:35,441 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 12:00:35,445 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 12:00:35,445 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 12:00:35,445 [1520] DEBUG index - in getColumnFields Leads +01/30/13 12:00:35,445 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:35,445 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,445 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:35,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,446 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:35,446 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:00:35,454 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:00:35,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,454 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,454 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 12:00:35,454 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,454 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,454 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 12:00:35,455 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 12:00:35,455 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:35,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,456 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:35,456 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:00:35,465 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:00:35,465 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,465 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,465 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,466 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,466 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,466 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,466 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 12:00:35,466 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 12:00:35,466 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:35,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,466 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:35,467 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,467 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:00:35,467 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 12:00:35,472 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:00:35,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,473 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,474 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,474 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,474 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,474 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,476 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:00:35,476 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:00:35,476 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:00:35,476 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,476 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:00:35,477 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 12:00:35,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:00:35,477 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 12:00:35,477 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:00:35,501 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,502 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 12:00:35,502 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,502 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 12:00:35,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:00:35,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:00:35,503 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 12:00:35,503 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 12:00:35,503 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:00:35,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,132 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:01:07,263 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:01:07,263 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:01:07,263 [1520] DEBUG index - ****Starting for new session +01/30/13 12:01:07,264 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:01:07,264 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'index', +) +01/30/13 12:01:07,264 [1520] INFO index - About to take action index +01/30/13 12:01:07,264 [1520] DEBUG index - in index +01/30/13 12:01:07,264 [1520] INFO index - current page is modules/Contacts/index.php +01/30/13 12:01:07,264 [1520] INFO index - current module is Contacts +01/30/13 12:01:07,305 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:01:07,306 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:01:07,306 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:01:07,306 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:07,306 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,306 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:07,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,307 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:01:07,307 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:01:07,319 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:07,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,319 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:07,319 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:01:07,320 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:01:07,320 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:01:07,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,321 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:01:07,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,321 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:01:07,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,322 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:07,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,322 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:01:07,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,323 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:01:07,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,324 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:01:07,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,324 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:01:07,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,325 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:01:07,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,325 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:01:07,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,326 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:01:07,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,326 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:01:07,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,327 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:01:07,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,327 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:01:07,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,328 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:01:07,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,328 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:01:07,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,329 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:01:07,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,329 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:01:07,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,330 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:01:07,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,330 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:01:07,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,331 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:01:07,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,331 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:01:07,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,332 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:01:07,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,332 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:01:07,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,333 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:01:07,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,333 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:01:07,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,334 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:01:07,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,334 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:01:07,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,335 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:01:07,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,335 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:01:07,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,336 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:01:07,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,336 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:01:07,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,337 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:01:07,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,337 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:01:07,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,338 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:01:07,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,338 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:01:07,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,339 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:01:07,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,339 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:01:07,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,340 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:01:07,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,340 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:01:07,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,341 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:01:07,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,341 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:01:07,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,342 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:01:07,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,342 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:01:07,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,343 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:01:07,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,343 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:01:07,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,344 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:01:07,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,344 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:01:07,349 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 12:01:07,349 [1520] DEBUG index - Prepared sql query parameters : [484,1,Contacts,index,,2013-01-30 12:01:07] +01/30/13 12:01:07,353 [1520] DEBUG index - Current user is: admin +01/30/13 12:01:07,353 [1520] DEBUG index - Current theme is: softed +01/30/13 12:01:07,353 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:01:07,354 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:01:07,355 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:01:07,355 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:01:07,357 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:01:07,357 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:01:07,359 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:01:07,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,360 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:01:07,360 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:01:07,360 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:01:07,360 [1520] DEBUG index - including headers +01/30/13 12:01:07,360 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:07,361 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:07,364 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:01:07,364 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:01:07,366 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 12:01:07,367 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 12:01:07,367 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,367 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 12:01:07,368 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,368 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 12:01:07,368 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,368 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 12:01:07,369 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,369 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 12:01:07,369 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,369 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 12:01:07,369 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,370 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 12:01:07,370 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,370 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 12:01:07,370 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 12:01:07,370 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 12:01:07,371 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 12:01:07,371 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 12:01:07,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:07,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,380 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:01:07,380 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:01:07,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,380 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:01:07,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,381 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:01:07,381 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 12:01:07,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,382 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:01:07,382 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 12:01:07,383 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:01:07,384 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,384 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:01:07,384 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 12:01:07,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,385 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:01:07,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,385 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:01:07,385 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 12:01:07,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,386 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:01:07,386 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:07,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,387 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:01:07,387 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,387 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:01:07,387 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:01:07,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 12:01:07,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,388 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:01:07,388 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 12:01:07,389 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,389 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:01:07,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,389 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:01:07,390 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:01:07,390 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:01:07,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,391 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:01:07,391 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:01:07,391 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:01:07,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,392 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:01:07,392 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:01:07,392 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,392 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:01:07,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,393 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:01:07,393 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 12:01:07,393 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:01:07,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,394 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:01:07,394 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:01:07,395 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:01:07,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,395 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:01:07,395 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 12:01:07,396 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,396 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:01:07,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,396 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:01:07,396 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 12:01:07,397 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,397 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:01:07,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,397 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:01:07,397 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 12:01:07,398 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,398 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:01:07,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,399 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:01:07,399 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 12:01:07,399 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:01:07,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,400 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:01:07,400 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 12:01:07,401 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:01:07,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,401 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:01:07,401 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 12:01:07,402 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,402 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 12:01:07,402 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 12:01:07) method ... +01/30/13 12:01:07,402 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 12:01:07,402 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 12:01:07) method ... +01/30/13 12:01:07,403 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 12:01:07,403 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:07,403 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:07,403 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:07,404 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:07,404 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 12:01:07,404 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 12:01:07,404 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 12:01:07,408 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,408 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,409 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,411 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,413 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,414 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,415 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,416 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,417 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,417 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,417 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,417 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 12:01:07,422 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:01:07,423 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,423 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:01:07,423 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:01:07,426 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,426 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,426 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,427 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:07,427 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,427 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 12:01:07,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,427 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,428 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,429 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,430 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,431 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,432 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 12:01:07,433 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,433 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 12:01:07,433 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,434 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 12:01:07,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,434 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,435 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 12:01:07,436 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,436 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:01:07,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,436 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 12:01:07,437 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,437 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:01:07,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,437 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 12:01:07,437 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,438 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:01:07,438 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 12:01:07,438 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:01:07,442 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 12:01:07,442 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,443 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 12:01:07,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,443 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 12:01:07,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,444 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 12:01:07,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,444 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 12:01:07,445 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,445 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:01:07,445 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 12:01:07,448 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 12:01:07,448 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,448 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 12:01:07,448 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 12:01:07,451 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 12:01:07,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,460 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:07,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,460 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:01:07,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:01:07,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,461 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:01:07,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:07,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,461 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:07,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,461 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:07,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:01:07,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,461 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:01:07,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:01:07,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,462 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:01:07,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:01:07,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,463 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:01:07,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:01:07,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,464 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:01:07,464 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:01:07,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,464 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:01:07,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 12:01:07,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,464 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 12:01:07,466 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:01:07,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,467 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:01:07,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 12:01:07,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,468 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 12:01:07,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 12:01:07,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,468 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 12:01:07,469 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 12:01:07,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,469 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 12:01:07,469 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:01:07,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,470 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:01:07,470 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:01:07,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,470 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 12:01:07,470 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 12:01:07,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,471 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 12:01:07,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 12:01:07,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,471 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 12:01:07,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 12:01:07,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,472 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 12:01:07,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:01:07,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,472 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:01:07,472 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:01:07,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,472 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 12:01:07,473 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:01:07,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,473 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:01:07,473 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:01:07,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,473 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:01:07,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:01:07,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,473 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:01:07,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:01:07,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,474 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:01:07,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:01:07,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,475 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:01:07,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:01:07,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,475 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:01:07,475 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:01:07,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,476 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:01:07,476 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:01:07,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,476 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:01:07,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:01:07,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,476 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:01:07,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:01:07,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,477 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:01:07,477 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:01:07,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,478 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:01:07,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:01:07,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,479 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:01:07,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,479 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 12:01:07,479 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 12:01:07,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,484 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:07,484 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:07,484 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:07,485 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:07,485 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 12:01:07,485 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:07,486 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,486 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 12:01:07,486 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,486 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 12:01:07,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,487 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 12:01:07,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,487 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:01:07,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,488 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 12:01:07,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,488 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:01:07,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,489 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 12:01:07,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,489 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 12:01:07,489 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:07,489 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:07,489 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,490 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,490 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:01:07,490 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:07,501 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,501 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:07,501 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 12:01:07,501 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,502 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,502 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 12:01:07,502 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 12:01:07,505 [1520] DEBUG index - Exiting initSortByField +01/30/13 12:01:07,506 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:07,506 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,506 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 12:01:07,507 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 12:01:07,508 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:01:07,508 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 12:01:07,508 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:01:07,509 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:01:07,509 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 12:01:07,509 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 12:01:07,511 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:01:07,512 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:01:07,514 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:01:07,514 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:01:07,516 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:01:07,516 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 12:01:07,516 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 12:01:07,517 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 12:01:07,517 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 12:01:07,521 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 12:01:07,521 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 12:01:07,521 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 12:01:07,521 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 12:01:07,523 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:01:07,523 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 12:01:07,523 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 12:01:07,523 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 12:01:07,523 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 12:01:07,524 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 12:01:07,524 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 12:01:07,524 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,524 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:01:07,527 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:07,527 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:07,527 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,527 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:07,527 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,528 [1520] DEBUG index - Entering isPermittedCustomView(7,index,Contacts) method.... +01/30/13 12:01:07,528 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 12:01:07,529 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:07,532 [1520] DEBUG index - Entering when status=0 +01/30/13 12:01:07,532 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 12:01:07,532 [1520] DEBUG index - Exiting isPermittedCustomView(7,index,Contacts) method.... +01/30/13 12:01:07,533 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,533 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 12:01:07,533 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:07,536 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,537 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 12:01:07,537 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:07,539 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 12:01:07,539 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 12:01:07,541 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 12:01:07,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,541 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 12:01:07,542 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 12:01:07,542 [1520] DEBUG index - Entering isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 12:01:07,542 [1520] DEBUG index - Entering when status=0 +01/30/13 12:01:07,542 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 12:01:07,542 [1520] DEBUG index - Exiting isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 12:01:07,542 [1520] DEBUG index - Entering isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 12:01:07,542 [1520] DEBUG index - Entering when status=0 +01/30/13 12:01:07,542 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 12:01:07,543 [1520] DEBUG index - Exiting isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 12:01:07,543 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,543 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:01:07,543 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:07,545 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,545 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:01:07,545 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:07,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 12:01:07,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,549 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 12:01:07,549 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:01:07,554 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 12:01:07,555 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 12:01:07,576 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 12:01:07,580 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:01:07,580 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 12:01:07,582 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:01:07,582 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:01:07,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:01:07,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:01:07,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,586 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,587 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:01:07,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:01:07,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:01:07,590 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 12:01:07,594 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 12:01:07,594 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,594 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 12:01:07,598 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:01:07,598 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:01:07,642 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,642 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 12:01:07,645 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,645 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 12:01:07,647 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,647 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 12:01:07,649 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,650 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 12:01:07,652 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:01:07,652 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 12:01:07,700 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,700 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 12:01:07,702 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,702 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 12:01:07,705 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,705 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 12:01:07,707 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,707 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 12:01:07,710 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,710 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 12:01:07,712 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,712 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 12:01:07,715 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,715 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 12:01:07,717 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,717 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 12:01:07,719 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,719 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 12:01:07,722 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:01:07,722 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:01:07,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,755 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 12:01:07,757 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,758 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 12:01:07,760 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,760 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 12:01:07,762 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,762 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 12:01:07,764 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 12:01:07,765 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:01:07,766 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,767 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 12:01:07,769 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,769 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 12:01:07,775 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 12:01:07,775 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:01:07,808 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,808 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 12:01:07,810 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,811 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 12:01:07,813 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,813 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 12:01:07,815 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,815 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 12:01:07,817 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,818 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 12:01:07,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,821 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 12:01:07,823 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,823 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 12:01:07,825 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,826 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 12:01:07,828 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,828 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 12:01:07,830 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,831 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 12:01:07,833 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,833 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 12:01:07,835 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 12:01:07,835 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 12:01:07,838 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:01:07,842 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:01:07,842 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:01:07,845 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:01:07,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:01:07,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,847 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 12:01:07,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 12:01:07,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,847 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 12:01:07,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:01:07,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,848 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 12:01:07,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 12:01:07,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,848 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 12:01:07,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:01:07,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,849 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 12:01:07,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 12:01:07,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,849 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 12:01:07,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:01:07,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,850 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 12:01:07,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 12:01:07,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,850 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 12:01:07,850 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:01:07,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,851 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 12:01:07,851 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 12:01:07,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,851 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 12:01:07,852 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:01:07,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,852 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 12:01:07,852 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 12:01:07,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,852 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 12:01:07,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:01:07,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,853 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 12:01:07,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 12:01:07,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,853 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 12:01:07,854 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:01:07,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,854 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 12:01:07,854 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 12:01:07,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,854 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 12:01:07,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,855 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 12:01:07,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,856 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 12:01:07,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:01:07,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,856 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 12:01:07,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 12:01:07,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,857 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 12:01:07,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:07,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,857 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:07,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:07,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,858 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 12:01:07,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,858 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:07,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:07,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,859 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 12:01:07,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:01:07,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,859 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 12:01:07,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 12:01:07,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,860 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 12:01:07,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:01:07,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,860 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 12:01:07,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 12:01:07,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,861 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 12:01:07,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:01:07,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,861 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 12:01:07,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 12:01:07,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,862 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 12:01:07,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:01:07,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,862 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 12:01:07,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 12:01:07,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,863 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 12:01:07,863 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:01:07,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,863 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 12:01:07,864 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 12:01:07,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,864 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 12:01:07,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,864 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 12:01:07,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:07,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,865 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 12:01:07,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 12:01:07,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,867 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 12:01:07,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 12:01:07,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,868 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 12:01:07,868 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:01:07,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,868 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 12:01:07,869 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 12:01:07,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,869 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 12:01:07,869 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:01:07,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,869 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 12:01:07,870 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 12:01:07,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,870 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 12:01:07,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:01:07,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,870 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 12:01:07,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 12:01:07,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,871 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 12:01:07,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:01:07,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,872 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 12:01:07,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 12:01:07,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,872 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 12:01:07,872 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:01:07,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,872 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 12:01:07,873 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 12:01:07,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,873 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 12:01:07,873 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:01:07,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,873 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 12:01:07,873 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 12:01:07,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,873 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 12:01:07,873 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:01:07,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,873 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 12:01:07,874 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 12:01:07,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,874 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 12:01:07,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:01:07,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,874 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 12:01:07,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 12:01:07,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,874 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 12:01:07,874 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:01:07,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,875 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 12:01:07,875 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 12:01:07,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:07,875 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 12:01:07,875 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,875 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,912 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:01:07,912 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:01:07,914 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,914 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 12:01:07,946 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 12:01:07,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:07,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:07,978 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 12:01:07,979 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:07,982 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 12:01:07,982 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:07,985 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 12:01:07,985 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:07,987 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:07,987 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 12:01:07,990 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 12:01:07,990 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 12:01:07,990 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:07,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,991 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:07,991 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:07,991 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:01:07,991 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:01:08,005 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:08,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,006 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:01:08,007 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:01:08,008 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 12:01:08,009 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:01:08,012 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:01:08,012 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:01:08,012 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:01:08,012 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:08,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,013 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,013 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:01:08,013 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:08,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,014 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:08,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,014 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 12:01:08,014 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:01:08,017 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 12:01:08,017 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 12:01:08,019 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,020 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,020 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,020 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,021 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,021 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,021 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,021 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,022 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,022 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,022 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,022 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,022 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,022 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,022 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,023 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,023 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,023 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,023 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,024 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,024 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,024 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,024 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,024 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,024 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,024 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,025 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,025 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,025 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,025 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,025 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,025 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,025 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,026 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,026 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,026 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 +01/30/13 12:01:08,029 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 20 +01/30/13 12:01:08,033 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,033 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,033 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,034 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,035 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,036 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,037 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:01:08,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,037 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:01:08,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,037 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:01:08,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,037 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:01:08,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,038 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:01:08,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,038 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:01:08,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,038 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:01:08,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,039 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:01:08,039 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,039 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,039 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 12:01:08,040 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 12:01:08,040 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:01:08,040 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 12:01:08,043 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?,?) +01/30/13 12:01:08,043 [1520] DEBUG index - Prepared sql query parameters : [16,8,14,20,18,10,2,,138] +01/30/13 12:01:08,045 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 12:01:08,045 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 12:01:08,045 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 12:01:08,048 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 12:01:08,048 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,1,1,1] +01/30/13 12:01:08,050 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 12:01:08,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,050 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 12:01:08,051 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:01:08,052 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,052 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,053 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,053 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,054 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,054 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,054 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,054 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,055 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,055 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,055 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,055 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,056 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,056 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,056 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,056 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,056 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,057 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,058 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,058 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,058 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,058 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,059 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,059 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,059 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,059 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,060 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,060 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,060 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,060 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,061 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,061 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,061 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,061 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,062 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,062 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,062 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,062 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,063 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,063 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,063 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,064 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,064 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,064 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,064 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,064 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,065 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,068 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,068 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,068 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,069 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,069 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,069 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,069 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 12:01:08,074 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,074 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,074 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,075 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,075 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,075 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,075 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,076 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,076 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,076 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,077 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,077 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,077 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,078 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,078 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,078 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,078 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,079 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,079 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,079 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,079 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,079 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,080 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,080 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,080 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,080 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,081 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,081 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,081 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,082 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,082 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,082 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,083 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,083 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,083 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,083 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,084 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,084 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,084 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,084 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,085 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,085 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,085 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,086 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,086 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,086 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,087 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,090 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,090 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,090 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,090 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,090 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,090 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,091 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 12:01:08,094 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,094 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,094 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,095 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,095 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,095 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,095 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,096 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,096 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,096 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,096 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,097 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,097 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,098 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,098 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,098 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,098 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,099 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,099 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,099 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,099 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,099 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,100 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,100 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,100 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,100 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,101 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,101 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,101 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,101 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,102 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,102 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,102 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,103 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,103 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,103 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,104 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,104 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,104 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,105 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,105 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,105 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,106 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,106 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,106 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,107 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,110 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,110 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,110 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,110 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,111 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,111 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,111 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 12:01:08,113 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,113 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,113 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,114 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,114 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,114 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,114 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,115 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,115 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,115 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,115 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,115 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,116 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,116 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,117 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,117 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,117 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,118 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,118 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,118 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,118 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,118 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,119 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,119 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,119 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,119 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,120 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,120 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,120 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,120 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,121 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,121 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,121 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,121 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,122 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,122 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,123 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,123 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,123 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,124 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,124 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,124 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,125 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,125 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,125 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,125 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,129 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,129 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,129 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,129 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,129 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,130 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 12:01:08,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,132 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,133 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,133 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,133 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,133 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,134 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,134 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,134 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,134 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,134 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,135 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,135 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,136 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,136 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,136 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,136 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,137 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,137 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,137 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,137 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,138 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,138 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,138 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,138 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,139 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,139 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,139 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,139 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,140 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,140 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,140 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,140 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,141 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,141 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,142 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,142 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,142 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,143 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,143 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,143 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,144 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,144 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,147 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,147 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,147 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,148 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,148 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,148 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,148 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 12:01:08,150 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,150 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,150 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,151 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,151 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,151 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,151 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,152 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,152 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,153 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,153 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,153 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,154 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,154 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,154 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,154 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,154 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,155 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,155 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,155 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,155 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,156 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,156 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,156 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,157 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,157 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,157 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,158 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,158 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,158 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,158 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,159 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,159 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,159 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,159 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,160 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,160 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,160 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,160 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,161 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,161 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,161 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,162 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,162 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,162 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,163 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,166 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,166 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,166 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,166 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,167 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,167 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,167 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 12:01:08,169 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,169 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,169 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,170 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,170 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,170 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,170 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,171 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,171 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,171 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,171 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,171 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,172 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,172 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,172 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,173 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,173 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,173 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,174 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,174 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,174 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,174 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,175 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,175 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,175 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,175 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,176 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,176 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,176 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,176 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,177 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,177 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,177 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,177 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,178 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,178 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,179 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,179 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,179 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,179 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,180 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,180 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,180 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,181 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,184 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,184 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,184 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,185 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,185 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,185 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,185 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 12:01:08,187 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,187 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,187 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,188 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,188 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,188 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,189 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,189 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,190 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,190 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,190 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,190 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,191 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,191 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,191 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,191 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,191 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,192 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,192 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,192 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,192 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,193 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,193 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,193 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,194 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,194 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,194 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,195 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,195 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,195 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,195 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,196 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,196 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,196 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,197 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,198 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,198 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,198 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,199 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,199 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,199 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,200 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,203 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,203 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,203 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,203 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,204 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,204 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,204 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:01:08,207 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,207 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,207 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,208 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,208 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,208 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,208 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,209 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,209 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,209 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,210 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,210 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,210 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,211 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,211 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,211 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,211 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,212 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,212 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,212 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,212 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,212 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,213 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,213 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,213 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,213 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,214 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,214 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,214 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,215 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,215 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,215 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,216 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,216 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,216 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,216 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,217 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,217 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,217 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,218 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,218 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,218 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,219 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,219 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,219 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,219 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,219 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,223 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,223 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,223 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,223 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,223 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,224 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,224 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,224 [1520] DEBUG index - Prepared sql query parameters : [30] +01/30/13 12:01:08,226 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,226 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,226 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,227 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,227 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,227 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,227 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,228 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,228 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,228 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,228 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,228 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,229 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,229 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,230 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,230 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,230 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,230 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,231 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,231 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,231 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,231 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,232 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,232 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,232 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,232 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,233 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,233 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,233 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,233 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,234 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,234 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,234 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,234 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,235 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,235 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,236 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,236 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,236 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,237 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,237 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,237 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,238 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,238 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,241 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,241 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,242 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,242 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,242 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,242 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,242 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 12:01:08,245 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,245 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,245 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,246 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,246 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,246 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,246 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,247 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,247 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,247 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,247 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,247 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,248 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,248 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,248 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,249 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,249 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,249 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,250 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,250 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,250 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,250 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,251 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,251 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,251 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,251 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,252 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,252 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,252 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,252 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,253 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,253 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,253 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,253 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,254 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,254 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,255 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,255 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,255 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,255 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,256 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,256 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,256 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,257 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,260 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,260 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,260 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,261 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,261 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,261 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,261 [1520] DEBUG index - Prepared sql query parameters : [130] +01/30/13 12:01:08,263 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,263 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,264 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,264 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,264 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,265 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,265 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,265 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,266 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,266 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,266 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,266 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,267 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,267 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,267 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,267 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,267 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,268 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,268 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,268 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,268 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,269 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,269 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,269 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,269 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,270 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,270 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,270 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,271 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,271 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,272 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,272 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,272 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,272 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,273 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,273 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,273 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,273 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,274 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,274 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,274 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,275 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,275 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,275 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,275 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,276 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,279 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,279 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,279 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,279 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,279 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,279 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,280 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,280 [1520] DEBUG index - Prepared sql query parameters : [132] +01/30/13 12:01:08,282 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,282 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,282 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,282 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,283 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,283 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,283 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,284 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,284 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,284 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,284 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,284 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,285 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,285 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,285 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,285 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,286 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,286 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 12:01:08,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,287 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 12:01:08,287 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,287 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,287 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,288 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,288 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,288 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,288 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,289 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,289 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,289 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,289 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,290 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,290 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,290 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,290 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,291 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,291 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 12:01:08,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,291 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,291 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,292 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,292 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,292 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,293 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 12:01:08,293 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 12:01:08,293 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,293 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 12:01:08,293 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 12:01:08,293 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 12:01:08,294 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 12:01:08,297 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 12:01:08,297 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 12:01:08,297 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,297 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:08,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,298 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 12:01:08,298 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 12:01:08,298 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 12:01:08,312 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,312 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,312 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:01:08,312 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,313 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:01:08,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,313 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:01:08,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,313 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:01:08,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,314 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:01:08,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,314 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:01:08,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,314 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:01:08,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,314 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:01:08,314 [1520] DEBUG index - Entering AlphabeticalSearch(Contacts,index,lastname,true,basic,,,,,7,) method ... +01/30/13 12:01:08,315 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 12:01:08,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,315 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 12:01:08,315 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,315 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,318 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,318 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:01:08,318 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,318 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,320 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,321 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 12:01:08,321 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,321 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,327 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,327 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:01:08,327 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,327 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,329 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,330 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,330 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:01:08,330 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,330 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,332 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,332 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:01:08,332 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,333 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,334 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,335 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:01:08,335 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,335 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,337 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,337 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:01:08,337 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,337 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,339 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,339 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:01:08,339 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,340 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,341 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,342 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:01:08,342 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,342 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,343 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,343 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:01:08,344 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,344 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,345 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,346 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:01:08,346 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,346 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,347 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,348 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:01:08,348 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,348 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,349 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,349 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:01:08,349 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,350 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,351 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,352 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:01:08,352 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,352 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,353 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,354 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:01:08,354 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,354 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,356 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,356 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:01:08,356 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,356 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,358 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,358 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:01:08,359 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,359 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,361 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,361 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:01:08,361 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,361 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,363 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,363 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:01:08,363 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,364 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,365 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,366 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:01:08,366 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,366 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,367 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,368 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:01:08,368 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,368 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,370 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,370 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:01:08,371 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,371 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,376 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,376 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:01:08,376 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,376 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,379 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,379 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 12:01:08,379 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,379 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,381 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,382 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 12:01:08,382 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,382 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,384 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,384 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,384 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,384 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:01:08,384 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,384 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,386 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 12:01:08,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,386 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 12:01:08,386 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,387 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:01:08,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,389 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:01:08,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,389 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:01:08,389 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,389 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:01:08,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,391 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:01:08,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,391 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:01:08,391 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,391 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 12:01:08,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,393 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 12:01:08,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,393 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:01:08,393 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,393 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,394 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,395 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:01:08,395 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,395 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,397 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,397 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:01:08,397 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,397 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,399 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,399 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:01:08,399 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,400 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,401 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,402 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:01:08,402 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,402 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,403 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,404 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:01:08,404 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,404 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,406 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,406 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:01:08,406 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,406 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,408 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,408 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:01:08,408 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,408 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,411 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,412 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:01:08,412 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,412 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,413 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,413 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:01:08,414 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,414 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,415 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,416 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:01:08,416 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,416 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,417 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,418 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:01:08,418 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,418 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 12:01:08,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,419 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 12:01:08,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,420 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:01:08,420 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 12:01:08,420 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 12:01:08,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,421 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 12:01:08,421 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 12:01:08,422 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 12:01:08,422 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,422 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,422 [1520] DEBUG index - Entering getFieldsResultForMerge(4) method ... +01/30/13 12:01:08,422 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND fieldname NOT IN (?,?) AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 12:01:08,422 [1520] DEBUG index - Prepared sql query parameters : [4,portal,imagename,4,70,69,4] +01/30/13 12:01:08,425 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 12:01:08,425 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 12:01:08,425 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 12:01:08,425 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 12:01:08,427 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 12:01:08,427 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 12:01:08,427 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 12:01:08,427 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,427 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 12:01:08,427 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 12:01:08,439 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 12:01:08,439 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 12:01:08,439 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,443 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 12:01:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,443 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 12:01:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,443 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 12:01:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,444 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 12:01:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,444 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 12:01:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,444 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 12:01:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,444 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 12:01:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,445 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 12:01:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,445 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 12:01:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,445 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 12:01:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,446 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 12:01:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,446 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 12:01:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,446 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 12:01:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,447 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 12:01:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,447 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 12:01:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,447 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 12:01:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,447 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 12:01:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,448 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 12:01:08,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,448 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 12:01:08,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,448 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 12:01:08,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,449 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 12:01:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,449 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 12:01:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,449 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 12:01:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,450 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 12:01:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,450 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 12:01:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,450 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 12:01:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,451 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 12:01:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,451 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 12:01:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,451 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 12:01:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,451 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 12:01:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,452 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 12:01:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,452 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 12:01:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,452 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 12:01:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,453 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 12:01:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,453 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 12:01:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,453 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 12:01:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,453 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 12:01:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,454 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 12:01:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,454 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 12:01:08,454 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,454 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 12:01:08,454 [1520] DEBUG index - Prepared sql query parameters : [4,1] +01/30/13 12:01:08,457 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 12:01:08,457 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 12:01:08,457 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 12:01:08,457 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 12:01:08,457 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 12:01:08,457 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 12:01:08,457 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 12:01:08,463 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 12:01:08,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:08,463 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 12:01:08,463 [1520] DEBUG index - Prepared sql query parameters : [4,LISTVIEWBASIC,LISTVIEW] +01/30/13 12:01:08,465 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 12:01:08,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:08,466 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 12:01:08,466 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 12:01:08,466 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 12:01:08,468 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 12:01:08,468 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 12:01:08,468 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 12:01:08,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,472 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,472 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 12:01:08,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,472 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 12:01:08,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,473 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,473 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,473 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,473 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,474 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,474 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,474 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,475 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,478 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 12:01:08,478 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 12:01:08,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,478 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 12:01:08,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,478 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 12:01:08,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,479 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 12:01:08,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,479 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 12:01:08,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,480 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 12:01:08,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,480 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 12:01:08,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,480 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 12:01:08,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,480 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 12:01:08,483 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:08,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:08,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,484 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 12:01:08,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,484 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,484 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 12:01:08,500 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:08,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:08,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,500 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 12:01:08,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 12:01:08,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:08,500 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 12:01:08,501 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 12:01:08,501 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:01:08,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:10,696 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:01:10,817 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:01:10,817 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:01:10,818 [1520] DEBUG index - ****Starting for new session +01/30/13 12:01:10,818 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:01:10,818 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:01:10,818 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:01:10,818 [1520] DEBUG index - in CalendarAjax +01/30/13 12:01:10,819 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:01:10,819 [1520] INFO index - current module is Calendar +01/30/13 12:01:10,860 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:01:10,860 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:01:10,861 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:01:10,861 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:10,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:10,861 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:10,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:10,861 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:01:10,862 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:01:10,872 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:10,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:10,872 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:10,873 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:01:10,873 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:01:10,873 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:01:10,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,874 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:01:10,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,874 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:01:10,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,875 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:10,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,875 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:01:10,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,876 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:01:10,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,876 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:01:10,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,877 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:01:10,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,877 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:01:10,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,878 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:01:10,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,878 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:01:10,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,879 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:01:10,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,879 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:01:10,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,880 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:01:10,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,880 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:01:10,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,881 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:01:10,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,881 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:01:10,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,882 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:01:10,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,883 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:01:10,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,883 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:01:10,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,884 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:01:10,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,884 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:01:10,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,884 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:01:10,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,885 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:01:10,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,885 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:01:10,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,886 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:01:10,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,886 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:01:10,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,887 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:01:10,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,887 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:01:10,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,888 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:01:10,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,888 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:01:10,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,889 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:01:10,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,889 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:01:10,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,890 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:01:10,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,890 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:01:10,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,891 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:01:10,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,891 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:01:10,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,892 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:01:10,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,892 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:01:10,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,893 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:01:10,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,893 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:01:10,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,894 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:01:10,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,894 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:01:10,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,895 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:01:10,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,895 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:01:10,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,896 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:01:10,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,896 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:01:10,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:10,897 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:01:10,897 [1520] DEBUG index - Current user is: admin +01/30/13 12:01:10,897 [1520] DEBUG index - Current theme is: softed +01/30/13 12:01:10,897 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:01:10,897 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:01:10,899 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:01:10,899 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:01:10,901 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:01:10,901 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:01:10,903 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:01:10,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:10,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:10,904 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:01:10,904 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:01:10,904 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:01:10,904 [1520] DEBUG index - skipping headers +01/30/13 12:01:10,905 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:01:10,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:10,910 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:01:10,910 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:01:10,910 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:01:10,910 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:01:10,914 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:02')) +01/30/13 12:01:10,917 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 12:01:51,048 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:01:51,168 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:01:51,168 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:01:51,169 [1520] DEBUG index - ****Starting for new session +01/30/13 12:01:51,169 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:01:51,169 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:01:51,169 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:01:51,169 [1520] DEBUG index - in CalendarAjax +01/30/13 12:01:51,170 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:01:51,170 [1520] INFO index - current module is Calendar +01/30/13 12:01:51,211 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:01:51,211 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:01:51,211 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:01:51,211 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:51,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:51,212 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:51,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:51,212 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:01:51,212 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:01:51,221 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:01:51,221 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:01:51,221 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:01:51,221 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:01:51,221 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:01:51,222 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:01:51,222 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,222 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:01:51,223 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,223 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:01:51,223 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,223 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:01:51,224 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,224 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:01:51,224 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,224 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:01:51,225 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,225 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:01:51,225 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,225 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:01:51,226 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,226 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:01:51,226 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,226 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:01:51,227 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,227 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:01:51,227 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,227 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:01:51,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,228 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:01:51,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,228 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:01:51,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,229 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:01:51,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,229 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:01:51,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,230 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:01:51,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,230 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:01:51,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,231 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:01:51,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,231 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:01:51,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,232 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:01:51,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,232 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:01:51,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,233 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:01:51,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,233 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:01:51,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,234 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:01:51,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,234 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:01:51,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,234 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:01:51,235 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,235 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:01:51,235 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,235 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:01:51,236 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,236 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:01:51,236 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,237 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:01:51,237 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,237 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:01:51,238 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,238 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:01:51,238 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,238 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:01:51,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,239 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:01:51,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,239 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:01:51,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,240 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:01:51,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,240 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:01:51,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,241 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:01:51,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,241 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:01:51,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,242 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:01:51,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,242 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:01:51,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,243 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:01:51,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,243 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:01:51,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,244 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:01:51,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,244 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:01:51,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,245 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:01:51,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:01:51,245 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:01:51,246 [1520] DEBUG index - Current user is: admin +01/30/13 12:01:51,246 [1520] DEBUG index - Current theme is: softed +01/30/13 12:01:51,246 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:01:51,246 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:01:51,248 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:01:51,248 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:01:51,249 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:01:51,250 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:01:51,251 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:01:51,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:01:51,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:01:51,252 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:01:51,252 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:01:51,252 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:01:51,252 [1520] DEBUG index - skipping headers +01/30/13 12:01:51,253 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:01:51,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:01:51,258 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:01:51,258 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:01:51,259 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:01:51,259 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:01:51,263 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:02')) +01/30/13 12:01:51,266 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 12:02:31,459 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:02:31,580 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:02:31,580 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:02:31,581 [1520] DEBUG index - ****Starting for new session +01/30/13 12:02:31,581 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:02:31,581 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:02:31,581 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:02:31,581 [1520] DEBUG index - in CalendarAjax +01/30/13 12:02:31,582 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:02:31,582 [1520] INFO index - current module is Calendar +01/30/13 12:02:31,620 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:02:31,621 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:02:31,621 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:02:31,621 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:02:31,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:02:31,621 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:02:31,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:02:31,621 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:02:31,622 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:02:31,630 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:02:31,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:02:31,630 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:02:31,631 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:02:31,631 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:02:31,631 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:02:31,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,632 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:02:31,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,632 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:02:31,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,633 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:02:31,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,633 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:02:31,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,634 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:02:31,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,634 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:02:31,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,635 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:02:31,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,635 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:02:31,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,636 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:02:31,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,637 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:02:31,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,637 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:02:31,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,638 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:02:31,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,638 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:02:31,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,639 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:02:31,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,639 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:02:31,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,639 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:02:31,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,640 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:02:31,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,641 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:02:31,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,641 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:02:31,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,641 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:02:31,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,642 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:02:31,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,642 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:02:31,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,643 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:02:31,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,643 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:02:31,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,644 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:02:31,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,644 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:02:31,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,645 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:02:31,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,645 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:02:31,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,646 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:02:31,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,646 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:02:31,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,647 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:02:31,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,647 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:02:31,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,648 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:02:31,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,648 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:02:31,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,649 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:02:31,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,649 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:02:31,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,650 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:02:31,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,650 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:02:31,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,651 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:02:31,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,651 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:02:31,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,652 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:02:31,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,652 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:02:31,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,653 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:02:31,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,653 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:02:31,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,654 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:02:31,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,654 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:02:31,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:02:31,655 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:02:31,655 [1520] DEBUG index - Current user is: admin +01/30/13 12:02:31,655 [1520] DEBUG index - Current theme is: softed +01/30/13 12:02:31,655 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:02:31,655 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:02:31,657 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:02:31,657 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:02:31,659 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:02:31,659 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:02:31,661 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:02:31,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:02:31,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:02:31,662 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:02:31,662 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:02:31,662 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:02:31,662 [1520] DEBUG index - skipping headers +01/30/13 12:02:31,663 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:02:31,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:02:31,668 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:02:31,668 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:02:31,668 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:02:31,668 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:02:31,672 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:03')) +01/30/13 12:02:31,676 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 12:03:11,769 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:03:12,037 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:03:12,037 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:03:12,037 [1520] DEBUG index - ****Starting for new session +01/30/13 12:03:12,038 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:03:12,038 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:03:12,038 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:03:12,038 [1520] DEBUG index - in CalendarAjax +01/30/13 12:03:12,038 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:03:12,038 [1520] INFO index - current module is Calendar +01/30/13 12:03:12,072 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:03:12,072 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:03:12,072 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:03:12,072 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:12,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:12,073 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:12,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:12,073 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:03:12,073 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:03:12,082 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:12,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:12,082 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:03:12,082 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:03:12,082 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:03:12,083 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:03:12,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,083 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:03:12,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,084 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:03:12,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,084 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:03:12,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,085 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:03:12,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,085 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:03:12,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,086 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:03:12,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,086 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:03:12,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,087 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:03:12,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,087 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:03:12,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,088 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:03:12,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,088 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:03:12,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,089 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:03:12,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,089 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:03:12,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,090 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:03:12,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,091 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:03:12,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,091 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:03:12,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,092 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:03:12,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,092 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:03:12,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,093 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:03:12,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,093 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:03:12,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,094 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:03:12,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,094 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:03:12,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,095 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:03:12,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,095 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:03:12,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,095 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:03:12,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,096 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:03:12,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,096 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:03:12,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,097 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:03:12,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,097 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:03:12,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,098 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:03:12,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,098 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:03:12,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,099 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:03:12,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,099 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:03:12,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,100 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:03:12,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,100 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:03:12,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,101 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:03:12,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,101 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:03:12,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,102 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:03:12,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,102 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:03:12,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,103 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:03:12,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,103 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:03:12,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,104 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:03:12,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,104 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:03:12,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,105 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:03:12,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,105 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:03:12,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,106 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:03:12,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:12,106 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:03:12,106 [1520] DEBUG index - Current user is: admin +01/30/13 12:03:12,107 [1520] DEBUG index - Current theme is: softed +01/30/13 12:03:12,107 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:03:12,107 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:03:12,108 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:03:12,109 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:03:12,110 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:03:12,111 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:03:12,112 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:03:12,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:03:12,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:03:12,113 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:03:12,113 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:03:12,113 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:03:12,113 [1520] DEBUG index - skipping headers +01/30/13 12:03:12,114 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:03:12,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:03:12,119 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:03:12,119 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:03:12,119 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:03:12,119 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:03:12,123 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:04')) +01/30/13 12:03:12,126 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 12:03:52,226 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 12:03:52,344 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 12:03:52,344 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 12:03:52,345 [1520] DEBUG index - ****Starting for new session +01/30/13 12:03:52,345 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 12:03:52,345 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 12:03:52,345 [1520] INFO index - About to take action CalendarAjax +01/30/13 12:03:52,346 [1520] DEBUG index - in CalendarAjax +01/30/13 12:03:52,346 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 12:03:52,346 [1520] INFO index - current module is Calendar +01/30/13 12:03:52,379 [1520] DEBUG user - Entering Users() method ... +01/30/13 12:03:52,379 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 12:03:52,379 [1520] DEBUG index - in getColumnFields Users +01/30/13 12:03:52,379 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:52,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:52,380 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:52,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:52,380 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 12:03:52,380 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 12:03:52,390 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 12:03:52,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 12:03:52,391 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 12:03:52,391 [1520] DEBUG user - Exiting Users() method ... +01/30/13 12:03:52,391 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 12:03:52,392 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 12:03:52,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,392 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 12:03:52,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,393 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 12:03:52,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,393 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 12:03:52,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,394 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 12:03:52,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,394 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 12:03:52,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,395 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 12:03:52,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,395 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 12:03:52,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,396 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 12:03:52,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,396 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 12:03:52,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,397 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 12:03:52,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,397 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 12:03:52,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,398 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 12:03:52,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,398 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 12:03:52,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,399 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 12:03:52,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,399 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 12:03:52,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,400 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 12:03:52,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,400 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 12:03:52,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,401 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 12:03:52,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,401 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 12:03:52,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,402 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 12:03:52,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,402 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 12:03:52,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,403 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 12:03:52,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,403 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 12:03:52,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,404 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 12:03:52,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,404 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 12:03:52,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,405 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 12:03:52,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,405 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 12:03:52,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,406 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 12:03:52,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,406 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 12:03:52,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,407 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 12:03:52,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,407 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 12:03:52,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,408 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 12:03:52,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,408 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 12:03:52,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,409 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 12:03:52,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,409 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 12:03:52,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,410 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 12:03:52,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,410 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 12:03:52,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,411 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 12:03:52,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,411 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 12:03:52,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,412 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 12:03:52,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,412 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 12:03:52,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,413 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 12:03:52,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,413 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 12:03:52,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,414 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 12:03:52,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,414 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 12:03:52,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,415 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 12:03:52,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 12:03:52,415 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 12:03:52,415 [1520] DEBUG index - Current user is: admin +01/30/13 12:03:52,415 [1520] DEBUG index - Current theme is: softed +01/30/13 12:03:52,416 [1520] DEBUG index - current_language is: zh_cn +01/30/13 12:03:52,416 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 12:03:52,417 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 12:03:52,417 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 12:03:52,419 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 12:03:52,419 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 12:03:52,421 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 12:03:52,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 12:03:52,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 12:03:52,422 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 12:03:52,422 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 12:03:52,422 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 12:03:52,422 [1520] DEBUG index - skipping headers +01/30/13 12:03:52,423 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 12:03:52,423 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 12:03:52,428 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 12:03:52,428 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 12:03:52,428 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 12:03:52,428 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 12:03:52,435 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:04')) +01/30/13 12:03:52,438 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 diff --git a/logs/vtigercrm.log.1 b/logs/vtigercrm.log.1 new file mode 100644 index 0000000..4abb7bb --- /dev/null +++ b/logs/vtigercrm.log.1 @@ -0,0 +1,34457 @@ +01/30/13 11:51:04,436 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:51:04,438 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:51:04,438 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:51:04,455 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:51:04,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,456 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:51:04,456 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,457 [1520] DEBUG index - Entering getOutputHtml(11,homephone,Home Phone,100,Array,1,Contacts) method ... +01/30/13 11:51:04,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,458 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:51:04,458 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,458 [1520] DEBUG index - Entering getOutputHtml(1,title,Title,100,Array,1,Contacts) method ... +01/30/13 11:51:04,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,459 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:51:04,459 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,459 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Contacts) method ... +01/30/13 11:51:04,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,460 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:51:04,460 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,460 [1520] DEBUG index - Entering getOutputHtml(1,department,Department,100,Array,1,Contacts) method ... +01/30/13 11:51:04,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,461 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:51:04,461 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,461 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Contacts) method ... +01/30/13 11:51:04,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,462 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:51:04,462 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,463 [1520] DEBUG index - Entering getOutputHtml(13,email,Email,100,Array,1,Contacts) method ... +01/30/13 11:51:04,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,463 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:51:04,463 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,464 [1520] DEBUG index - Entering getOutputHtml(5,birthday,Birthdate,100,Array,1,Contacts) method ... +01/30/13 11:51:04,464 [1520] INFO index - uitype is 5 +01/30/13 11:51:04,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,464 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:51:04,464 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:51:04,464 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:51:04,465 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,465 [1520] DEBUG index - Entering getOutputHtml(1,assistant,Assistant,100,Array,1,Contacts) method ... +01/30/13 11:51:04,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,466 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:51:04,466 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,466 [1520] DEBUG index - Entering getOutputHtml(11,assistantphone,Assistant Phone,100,Array,1,Contacts) method ... +01/30/13 11:51:04,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,467 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:51:04,467 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,467 [1520] DEBUG index - Entering getOutputHtml(13,secondaryemail,Secondary Email,100,Array,1,Contacts) method ... +01/30/13 11:51:04,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,468 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:51:04,468 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,468 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Contacts) method ... +01/30/13 11:51:04,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,469 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:51:04,469 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,469 [1520] DEBUG index - Entering getOutputHtml(56,donotcall,Do Not Call,100,Array,1,Contacts) method ... +01/30/13 11:51:04,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,470 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:51:04,470 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,470 [1520] DEBUG index - Entering getOutputHtml(56,reference,Reference,10,Array,1,Contacts) method ... +01/30/13 11:51:04,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,471 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:51:04,471 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,472 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Contacts) method ... +01/30/13 11:51:04,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,472 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:51:04,472 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:51:04,472 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:51:04,474 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:51:04,474 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:51:04,475 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:51:04,475 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:51:04,475 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:51:04,477 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:51:04,477 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:51:04,480 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:51:04,480 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:51:04,482 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:51:04,482 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:51:04,482 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:51:04,482 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:51:04,482 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:51:04,482 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:51:04,482 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:51:04,483 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:51:04,483 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:51:04,485 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:51:04,485 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:51:04,485 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:51:04,485 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:51:04,485 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:51:04,485 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:51:04,485 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,486 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Contacts) method ... +01/30/13 11:51:04,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,486 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:51:04,486 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,487 [1520] DEBUG index - Entering getOutputHtml(5,support_start_date,Support Start Date,100,Array,1,Contacts) method ... +01/30/13 11:51:04,487 [1520] INFO index - uitype is 5 +01/30/13 11:51:04,487 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,488 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:51:04,488 [1520] INFO index - in getNewDisplayDate +01/30/13 11:51:04,488 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:51:04,488 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:51:04) method ... +01/30/13 11:51:04,488 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:51:04,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,488 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:51:04,488 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:51:04,489 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:51:04,489 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,489 [1520] DEBUG index - Entering getOutputHtml(5,support_end_date,Support End Date,100,Array,1,Contacts) method ... +01/30/13 11:51:04,489 [1520] INFO index - uitype is 5 +01/30/13 11:51:04,490 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:51:04,490 [1520] INFO index - in getNewDisplayDate +01/30/13 11:51:04,490 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:51:04) method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,490 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:51:04,491 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:51:04,491 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:51:04,491 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,491 [1520] DEBUG index - Entering getOutputHtml(21,mailingstreet,Mailing Street,100,Array,1,Contacts) method ... +01/30/13 11:51:04,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,492 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:51:04,492 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,492 [1520] DEBUG index - Entering getOutputHtml(21,otherstreet,Other Street,100,Array,1,Contacts) method ... +01/30/13 11:51:04,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,493 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:51:04,493 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,493 [1520] DEBUG index - Entering getOutputHtml(1,mailingpobox,Mailing Po Box,100,Array,1,Contacts) method ... +01/30/13 11:51:04,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,494 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:51:04,494 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,494 [1520] DEBUG index - Entering getOutputHtml(1,otherpobox,Other Po Box,100,Array,1,Contacts) method ... +01/30/13 11:51:04,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,495 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:51:04,495 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,496 [1520] DEBUG index - Entering getOutputHtml(1,mailingcity,Mailing City,100,Array,1,Contacts) method ... +01/30/13 11:51:04,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,496 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:51:04,496 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,497 [1520] DEBUG index - Entering getOutputHtml(1,othercity,Other City,100,Array,1,Contacts) method ... +01/30/13 11:51:04,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,497 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:51:04,497 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,498 [1520] DEBUG index - Entering getOutputHtml(1,mailingstate,Mailing State,100,Array,1,Contacts) method ... +01/30/13 11:51:04,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,498 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:51:04,498 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,499 [1520] DEBUG index - Entering getOutputHtml(1,otherstate,Other State,100,Array,1,Contacts) method ... +01/30/13 11:51:04,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,499 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:51:04,499 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,500 [1520] DEBUG index - Entering getOutputHtml(1,mailingzip,Mailing Zip,100,Array,1,Contacts) method ... +01/30/13 11:51:04,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,500 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:51:04,501 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,501 [1520] DEBUG index - Entering getOutputHtml(1,otherzip,Other Zip,100,Array,1,Contacts) method ... +01/30/13 11:51:04,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,502 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:51:04,502 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,502 [1520] DEBUG index - Entering getOutputHtml(1,mailingcountry,Mailing Country,100,Array,1,Contacts) method ... +01/30/13 11:51:04,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,503 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:51:04,503 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,503 [1520] DEBUG index - Entering getOutputHtml(1,othercountry,Other Country,100,Array,1,Contacts) method ... +01/30/13 11:51:04,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,504 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:51:04,504 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,504 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Contacts) method ... +01/30/13 11:51:04,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,505 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:51:04,505 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,505 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:51:04,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,505 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:51:04,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,506 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:51:04,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,506 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:51:04,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,506 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:51:04,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,507 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:51:04,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,507 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:51:04,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,507 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:51:04,507 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:51:04,507 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:51:04,507 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:51:04,507 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:51:04,509 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,509 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:51:04,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,509 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:51:04,509 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:51:04,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,513 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:51:04,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,514 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:51:04,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,514 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:51:04,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,514 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:51:04,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,515 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:51:04,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,515 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:51:04,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,515 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:51:04,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,516 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:51:04,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,516 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:51:04,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,516 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:51:04,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,516 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:51:04,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,517 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:51:04,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,517 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:51:04,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,517 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:51:04,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,518 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:51:04,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,518 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:51:04,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,518 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:51:04,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,519 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:51:04,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,519 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:51:04,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,519 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:51:04,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,520 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:51:04,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,520 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:51:04,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,520 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:51:04,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,521 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:51:04,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,521 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:51:04,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,521 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:51:04,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,521 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:51:04,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,522 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:51:04,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,522 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:51:04,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,522 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:51:04,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,523 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:51:04,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,523 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:51:04,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,523 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:51:04,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,524 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:51:04,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,524 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:51:04,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,524 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:51:04,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,524 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:51:04,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,525 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:51:04,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,525 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:51:04,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,525 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:51:04,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,526 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:51:04,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,526 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:51:04,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,526 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:51:04,526 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:51:04,527 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:51:26,823 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:51:26,950 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:51:26,950 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:51:26,950 [1520] DEBUG index - ****Starting for new session +01/30/13 11:51:26,951 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:51:26,951 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'phone', + 'id' => '31', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:51:26,951 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:51:26,951 [1520] DEBUG index - in TooltipAjax +01/30/13 11:51:26,951 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:51:26,952 [1520] INFO index - current module is Tooltip +01/30/13 11:51:26,996 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:51:26,997 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:51:26,997 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:51:26,997 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:26,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:26,997 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:26,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:26,997 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:51:26,998 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:51:27,006 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:27,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:27,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:51:27,006 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:51:27,006 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:51:27,007 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:51:27,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,007 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:51:27,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,008 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:51:27,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,008 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:51:27,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,009 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:51:27,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,009 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:51:27,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,010 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:51:27,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,011 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:51:27,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,011 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:51:27,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,012 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:51:27,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,012 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:51:27,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,013 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:51:27,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,013 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:51:27,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,014 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:51:27,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,014 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:51:27,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,015 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:51:27,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,015 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:51:27,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,016 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:51:27,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,016 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:51:27,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,017 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:51:27,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,017 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:51:27,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,018 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:51:27,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,018 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,019 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:51:27,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,020 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:51:27,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,020 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:51:27,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,021 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:51:27,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,021 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:51:27,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,022 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:51:27,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,022 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:51:27,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,023 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:51:27,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,023 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:51:27,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,024 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:51:27,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,024 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:51:27,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,025 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:51:27,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,025 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:51:27,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,026 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:51:27,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,026 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:51:27,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,027 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:51:27,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,027 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:51:27,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,028 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:51:27,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,028 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:51:27,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,029 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:51:27,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,029 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:51:27,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,030 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:51:27,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:27,030 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:51:27,035 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:51:27,035 [1520] DEBUG index - Prepared sql query parameters : [407,1,Tooltip,TooltipAjax,,2013-01-30 11:51:27] +01/30/13 11:51:27,038 [1520] DEBUG index - Current user is: admin +01/30/13 11:51:27,038 [1520] DEBUG index - Current theme is: softed +01/30/13 11:51:27,039 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:51:27,039 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:51:27,040 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:51:27,041 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:51:27,042 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:51:27,042 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:51:27,044 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:51:27,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:51:27,045 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:51:27,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:27,045 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:51:27,045 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:51:27,045 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:51:27,046 [1520] DEBUG index - skipping headers +01/30/13 11:51:27,047 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:51:27,047 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:51:27,053 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:27,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:27,053 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:51:27,054 [1520] DEBUG index - Prepared sql query parameters : [4,phone] +01/30/13 11:51:27,059 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:51:27,059 [1520] DEBUG index - Prepared sql query parameters : [69] +01/30/13 11:51:32,306 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:51:32,435 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:51:32,436 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:51:32,436 [1520] DEBUG index - ****Starting for new session +01/30/13 11:51:32,436 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:51:32,436 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:51:32,437 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:51:32,437 [1520] DEBUG index - in CalendarAjax +01/30/13 11:51:32,437 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:51:32,437 [1520] INFO index - current module is Calendar +01/30/13 11:51:32,481 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:51:32,481 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:51:32,481 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:51:32,482 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:32,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:32,482 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:32,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:32,482 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:51:32,482 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:51:32,491 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:32,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:32,491 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:51:32,492 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:51:32,492 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:51:32,492 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:51:32,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,493 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:51:32,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,493 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:51:32,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,494 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:51:32,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,495 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:51:32,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,495 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:51:32,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,496 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:51:32,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,496 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:51:32,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,497 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:51:32,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,497 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:51:32,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,498 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:51:32,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,498 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:51:32,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,499 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:51:32,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,499 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:51:32,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,500 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:51:32,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,500 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:51:32,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,501 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:51:32,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,501 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:51:32,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,502 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:51:32,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,502 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:51:32,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,503 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:51:32,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,503 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:51:32,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,503 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:51:32,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,504 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:51:32,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,504 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:51:32,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,505 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:51:32,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,505 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:51:32,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,506 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:51:32,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,506 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:51:32,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,507 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:51:32,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,507 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:51:32,508 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,508 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:51:32,508 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,508 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:51:32,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,509 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:51:32,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,509 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:51:32,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,510 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:51:32,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,510 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:51:32,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,511 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:51:32,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,511 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:51:32,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,512 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:51:32,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,512 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:51:32,513 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,513 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:51:32,513 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,513 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:51:32,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,514 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:51:32,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,514 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:51:32,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,515 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:51:32,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,515 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:51:32,516 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:32,516 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:51:32,516 [1520] DEBUG index - Current user is: admin +01/30/13 11:51:32,516 [1520] DEBUG index - Current theme is: softed +01/30/13 11:51:32,516 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:51:32,516 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:51:32,518 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:51:32,518 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:51:32,520 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:51:32,520 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:51:32,522 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:51:32,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:51:32,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:32,523 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:51:32,523 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:51:32,523 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:51:32,523 [1520] DEBUG index - skipping headers +01/30/13 11:51:32,524 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:51:32,524 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:51:32,529 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:51:32,529 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:51:32,529 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:51:32,530 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:51:32,534 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:52')) +01/30/13 11:51:32,536 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:52:12,639 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:52:12,767 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:52:12,767 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:52:12,768 [1520] DEBUG index - ****Starting for new session +01/30/13 11:52:12,768 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:52:12,768 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:52:12,768 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:52:12,768 [1520] DEBUG index - in CalendarAjax +01/30/13 11:52:12,769 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:52:12,769 [1520] INFO index - current module is Calendar +01/30/13 11:52:12,814 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:52:12,814 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:52:12,814 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:52:12,814 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:12,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:12,815 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:12,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:12,815 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:52:12,815 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:52:12,824 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:12,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:12,824 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:52:12,824 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:52:12,824 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:52:12,825 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:52:12,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,825 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:52:12,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,826 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:52:12,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,826 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:52:12,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,827 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:52:12,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,827 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:52:12,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,828 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:52:12,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,829 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:52:12,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,829 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:52:12,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,830 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:52:12,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,830 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:52:12,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,831 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:52:12,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,831 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:52:12,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,832 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:52:12,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,832 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:52:12,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,832 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:52:12,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,833 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:52:12,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,834 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:52:12,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,834 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:52:12,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,835 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:52:12,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,835 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:52:12,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,836 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:52:12,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,836 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,837 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:52:12,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,838 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:52:12,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,838 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:52:12,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,839 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:52:12,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,839 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:52:12,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,840 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:52:12,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,840 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:52:12,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,841 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:52:12,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,841 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:52:12,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,842 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:52:12,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,842 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:52:12,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,843 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:52:12,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,843 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:52:12,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,844 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:52:12,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,844 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:52:12,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,845 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:52:12,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,845 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:52:12,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,846 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:52:12,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,846 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:52:12,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,847 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:52:12,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,847 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:52:12,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,848 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:52:12,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:12,848 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:52:12,849 [1520] DEBUG index - Current user is: admin +01/30/13 11:52:12,849 [1520] DEBUG index - Current theme is: softed +01/30/13 11:52:12,849 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:52:12,849 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:52:12,851 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:52:12,851 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:52:12,853 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:52:12,853 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:52:12,854 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:52:12,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:52:12,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:52:12,855 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:52:12,855 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:52:12,855 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:52:12,856 [1520] DEBUG index - skipping headers +01/30/13 11:52:12,856 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:52:12,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:52:12,862 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:52:12,862 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:52:12,862 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:52:12,862 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:52:12,866 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:53')) +01/30/13 11:52:12,871 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:52:32,932 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:52:33,062 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:52:33,062 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:52:33,063 [1520] DEBUG index - ****Starting for new session +01/30/13 11:52:33,063 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:52:33,063 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Logout', +) +01/30/13 11:52:33,063 [1520] INFO index - About to take action Logout +01/30/13 11:52:33,063 [1520] DEBUG index - in Logout +01/30/13 11:52:33,064 [1520] INFO index - current page is modules/Users/Logout.php +01/30/13 11:52:33,064 [1520] INFO index - current module is Users +01/30/13 11:52:33,108 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:52:33,108 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:52:33,108 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:52:33,108 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:33,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:33,109 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:33,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:33,109 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:52:33,109 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:52:33,121 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:52:33,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:52:33,121 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:52:33,121 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:52:33,122 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:52:33,122 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:52:33,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,123 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:52:33,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,123 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:52:33,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,124 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:52:33,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,124 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:52:33,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,125 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:52:33,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,125 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:52:33,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,126 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:52:33,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,126 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:52:33,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,127 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:52:33,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,127 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:52:33,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,128 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:52:33,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,128 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:52:33,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,129 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:52:33,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,129 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:52:33,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,130 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:52:33,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,130 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:52:33,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,131 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:52:33,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,131 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:52:33,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,132 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:52:33,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,132 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:52:33,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,133 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:52:33,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,133 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,134 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:52:33,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,135 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:52:33,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,135 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:52:33,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,136 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:52:33,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,136 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:52:33,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,137 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:52:33,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,137 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:52:33,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,138 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:52:33,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,138 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:52:33,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,139 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:52:33,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,139 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:52:33,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,140 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:52:33,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,140 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:52:33,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,141 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:52:33,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,141 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:52:33,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,142 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:52:33,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,142 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:52:33,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,143 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:52:33,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,143 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:52:33,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,144 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:52:33,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,144 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:52:33,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,145 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:52:33,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:52:33,145 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:52:33,150 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:52:33,150 [1520] DEBUG index - Prepared sql query parameters : [408,1,Users,Logout,,2013-01-30 11:52:33] +01/30/13 11:52:33,154 [1520] DEBUG index - Current user is: admin +01/30/13 11:52:33,154 [1520] DEBUG index - Current theme is: softed +01/30/13 11:52:33,154 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:52:33,154 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:52:33,156 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:52:33,156 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:52:33,158 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:52:33,158 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:52:33,159 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:52:33,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:52:33,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:52:33,160 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:52:33,160 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:52:33,161 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:52:33,161 [1520] DEBUG index - skipping headers +01/30/13 11:52:33,161 [1520] INFO GS - PearDatabase ->DatabaseConnection - Illegal Access +01/30/13 11:52:33,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:52:33,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:52:33,176 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_systems where server_type=? +01/30/13 11:52:33,177 [1520] DEBUG index - Prepared sql query parameters : [ftp_backup] +01/30/13 11:52:33,180 [1520] DEBUG index - Prepared sql query being executed : SELECT max(login_id) AS login_id from vtiger_loginhistory where user_name=? and user_ip=? +01/30/13 11:52:33,180 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4] +01/30/13 11:52:33,182 [1520] DEBUG index - Prepared sql query being executed : Update vtiger_loginhistory set logout_time =?, status=? where login_id = ? +01/30/13 11:52:33,183 [1520] DEBUG index - Prepared sql query parameters : [2013/01/30 11:52:33,Signed off,50] +01/30/13 11:52:33,188 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:52:33,188 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:52:33,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:52:33,257 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:52:33,384 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:52:33,387 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:52:33,387 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:52:33,387 [1520] DEBUG index - ****Starting for new session +01/30/13 11:52:33,388 [1520] DEBUG index - The current user does not have a session. Going to the login page +01/30/13 11:52:33,388 [1520] DEBUG index - Entering return_module_language(,Users) method ... +01/30/13 11:52:33,389 [1520] WARN index - Unable to find the module language file for language: and module: Users +01/30/13 11:52:33,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:52:33,392 [1520] DEBUG index - Entering return_application_language(en_us) method ... +01/30/13 11:52:33,394 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:52:33,394 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:53:20,242 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:21,287 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:53:21,289 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:21,289 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:21,289 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:21,290 [1520] DEBUG index - We are authenticating user now +01/30/13 11:53:21,290 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Authenticate', + 'return_module' => 'Users', + 'return_action' => 'Login', + 'user_name' => 'admin', + 'user_password' => 'admin', +) +01/30/13 11:53:21,290 [1520] INFO index - About to take action Authenticate +01/30/13 11:53:21,290 [1520] DEBUG index - in Authenticate +01/30/13 11:53:21,290 [1520] INFO index - current page is modules/Users/Authenticate.php +01/30/13 11:53:21,290 [1520] INFO index - current module is Users +01/30/13 11:53:21,334 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:21,334 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:21,334 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:21,334 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,335 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,335 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:21,335 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:21,417 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,418 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:21,418 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:21,418 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:21,418 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:21,418 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:21,422 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:21,422 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:21,426 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:21,426 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:21,429 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:21,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:21,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:21,431 [1520] DEBUG index - skipping headers +01/30/13 11:53:21,440 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:21,440 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:21,440 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:21,441 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,441 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:21,441 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:21,443 [1520] DEBUG user - Starting user load for admin +01/30/13 11:53:21,443 [1520] DEBUG user - Using integrated/SQL authentication +01/30/13 11:53:21,443 [1520] DEBUG index - Prepared sql query being executed : SELECT crypt_type FROM vtiger_users WHERE user_name=? +01/30/13 11:53:21,443 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:53:21,453 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_users where user_name=? AND user_password=? +01/30/13 11:53:21,453 [1520] DEBUG index - Prepared sql query parameters : [admin,$1$ad000000$hzXFXvL3XVlnUE/X.1n9t/] +01/30/13 11:53:21,457 [1520] DEBUG index - query being executed : SELECT * from vtiger_users where user_name='admin' +01/30/13 11:53:21,467 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:21,467 [1520] DEBUG index - Prepared sql query parameters : [409,1,Users,Authenticate,,2013-01-30 11:53:21] +01/30/13 11:53:21,473 [1520] DEBUG index - Prepared sql query being executed : Insert into vtiger_loginhistory (user_name, user_ip, logout_time, login_time, status) values (?,?,?,?,?) +01/30/13 11:53:21,473 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4,0000-00-00 00:00:00,2013/01/30 11:53:21,Signed in] +01/30/13 11:53:21,477 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:21,478 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:21,478 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:21,478 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,478 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:21,478 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:21,478 [1520] DEBUG index - Entering into retrieve_entity_info(1, Users) method. +01/30/13 11:53:21,478 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:53:21,478 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:21,482 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_attachments where attachmentsid=? +01/30/13 11:53:21,482 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:21,483 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2role where userid=? +01/30/13 11:53:21,484 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:21,485 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid=? +01/30/13 11:53:21,485 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:21,486 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,486 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:53:21,487 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:21,499 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id=? and currency_status='Active' and deleted=0 +01/30/13 11:53:21,499 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:53:21,502 [1520] DEBUG index - Exit from retrieve_entity_info(1, Users) method. +01/30/13 11:53:21,503 [1520] DEBUG index - authenticated_user_theme is softed +01/30/13 11:53:21,503 [1520] DEBUG index - authenticated_user_language is zh_cn +01/30/13 11:53:21,503 [1520] DEBUG index - authenticated_user_id is 1 +01/30/13 11:53:21,503 [1520] DEBUG index - app_unique_key is 7fbc51092369f141c526d6d14cb13651 +01/30/13 11:53:21,503 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:53:21,585 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:21,706 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:21,707 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:21,707 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:21,707 [1520] DEBUG index - Prepared sql query being executed : select internal_mailer from vtiger_users where id=? +01/30/13 11:53:21,707 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:21,709 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:21,709 [1520] DEBUG index - +01/30/13 11:53:21,773 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:21,894 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:21,894 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:21,895 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:21,895 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:21,895 [1520] DEBUG index - array ( + 'action' => 'index', + 'module' => 'Home', +) +01/30/13 11:53:21,895 [1520] INFO index - About to take action index +01/30/13 11:53:21,895 [1520] DEBUG index - in index +01/30/13 11:53:21,896 [1520] INFO index - current page is modules/Home/index.php +01/30/13 11:53:21,896 [1520] INFO index - current module is Home +01/30/13 11:53:21,937 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:21,937 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:21,937 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:21,937 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,938 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,938 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,938 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,938 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:21,938 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:21,949 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:21,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:21,949 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:21,949 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:21,949 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:21,950 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:21,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,950 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:21,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,951 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:21,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,951 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:21,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,952 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:21,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,952 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:21,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,953 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:21,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,953 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:21,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,954 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:21,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,954 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:21,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,955 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:21,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,955 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:21,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,956 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:21,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,956 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:21,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,957 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:21,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,957 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:21,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,958 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:21,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,958 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:21,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,959 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:21,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,959 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:21,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,960 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:21,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,960 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:21,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,961 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:21,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,962 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:21,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,962 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:21,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,962 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:21,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,963 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:21,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,963 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:21,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,964 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:21,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,964 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:21,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,965 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:21,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,965 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:21,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,966 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:21,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,966 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:21,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,967 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:21,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,967 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:21,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,968 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:21,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,968 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:21,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,969 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:21,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,969 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:21,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,970 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:21,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,970 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:21,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,971 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:21,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,971 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:21,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,972 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:21,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,972 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:21,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,973 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:21,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:21,973 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:21,977 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:21,978 [1520] DEBUG index - Prepared sql query parameters : [410,1,Home,index,,2013-01-30 11:53:21] +01/30/13 11:53:21,998 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:21,998 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:21,998 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:21,998 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:22,000 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:22,000 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:22,002 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:22,002 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:22,004 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:22,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,005 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:22,005 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:22,005 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:22,005 [1520] DEBUG index - including headers +01/30/13 11:53:22,005 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:22,006 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:22,009 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,009 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,011 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:53:22,012 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:53:22,013 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,013 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:53:22,014 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,014 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:53:22,015 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,015 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:53:22,015 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,016 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:53:22,016 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,016 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:53:22,017 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,017 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:53:22,018 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,018 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:53:22,019 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:22,019 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:53:22,019 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:53:22,019 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:53:22,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:22,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,029 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:53:22,029 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:53:22,030 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:22,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,031 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:53:22,032 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:53:22,032 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:22,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,034 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:53:22,034 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:53:22,035 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:22,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,037 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:53:22,038 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:53:22,038 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,039 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:22,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,040 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:53:22,040 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:53:22,040 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:22,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,042 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:22,042 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:22,042 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:22,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,043 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:53:22,043 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:53:22,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:53:22,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,044 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:53:22,045 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:53:22,045 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,045 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:22,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,046 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:53:22,046 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:53:22,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:22,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,047 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:53:22,047 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:53:22,048 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:22,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,048 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:53:22,049 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:53:22,049 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,049 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:22,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,050 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:53:22,050 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:53:22,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:22,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,051 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:53:22,051 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:53:22,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:22,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,052 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:53:22,052 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:53:22,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,053 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:22,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,053 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:53:22,054 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:53:22,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,054 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:22,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,055 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:53:22,055 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:53:22,055 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,055 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:22,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,056 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:53:22,057 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:53:22,057 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:22,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,058 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:53:22,058 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:53:22,058 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:22,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,059 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:53:22,059 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:53:22,059 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,059 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:53:22) method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:53:22) method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:22,060 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:22,061 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:22,061 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:22,062 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:53:22,062 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:53:22,062 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:53:22,066 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,066 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,066 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,066 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,066 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,066 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,067 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,068 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,070 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,071 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,072 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,074 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,075 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,076 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:53:22,079 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:22,080 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,080 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:22,080 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:22,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:22,082 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:22,082 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:22,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,082 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:22,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,083 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:53:22,083 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,083 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:53:22,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,084 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,085 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,086 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:53:22,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,088 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:53:22,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,088 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:53:22,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,089 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:53:22,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,089 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:53:22,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,090 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:53:22,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,090 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:22,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,090 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:22,091 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,092 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:53:22,092 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,092 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:53:22,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,092 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:22,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,093 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:53:22,093 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:53:22,093 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:22,096 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:53:22,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,097 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:53:22,097 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,097 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:53:22,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,098 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:53:22,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,098 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:53:22,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,099 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:22,099 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:53:22,101 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:53:22,101 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,101 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:53:22,101 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:53:22,104 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:53:22,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,110 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:53:22,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:22,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,111 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:22,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:22,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,111 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:22,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:22,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,111 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:22,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:22,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,112 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:22,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:22,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,112 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:22,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:22,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,112 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:22,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:22,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,113 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:22,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:22,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,113 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:53:22,114 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:22,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,114 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:22,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:53:22,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,114 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:53:22,116 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:22,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,117 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:22,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:53:22,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,118 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:53:22,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:53:22,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,118 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:53:22,118 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:53:22,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,119 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:53:22,119 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:22,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,119 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:22,120 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:22,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,120 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:53:22,120 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:53:22,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,120 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:53:22,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:53:22,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,121 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:53:22,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:53:22,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,122 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:53:22,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:22,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,122 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:22,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:22,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,122 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:53:22,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:22,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,123 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:22,123 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:22,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,123 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:22,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:22,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,123 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:22,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:22,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,124 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:22,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:22,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,124 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:22,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:22,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,125 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:22,125 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:22,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,125 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:22,125 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:22,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,125 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:22,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:22,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,126 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:22,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:22,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,126 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:22,127 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:22,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,127 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:22,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:22,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,128 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:22,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,129 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:53:22,140 [1520] DEBUG index - query being executed : SELECT * FROM vtiger_tab +01/30/13 11:53:22,151 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,) method ... +01/30/13 11:53:22,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,151 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,) method ... +01/30/13 11:53:22,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,152 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,) method ... +01/30/13 11:53:22,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,152 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,) method ... +01/30/13 11:53:22,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,153 [1520] DEBUG index - Entering isPermitted(Documents,DetailView,) method ... +01/30/13 11:53:22,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,153 [1520] DEBUG index - Entering isPermitted(Calendar,DetailView,) method ... +01/30/13 11:53:22,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,153 [1520] DEBUG index - Entering isPermitted(HelpDesk,DetailView,) method ... +01/30/13 11:53:22,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,154 [1520] DEBUG index - Entering isPermitted(Products,DetailView,) method ... +01/30/13 11:53:22,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,154 [1520] DEBUG index - Entering isPermitted(Faq,DetailView,) method ... +01/30/13 11:53:22,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,155 [1520] DEBUG index - Entering isPermitted(Vendors,DetailView,) method ... +01/30/13 11:53:22,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,155 [1520] DEBUG index - Entering isPermitted(PriceBooks,DetailView,) method ... +01/30/13 11:53:22,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,156 [1520] DEBUG index - Entering isPermitted(Quotes,DetailView,) method ... +01/30/13 11:53:22,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,156 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,DetailView,) method ... +01/30/13 11:53:22,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,157 [1520] DEBUG index - Entering isPermitted(SalesOrder,DetailView,) method ... +01/30/13 11:53:22,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,157 [1520] DEBUG index - Entering isPermitted(Invoice,DetailView,) method ... +01/30/13 11:53:22,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,158 [1520] DEBUG index - Entering isPermitted(Campaigns,DetailView,) method ... +01/30/13 11:53:22,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,158 [1520] DEBUG index - Entering isPermitted(PBXManager,DetailView,) method ... +01/30/13 11:53:22,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,159 [1520] DEBUG index - Entering isPermitted(ServiceContracts,DetailView,) method ... +01/30/13 11:53:22,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,159 [1520] DEBUG index - Entering isPermitted(Services,DetailView,) method ... +01/30/13 11:53:22,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,159 [1520] DEBUG index - Entering isPermitted(Assets,DetailView,) method ... +01/30/13 11:53:22,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,160 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:53:22,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,160 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,DetailView,) method ... +01/30/13 11:53:22,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,161 [1520] DEBUG index - Entering isPermitted(ProjectTask,DetailView,) method ... +01/30/13 11:53:22,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,161 [1520] DEBUG index - Entering isPermitted(Project,DetailView,) method ... +01/30/13 11:53:22,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,162 [1520] DEBUG index - Entering isPermitted(SMSNotifier,DetailView,) method ... +01/30/13 11:53:22,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,162 [1520] DEBUG index - Entering isPermitted(Rss,DetailView,) method ... +01/30/13 11:53:22,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,163 [1520] DEBUG index - Entering isPermitted(Dashboard,DetailView,) method ... +01/30/13 11:53:22,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,163 [1520] DEBUG index - Entering isPermitted(Reports,DetailView,) method ... +01/30/13 11:53:22,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,164 [1520] DEBUG index - Prepared sql query being executed : select vtiger_homestuff.stuffid,stufftype,stufftitle,setype from vtiger_homestuff + left join vtiger_homedefault on vtiger_homedefault.stuffid=vtiger_homestuff.stuffid + where visible=0 and userid=? order by stuffsequence desc +01/30/13 11:53:22,164 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:22,167 [1520] DEBUG index - function getTranslatedString(My Recent FAQs) - translated to (最新常见问答) +01/30/13 11:53:22,167 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:53:22,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,168 [1520] DEBUG index - function getTranslatedString(Pending Activities) - translated to (即将进行的活动) +01/30/13 11:53:22,168 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:22,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,168 [1520] DEBUG index - function getTranslatedString(Top Purchase Orders) - translated to (最新采购订单) +01/30/13 11:53:22,168 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:53:22,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,169 [1520] DEBUG index - function getTranslatedString(My New Leads) - translated to (最新潜在客户) +01/30/13 11:53:22,169 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:53:22,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,170 [1520] DEBUG index - function getTranslatedString(Top Invoices) - translated to (最新发货单) +01/30/13 11:53:22,170 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:53:22,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,170 [1520] DEBUG index - function getTranslatedString(Top Sales Orders) - translated to (最新销售订单) +01/30/13 11:53:22,171 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:53:22,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,171 [1520] DEBUG index - function getTranslatedString(My Group Allocation) - translated to (最新部门任务) +01/30/13 11:53:22,171 [1520] DEBUG index - function getTranslatedString(Upcoming Activities) - translated to (近期活动) +01/30/13 11:53:22,171 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:22,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,172 [1520] DEBUG index - function getTranslatedString(Top Trouble Tickets) - translated to (最新故障单) +01/30/13 11:53:22,172 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:53:22,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,173 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,173 [1520] DEBUG index - function getTranslatedString(Top Quotes) - translated to (最新报价单) +01/30/13 11:53:22,173 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:53:22,173 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,174 [1520] DEBUG index - function getTranslatedString(Top Potentials) - translated to (最新销售机会) +01/30/13 11:53:22,174 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:53:22,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,174 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,174 [1520] DEBUG index - Entering isPermitted(Dashboard,index,) method ... +01/30/13 11:53:22,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,175 [1520] DEBUG index - function getTranslatedString(Top Accounts) - translated to (最新客户) +01/30/13 11:53:22,175 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:53:22,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,176 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:22,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,176 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_home_layout where userid=? +01/30/13 11:53:22,176 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:22,178 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:22,178 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:22,178 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:22,179 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:22,179 [1520] DEBUG index - Prepared sql query being executed : SELECT tag,tag_id,COUNT(object_id) AS quantity + FROM vtiger_freetags INNER JOIN vtiger_freetagged_objects + ON (vtiger_freetags.id = tag_id) + WHERE 1=1 + AND tagger_id = ? + GROUP BY tag + ORDER BY quantity DESC LIMIT 0, 100 +01/30/13 11:53:22,179 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:22,185 [1520] DEBUG index - Prepared sql query being executed : SELECT login_time, logout_time FROM vtiger_loginhistory WHERE user_name=? ORDER BY login_id DESC LIMIT 2 +01/30/13 11:53:22,185 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:53:22,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,190 [1520] DEBUG index - function getTranslatedString(LBL_REPORTCHARTS) - translated to (报表) +01/30/13 11:53:22,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,190 [1520] DEBUG index - function getTranslatedString(LBL_DEFAULT_WIDGET) - translated to (默认组件) +01/30/13 11:53:22,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:22,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,191 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:22,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:22,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,191 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:22,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:22,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,191 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:22,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:22,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,192 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:22,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:22,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,192 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:22,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:22,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,192 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:22,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:22,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,193 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:22,193 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:22,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,193 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:22,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:22,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,193 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:22,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:22,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,193 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:22,193 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:22,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,194 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:53:22,194 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:22,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,194 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:22,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:22,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,194 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:22,194 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:22,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,194 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:22,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:22,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,195 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:22,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:22,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,195 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:22,195 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:22,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,195 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:22,195 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:22,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,195 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:22,196 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:22,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,196 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:22,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:22,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,196 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:22,196 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:22,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,196 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:22,196 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:22,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,197 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:22,197 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:22,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,197 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:53:22,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:22,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,197 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:22,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:22,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,198 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:22,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,198 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_NAME) - translated to (报表名称) +01/30/13 11:53:22,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,198 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_TYPE) - translated to (报表类型) +01/30/13 11:53:22,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,200 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,200 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,201 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,202 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,202 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,202 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,204 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,204 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,204 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,205 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,206 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,206 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,207 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,207 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,208 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,209 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,209 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,209 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,211 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,211 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,211 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,212 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,213 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,213 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,214 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,215 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,215 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,216 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,216 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,217 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,218 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,218 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,218 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,220 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,220 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,220 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,221 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,222 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,222 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,223 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,223 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:53:22,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,224 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,224 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,224 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,225 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,225 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,225 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,225 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,226 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,226 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,226 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,227 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,227 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,227 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,227 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:22,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,228 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:53:22,228 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:53:22,228 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:22,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,605 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:22,607 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:22,608 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:22,687 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:22,738 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:22,738 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:22,738 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:22,739 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:22,739 [1520] DEBUG index - array ( + 'module' => 'Dashboard', + 'action' => 'DashboardAjax', + 'file' => 'HomepageDB', +) +01/30/13 11:53:22,739 [1520] INFO index - About to take action DashboardAjax +01/30/13 11:53:22,739 [1520] DEBUG index - in DashboardAjax +01/30/13 11:53:22,739 [1520] INFO index - current page is modules/Dashboard/DashboardAjax.php +01/30/13 11:53:22,739 [1520] INFO index - current module is Dashboard +01/30/13 11:53:22,785 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:22,785 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:22,785 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:22,785 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:22,786 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,786 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:22,786 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,786 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:22,786 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:22,794 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:22,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:22,794 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:22,794 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:22,795 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:22,795 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:22,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,796 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:22,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,796 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:22,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,797 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:22,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,797 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:22,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,798 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:22,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,798 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:22,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,799 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:22,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,799 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:22,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,800 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:22,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,801 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:22,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,801 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:22,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,802 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:22,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,802 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:22,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,803 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:22,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,803 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:22,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,804 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:22,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,804 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:22,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,805 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:22,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,805 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:22,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,806 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:22,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,806 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:22,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,807 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:22,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,807 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:22,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,808 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:22,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,808 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:22,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,809 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:22,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,809 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:22,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,810 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:22,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,810 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:22,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,811 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:22,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,811 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:22,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,812 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:22,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,812 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:22,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,813 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:22,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,813 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:22,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,814 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:22,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,814 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:22,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,815 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:22,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,815 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:22,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,816 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:22,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,816 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:22,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,817 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:22,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,817 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:22,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,818 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:22,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,818 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:22,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,819 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:22,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:22,819 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:22,823 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:22,823 [1520] DEBUG index - Prepared sql query parameters : [411,1,Dashboard,DashboardAjax,,2013-01-30 11:53:22] +01/30/13 11:53:22,825 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:22,825 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:22,825 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:22,825 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:22,827 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:22,827 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:22,829 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:22,829 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:22,831 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:22,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:53:22,831 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Dashboard +01/30/13 11:53:22,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:22,832 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:22,832 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:22,832 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:22,833 [1520] DEBUG index - skipping headers +01/30/13 11:53:22,834 [1520] DEBUG index - Entering isPermitted(Dashboard,HomepageDB,) method ... +01/30/13 11:53:22,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,844 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_leaddetails le on le.leadid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (le.converted = 0 OR le.converted IS NULL) +01/30/13 11:53:22,846 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_troubletickets tt ON tt.ticketid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (tt.status != 'Closed' OR tt.status IS NULL) +01/30/13 11:53:22,848 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_potential pot ON pot.potentialid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (pot.sales_stage NOT IN ('成功结案','失败结案') OR pot.sales_stage IS NULL) +01/30/13 11:53:22,850 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_activity act ON act.activityid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND act.activitytype != 'Emails' AND + ((act.status!='Completed' AND act.status!='Deferred') OR act.status IS NULL) + AND ((act.eventstatus!='Held' AND act.eventstatus!='Not Held') OR act.eventstatus IS NULL) +01/30/13 11:53:22,853 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:53:22,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,853 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:53:22,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,853 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:53:22,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,854 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:53:22,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,854 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:53:22,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,855 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:53:22,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,855 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:53:22,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:22,856 [1520] DEBUG index - query being executed : SELECT setype, count(setype) setype_count FROM vtiger_crmentity se WHERE + se.deleted = 0 AND se.smownerid=1 AND se.setype in ('Accounts','Contacts','Quotes','SalesOrder','PurchaseOrder','Invoice','Campaigns') GROUP BY se.setype +01/30/13 11:53:22,858 [1520] DEBUG index - query being executed : SELECT cvid,entitytype FROM vtiger_customview WHERE viewname='All' AND entitytype in ('Leads','HelpDesk','Potentials','Calendar','Accounts','Campaigns','Contacts','Invoice','PurchaseOrder','Quotes','SalesOrder') +01/30/13 11:53:22,860 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,861 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,862 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,862 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,864 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,864 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,866 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,866 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,868 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,868 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,872 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,873 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,874 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,874 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,876 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,876 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,879 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,879 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,880 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,880 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,882 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:22,882 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:22,893 [1520] DEBUG index - Entering calculate_font_name(zh_cn) method ... +01/30/13 11:53:22,893 [1520] DEBUG index - Exiting calculate_font_name method ... +01/30/13 11:53:22,904 [1520] DEBUG index - Entering get_tickspacing(15) method ... +01/30/13 11:53:22,904 [1520] DEBUG index - Exiting get_tickspacing method ... +01/30/13 11:53:22,958 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:22,959 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:22,959 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:22,959 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:22,959 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":14,"widgetType":"Default"}]', +) +01/30/13 11:53:22,959 [1520] INFO index - About to take action HomeAjax +01/30/13 11:53:22,960 [1520] DEBUG index - in HomeAjax +01/30/13 11:53:22,960 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:53:22,960 [1520] INFO index - current module is Home +01/30/13 11:53:23,005 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:23,005 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:23,005 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:23,005 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,006 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,006 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,006 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:23,015 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,015 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,015 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,015 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:23,015 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:23,016 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:23,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,017 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:23,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,017 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:23,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,018 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:23,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,018 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:23,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,019 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:23,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,019 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:23,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,020 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:23,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,020 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:23,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,021 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:23,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,021 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:23,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,022 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:23,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,022 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:23,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,023 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:23,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,023 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:23,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,024 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:23,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,024 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:23,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,025 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:23,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,025 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:23,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,026 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:23,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,026 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:23,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,027 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:23,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,027 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,028 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:23,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,029 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:23,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,029 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:23,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,030 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:23,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,030 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:23,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,031 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:23,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,031 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:23,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,032 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:23,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,032 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:23,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,033 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:23,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,033 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:23,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,034 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:23,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,034 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:23,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,035 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:23,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,035 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:23,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,036 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:23,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,036 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:23,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,037 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:23,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,037 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:23,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,038 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:23,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,038 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:23,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,039 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:23,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,040 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:23,043 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:23,043 [1520] DEBUG index - Prepared sql query parameters : [412,1,Home,HomeAjax,,2013-01-30 11:53:23] +01/30/13 11:53:23,046 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:23,046 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:23,046 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:23,046 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:23,047 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:23,048 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:23,049 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:23,050 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:23,051 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:23,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:23,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,052 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:23,052 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:23,052 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:23,052 [1520] DEBUG index - skipping headers +01/30/13 11:53:23,064 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:23,064 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:53:23,066 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:53:23,066 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,070 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,070 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,070 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,070 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:53:23,073 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,073 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,073 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,073 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,073 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,074 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,074 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:53:23,078 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,078 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,079 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,079 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,079 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,079 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,079 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,079 [1520] DEBUG index - Entering getCvIdOfAll(Faq) +01/30/13 11:53:23,079 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:53:23,080 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:53:23,082 [1520] DEBUG index - Exiting getCvIdOfAll(Faq) +01/30/13 11:53:23,082 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,083 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:23,083 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:53:23,084 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,084 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:23,084 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,088 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:23,088 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:53:23,091 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?) and displaytype in (1,2,3,4) +01/30/13 11:53:23,091 [1520] DEBUG index - Prepared sql query parameters : [15,37] +01/30/13 11:53:23,097 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:53:23,100 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:23,100 [1520] DEBUG index - Prepared sql query parameters : [33] +01/30/13 11:53:23,102 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:23,102 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:23,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,103 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:23,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:23,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,106 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,107 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,108 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,109 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,110 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:23,111 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:53:23,115 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:23,115 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,115 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:53:23,118 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,119 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,150 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,150 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:53:23,152 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,152 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:53:23,154 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,154 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:53:23,156 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,157 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:53:23,159 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,159 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:53:23,206 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,206 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:53:23,209 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,209 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:53:23,211 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,211 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:53:23,215 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,215 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:53:23,217 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,217 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:53:23,220 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,220 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:53:23,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,222 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:53:23,224 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,224 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:53:23,226 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,226 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:53:23,228 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,229 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:23,261 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,261 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:53:23,263 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,263 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:53:23,266 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,266 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:53:23,268 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,268 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:53:23,270 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:53:23,271 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:23,272 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,273 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:53:23,275 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,275 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:53:23,278 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,278 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:53:23,312 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,312 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:53:23,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,314 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:53:23,317 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,317 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:53:23,319 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,320 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:53:23,322 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,322 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:53:23,324 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,324 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:53:23,326 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,326 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:53:23,327 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,328 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:53:23,329 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,329 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:53:23,331 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,331 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:53:23,334 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,334 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:53:23,336 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,336 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:53:23,338 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:23,341 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:23,341 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:23,343 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:23,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:23,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,345 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:23,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:23,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,345 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:53:23,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:23,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,346 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:23,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:23,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,346 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:53:23,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,346 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,346 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:53:23,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:23,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,347 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:23,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:23,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,347 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:53:23,348 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:23,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,348 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:23,348 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:23,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,348 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:23,349 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:23,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,349 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:23,349 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:23,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,349 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:53:23,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:23,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,350 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:23,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:23,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,350 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:53:23,350 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:23,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,351 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:23,351 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:23,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,351 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:53:23,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:23,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,352 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:23,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:23,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,352 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:53:23,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:23,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,353 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:23,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:23,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,353 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:53:23,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:23,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,354 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:23,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:23,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,354 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:53:23,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:23,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,355 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:23,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:23,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,355 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:23,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:23,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,356 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:23,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:23,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,356 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:53:23,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,357 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,357 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:53:23,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:23,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,358 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:23,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:23,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,358 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:53:23,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:23,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,359 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:53:23,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:23,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,359 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:53:23,359 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:23,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,360 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:23,360 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:23,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,360 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:53:23,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:23,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,360 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:53:23,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:23,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,360 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:53:23,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:23,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,362 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:53:23,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:23,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,362 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:53:23,362 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:23,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,362 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:23,363 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:23,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,363 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:53:23,363 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:23,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,364 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:53:23,364 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:23,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,364 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:53:23,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:23,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,365 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:23,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:23,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,365 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:53:23,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:23,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,366 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:23,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:23,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,366 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:53:23,366 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:23,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,366 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:53:23,366 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:23,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,367 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:53:23,367 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:23,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,367 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:23,367 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:23,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,367 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:53:23,368 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:23,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,368 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:23,368 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:23,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,368 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:53:23,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:23,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,369 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:23,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:23,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,369 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:53:23,369 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:23,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,370 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:23,370 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:23,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,370 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:53:23,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:23,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:23,420 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:23,420 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:53:23,422 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:23,423 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:23,423 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:23,423 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:53:23,426 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:23,426 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:53:23,429 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:23,429 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:53:23,438 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,438 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:53:23,440 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:53:23,441 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:53:23,441 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:53:23,441 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,441 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,442 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,442 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:53:23,451 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,451 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,451 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:53:23,452 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,452 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,452 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:23,452 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:53:23,454 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,454 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,454 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,454 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,455 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,455 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,455 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,455 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,455 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,455 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,455 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,455 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,455 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,456 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,456 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,456 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,456 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,456 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,456 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:53:23,456 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:53:23,456 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:53:23,456 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,457 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,457 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:53:23,457 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,457 [1520] DEBUG index - query being executed : SELECT vtiger_faq.id, vtiger_faq.question, vtiger_faq.product_id FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_faq.id = vtiger_crmentity.crmid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_faq.status <> 'Obsolete') )) AND vtiger_faq.id > 0 LIMIT 0,5 +01/30/13 11:53:23,460 [1520] DEBUG index - Entering getNavigationValues(1,5,20) method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,460 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,461 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,461 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,461 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,462 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:53:23,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,462 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:53:23,463 [1520] DEBUG index - Entering getEntityName(Products) method ... +01/30/13 11:53:23,463 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:23,463 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:53:23,465 [1520] DEBUG index - Prepared sql query being executed : SELECT productname,productid FROM vtiger_products WHERE productid IN (?,?,?,?,?) +01/30/13 11:53:23,465 [1520] DEBUG index - Prepared sql query parameters : [52,53,54,55,56] +01/30/13 11:53:23,467 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:23,468 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,468 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:23,468 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:23,470 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,470 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,470 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,471 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,471 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,471 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,471 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,471 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,472 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,472 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,472 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:23,473 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,474 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,474 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,475 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,475 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,476 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:23,476 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:53:23,476 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,476 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,476 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,476 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,477 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,481 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:23,481 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:23,482 [1520] DEBUG index - Prepared sql query parameters : [62] +01/30/13 11:53:23,484 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,484 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,484 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,485 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,485 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,485 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,486 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,486 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,486 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,486 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,487 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:23,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,489 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,489 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,489 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,489 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,490 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:23,490 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,490 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,491 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,496 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:23,496 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:23,496 [1520] DEBUG index - Prepared sql query parameters : [63] +01/30/13 11:53:23,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,498 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,498 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,499 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,499 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,500 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,500 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,500 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,500 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,501 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,501 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:23,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,503 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,503 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,503 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,503 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,504 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:23,504 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,504 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,505 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,510 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:23,510 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:23,510 [1520] DEBUG index - Prepared sql query parameters : [64] +01/30/13 11:53:23,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,513 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,513 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,513 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,514 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,514 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,514 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,514 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,515 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,515 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:23,516 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,517 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,517 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,518 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,518 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:23,518 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:53:23,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,519 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,519 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,519 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,520 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,524 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:23,524 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:23,524 [1520] DEBUG index - Prepared sql query parameters : [65] +01/30/13 11:53:23,527 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,527 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,527 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,527 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,528 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:23,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:23,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,528 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:23,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,528 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,529 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,529 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:23,530 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,531 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,531 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,531 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,532 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,532 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:23,532 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:53:23,533 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:23,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:23,533 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:23,534 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:23,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:23,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,538 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:23,538 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:23,538 [1520] DEBUG index - Prepared sql query parameters : [66] +01/30/13 11:53:23,546 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:23,546 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:23,547 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:23,547 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:23,547 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":1,"widgetType":"Default"},{"widgetId":3,"widgetType":"Default"},{"widgetId":4,"widgetType":"Default"},{"widgetId":5,"widgetType":"Default"},{"widgetId":6,"widgetType":"Default"},{"widgetId":7,"widgetType":"Default"},{"widgetId":8,"widgetType":"Default"},{"widgetId":9,"widgetType":"Default"},{"widgetId":10,"widgetType":"Default"},{"widgetId":11,"widgetType":"Default"},{"widgetId":12,"widgetType":"Default"},{"widgetId":13,"widgetType":"Default"}]', +) +01/30/13 11:53:23,547 [1520] INFO index - About to take action HomeAjax +01/30/13 11:53:23,547 [1520] DEBUG index - in HomeAjax +01/30/13 11:53:23,548 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:53:23,548 [1520] INFO index - current module is Home +01/30/13 11:53:23,592 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:23,592 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:23,592 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:23,593 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,593 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,593 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,593 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,593 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,594 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:23,602 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:23,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,602 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,602 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:23,602 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:23,603 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:23,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,604 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:23,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,604 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:23,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,605 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:23,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,605 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:23,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,606 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:23,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,606 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:23,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,607 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:23,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,607 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:23,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,608 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:23,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,608 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:23,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,609 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:23,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,609 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:23,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,610 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:23,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,610 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:23,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,611 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:23,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,611 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:23,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,612 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:23,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,612 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:23,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,613 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:23,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,613 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:23,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,614 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:23,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,614 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,615 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:23,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,616 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:23,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,616 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:23,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,617 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:23,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,617 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:23,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,618 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:23,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,618 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:23,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,619 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:23,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,619 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:23,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,620 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:23,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,620 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:23,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,621 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:23,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,621 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:23,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,622 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:23,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,622 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:23,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,623 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:23,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,623 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:23,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,624 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:23,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,624 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:23,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,625 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:23,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,625 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:23,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,626 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:23,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,626 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:23,632 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:23,632 [1520] DEBUG index - Prepared sql query parameters : [413,1,Home,HomeAjax,,2013-01-30 11:53:23] +01/30/13 11:53:23,635 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:23,635 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:23,635 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:23,635 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:23,637 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:23,637 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:23,639 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:23,639 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:23,641 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:23,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:53:23,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,642 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:23,642 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:23,642 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:23,642 [1520] DEBUG index - skipping headers +01/30/13 11:53:23,655 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:23,655 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:23,659 [1520] DEBUG top accounts_list - Entering getTopAccounts() method ... +01/30/13 11:53:23,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:23,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,662 [1520] DEBUG index - query being executed : select vtiger_potential.potentialname,vtiger_account.accountid, vtiger_account.accountname, vtiger_account.tickersymbol, sum(vtiger_potential.amount) as amount from vtiger_potential inner join vtiger_crmentity on (vtiger_potential.potentialid=vtiger_crmentity.crmid) inner join vtiger_account on (vtiger_potential.related_to=vtiger_account.accountid) WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid>0 AND vtiger_crmentity.smownerid='1' and vtiger_potential.sales_stage not in ('Closed Won', 'Closed Lost','成功结案','失败结案') group by vtiger_account.accountid, vtiger_account.tickersymbol order by amount desc LIMIT 0,5 +01/30/13 11:53:23,668 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:53:23,668 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:53:23,668 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,668 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,668 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:53:23,668 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:53:23,671 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,671 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,672 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,673 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,674 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,674 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,674 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,674 [1520] DEBUG top accounts_list - Exiting getTopAccounts method ... +01/30/13 11:53:23,678 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:23,678 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:53:23,681 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:53:23,681 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,682 [1520] DEBUG top opportunity_list - Entering getTopPotentials() method ... +01/30/13 11:53:23,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:23,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,682 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:53:23,682 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:23,683 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:53:23,683 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:23,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,684 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,684 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:53:23,688 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:23,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,688 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,689 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:23,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,689 [1520] DEBUG index - query being executed : SELECT vtiger_crmentity.crmid, vtiger_potential.potentialname, + vtiger_potential.amount, potentialid + FROM vtiger_potential + IGNORE INDEX(PRIMARY) INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid > 0 AND vtiger_potential.sales_stage not in ('Closed Won','Closed Lost','成功结案','失败结案') AND vtiger_crmentity.smownerid='1' AND vtiger_potential.amount > 0 ORDER BY amount DESC LIMIT 5 +01/30/13 11:53:23,693 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,693 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,693 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,693 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,693 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,694 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,695 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:53:23,696 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:23,697 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:23,700 [1520] DEBUG top opportunity_list - Exiting getTopPotentials method ... +01/30/13 11:53:23,702 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:23,702 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:23,704 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:53:23,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:23,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:23,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,709 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,709 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:53:23,712 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:23,712 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:23,712 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,712 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,712 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:23,712 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,719 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,719 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:23,720 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,720 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,720 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:53:23,720 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,723 [1520] DEBUG index - Entering getCvIdOfAll(Quotes) +01/30/13 11:53:23,723 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:53:23,724 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:53:23,727 [1520] DEBUG index - Exiting getCvIdOfAll(Quotes) +01/30/13 11:53:23,727 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,727 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:23,727 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,730 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,730 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,730 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:23,730 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,733 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:23,734 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:23,734 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:53:23,739 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:23,739 [1520] DEBUG index - Prepared sql query parameters : [20,49,51,53,54] +01/30/13 11:53:23,753 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:53:23,756 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:23,756 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:53:23,759 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:23,759 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:23,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,759 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,760 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:23,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:23,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:23,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:23,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,765 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:23,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:23,767 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:53:23,770 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:23,770 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,770 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:53:23,774 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,774 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:23,813 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,813 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:53:23,816 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,816 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:53:23,818 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,818 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:53:23,820 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,820 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:53:23,822 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,823 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:53:23,868 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,868 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:53:23,870 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,870 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:53:23,872 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,872 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:53:23,874 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,875 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:53:23,877 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,877 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:53:23,879 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,879 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:53:23,881 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,881 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:53:23,883 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,883 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:53:23,886 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,886 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:53:23,888 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,888 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:23,919 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,919 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:53:23,921 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,921 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:53:23,924 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,924 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:53:23,926 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,926 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:53:23,928 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:53:23,928 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:23,933 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,933 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:53:23,935 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:23,936 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:53:23,939 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:23,939 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:53:23,969 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,969 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:53:23,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,971 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:53:23,974 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,974 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:53:23,976 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,976 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:53:23,978 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,978 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:53:23,980 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,980 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:53:23,982 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,983 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:53:23,984 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,984 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:53:23,986 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,987 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:53:23,989 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,989 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:53:23,991 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,991 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:53:23,993 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:23,993 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:53:23,995 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:23,999 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:23,1000 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:24,003 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:24,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:24,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,006 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:24,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:24,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,007 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:53:24,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:24,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,008 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:24,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:24,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,008 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:53:24,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:24,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,009 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:24,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:24,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,010 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:53:24,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,011 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:24,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,011 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:53:24,011 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:24,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,012 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:24,013 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:24,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,013 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:24,013 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:24,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,014 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:24,014 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:24,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,015 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:53:24,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:24,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,016 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:24,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:24,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,017 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:53:24,017 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:24,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,018 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:24,018 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:24,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,018 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:53:24,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:24,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,020 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:24,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:24,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,020 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:53:24,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:24,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,022 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:24,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:24,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,022 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:53:24,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:24,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,022 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:24,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:24,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,023 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:53:24,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:24,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,023 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:24,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:24,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,024 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:24,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:24,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,024 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:24,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:24,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,024 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:53:24,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:24,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,025 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:24,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:24,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,025 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:53:24,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:24,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,026 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:24,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:24,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,026 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:53:24,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:24,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,026 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:53:24,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:24,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,027 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:53:24,027 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:24,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,027 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:24,028 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:24,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,028 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:53:24,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:24,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,028 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:53:24,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:24,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,028 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:53:24,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:24,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,030 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:53:24,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:24,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,030 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:53:24,030 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:24,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,031 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:24,031 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:24,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,031 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:53:24,031 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:24,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,031 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:53:24,031 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:24,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,032 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:53:24,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:24,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,032 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:24,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:24,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,033 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:53:24,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:24,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,033 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:24,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:24,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,033 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:53:24,033 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:24,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,034 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:53:24,034 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:24,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,034 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:53:24,034 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:24,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,035 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:24,035 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:24,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,035 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:53:24,035 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:24,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,036 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:24,036 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:24,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,036 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:53:24,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:24,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,036 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:24,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:24,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,037 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:53:24,037 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:24,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,037 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:24,037 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:24,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,037 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:53:24,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,038 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,101 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,101 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:24,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,104 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,104 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,104 [1520] DEBUG index - Prepared sql query parameters : [35] +01/30/13 11:53:24,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,107 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,107 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,107 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:53:24,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,141 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,142 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:53:24,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,144 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,145 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:53:24,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:24,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:24,148 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,148 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:53:24,151 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,151 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:53:24,153 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,153 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:53:24,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,156 [1520] DEBUG index - function getTranslatedString(Accepted) - translated to (已接受) +01/30/13 11:53:24,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,156 [1520] DEBUG index - function getTranslatedString(Rejected) - translated to (已拒绝) +01/30/13 11:53:24,157 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:53:24) method ... +01/30/13 11:53:24,157 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:53:24,157 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,158 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:24,168 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,169 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:24,171 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:24,171 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:24,172 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:24,172 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:24,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,172 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,172 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:24,172 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:24,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,172 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:24,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,173 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,173 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:24,175 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,175 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:24,177 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,177 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:53:24,179 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,179 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:53:24,179 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,179 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,180 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,180 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:53:24,182 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,182 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,182 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,182 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,182 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,182 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,182 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,183 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,183 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,183 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,183 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,183 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,183 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,183 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,183 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,184 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,184 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,184 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,184 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,184 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,184 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,184 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,184 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,185 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,185 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,185 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,185 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,185 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,185 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,185 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,186 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,186 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,186 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,186 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,186 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,186 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,186 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,187 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,187 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,187 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,187 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,188 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,188 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:53:24,188 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:53:24,188 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,188 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:24,190 [1520] DEBUG index - query being executed : SELECT vtiger_quotes.quoteid, vtiger_quotes.subject, vtiger_quotes.potentialid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') and ( vtiger_quotes.quotestage <> '已接受') and ( vtiger_quotes.quotestage <> '已拒绝') and ( vtiger_quotes.validtill >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_quotes.quoteid > 0 LIMIT 5 +01/30/13 11:53:24,193 [1520] DEBUG index - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:53:24,193 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:53:24,193 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,193 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:53:24,194 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:24,194 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:24,195 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:24,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,196 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:53:24,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:24,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,196 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:53:24,197 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:24,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:24,198 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:24,198 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:24,204 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,204 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:53:24,207 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:53:24,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:24,208 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.setmetrics = 1 order by vtiger_customview.entitytype +01/30/13 11:53:24,213 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:53:24,213 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:53:24,213 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:53:24,213 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,213 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,215 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:53:24,215 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,216 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:53:24,216 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:53:24,217 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,218 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:53:24,218 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:53:24,218 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:53:24,218 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,218 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,220 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:53:24,220 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,222 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:53:24,222 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:53:24,222 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,223 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:53:24,223 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:53:24,223 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:53:24,223 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,223 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,225 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:53:24,225 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,226 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:53:24,227 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:53:24,227 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,227 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:53:24,227 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:53:24,227 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:53:24,228 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,228 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,229 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:53:24,229 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,232 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:53:24,232 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:53:24,232 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,232 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:53:24,232 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:53:24,233 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:53:24,233 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,233 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,235 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:53:24,235 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,236 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:53:24,237 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:53:24,237 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,237 [1520] INFO metrics - Metrics :: Successfully got MetricList to be displayed +01/30/13 11:53:24,237 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,237 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:53:24,240 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,240 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,240 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,241 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,241 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,241 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,241 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,241 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,247 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,247 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,248 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,248 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,250 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,250 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,250 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,250 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,253 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,253 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,254 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,254 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:53:24,258 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,258 [1520] DEBUG metrics - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:53:24,271 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,271 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:24,272 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,273 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,273 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,273 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,275 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,275 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,276 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,276 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:53:24,278 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,278 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:53:24,280 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,280 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:53:24,282 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:53:24,282 [1520] DEBUG metrics - Prepared sql query parameters : [5,1] +01/30/13 11:53:24,284 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:24,284 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,284 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,285 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,286 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,286 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,288 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,288 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,288 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,288 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,288 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,288 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,288 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,289 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,289 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,289 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,290 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,290 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,290 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,291 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:53:24,291 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,291 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,292 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,292 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,292 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.account_type = 'Prospect') )) AND vtiger_account.accountid > 0 +01/30/13 11:53:24,294 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,294 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:53:24,296 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,296 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,296 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,296 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,296 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,297 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,297 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,297 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,297 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:53:24,301 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,301 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,302 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,302 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,302 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:53:24,306 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,306 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,306 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,306 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:53:24,308 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,308 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,310 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,310 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,310 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,310 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,310 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,310 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:53:24,314 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,314 [1520] DEBUG metrics - Prepared sql query parameters : [13,25,28,29] +01/30/13 11:53:24,322 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,322 [1520] DEBUG metrics - Prepared sql query parameters : [36] +01/30/13 11:53:24,324 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,324 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,324 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,324 [1520] DEBUG metrics - Prepared sql query parameters : [33] +01/30/13 11:53:24,326 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,326 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,326 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,326 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,328 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,328 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,328 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,328 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:53:24,330 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,330 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:53:24,332 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,332 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:53:24,334 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:53:24,334 [1520] DEBUG metrics - Prepared sql query parameters : [14,1] +01/30/13 11:53:24,336 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,336 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,336 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,337 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,338 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,338 [1520] DEBUG metrics - Prepared sql query parameters : [Contacts] +01/30/13 11:53:24,342 [1520] DEBUG metrics - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:24,342 [1520] DEBUG metrics - in getColumnFields Contacts +01/30/13 11:53:24,342 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,342 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,342 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,342 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,342 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,342 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:53:24,349 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,349 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,350 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,350 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:53:24,352 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,352 [1520] DEBUG metrics - Prepared sql query parameters : [Products] +01/30/13 11:53:24,354 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:53:24,354 [1520] DEBUG metrics - Entering getColumnFields(Products) method ... +01/30/13 11:53:24,354 [1520] DEBUG metrics - in getColumnFields Products +01/30/13 11:53:24,354 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,354 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,354 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,354 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,355 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,355 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:53:24,360 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,360 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,360 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,361 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:53:24,361 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,361 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,361 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,361 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,361 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,361 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:53:24,363 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:24,363 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,363 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,363 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,365 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,365 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,367 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,367 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,367 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,367 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,367 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,367 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,367 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,368 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,368 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,368 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,368 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,368 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,369 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,369 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,369 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,369 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,369 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,370 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,370 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,370 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,370 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,370 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,370 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,370 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,370 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,370 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,370 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,371 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,371 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,371 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:53:24,371 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,371 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,372 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,372 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:53:24,372 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,372 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,373 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_troubletickets.ticketid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_troubletickets.status <> 'Closed') )) AND vtiger_troubletickets.ticketid > 0 +01/30/13 11:53:24,375 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,375 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:53:24,377 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,377 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,377 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,377 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,378 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,378 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,378 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,378 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,378 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:53:24,384 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,384 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,384 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,385 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:53:24,386 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,386 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,386 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,387 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:53:24,389 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,389 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,389 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,389 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,389 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,389 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,390 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,391 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,391 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:53:24,394 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,394 [1520] DEBUG metrics - Prepared sql query parameters : [7,13,15,16] +01/30/13 11:53:24,405 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,405 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,409 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,409 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,409 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,409 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,412 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,412 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,414 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,414 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,419 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:53:24,419 [1520] DEBUG metrics - Prepared sql query parameters : [2,1] +01/30/13 11:53:24,421 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,421 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,422 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,422 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,422 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,422 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,422 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,423 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,423 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,423 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,423 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,423 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,423 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,424 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,424 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,424 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,424 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,424 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,425 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,425 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,425 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,425 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,425 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,425 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,426 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,426 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,426 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:53:24,426 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,426 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,427 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:53:24,427 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:53:24,427 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,427 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = vtiger_crmentity.crmid INNER JOIN vtiger_leadsubdetails ON vtiger_leaddetails.leadid = vtiger_leadsubdetails.leadsubscriptionid WHERE vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( vtiger_leaddetails.leadstatus = 'Hot') )) AND vtiger_leaddetails.leadid > 0 +01/30/13 11:53:24,430 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,430 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,430 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,430 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,432 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,432 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,432 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,432 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,435 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,436 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,436 [1520] DEBUG metrics - Prepared sql query parameters : [Potentials] +01/30/13 11:53:24,439 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,439 [1520] DEBUG metrics - Prepared sql query parameters : [2,1,3] +01/30/13 11:53:24,448 [1520] DEBUG metrics - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:53:24,448 [1520] DEBUG metrics - Prepared sql query parameters : [113] +01/30/13 11:53:24,450 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,450 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,481 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,481 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:53:24,483 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,483 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,483 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,483 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,487 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,487 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,487 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,487 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:53:24,490 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,490 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:53:24,492 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,492 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:53:24,494 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:53:24,494 [1520] DEBUG metrics - Prepared sql query parameters : [11,1] +01/30/13 11:53:24,496 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,497 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,497 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,497 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,498 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,499 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,499 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,499 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:53:24,500 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:24,500 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,500 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,501 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,502 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,502 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,504 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,504 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,504 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,504 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,504 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,504 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,504 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,504 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,505 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,505 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,505 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,506 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,506 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,506 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:53:24,507 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,507 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,508 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,508 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,508 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_potential.potentialid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_potential.sales_stage = 'Closed Won') )) AND vtiger_potential.potentialid > 0 +01/30/13 11:53:24,512 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,513 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,513 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,513 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,515 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,515 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,515 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,515 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,517 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,517 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:53:24,521 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,521 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:53:24,523 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,523 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:53:24,525 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:53:24,525 [1520] DEBUG metrics - Prepared sql query parameters : [17,1] +01/30/13 11:53:24,527 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:53:24,528 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,528 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,528 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:53:24,529 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,529 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,530 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,532 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:24,532 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,532 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,532 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,534 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,534 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,535 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,535 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,535 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,535 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,536 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,536 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,536 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,537 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,537 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,537 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,538 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,538 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,538 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,539 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,539 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:53:24,540 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:53:24,540 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,540 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,540 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,540 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,541 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,541 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') )) AND vtiger_quotes.quoteid > 0 +01/30/13 11:53:24,543 [1520] INFO metrics - Metrics :: Successfully build the Metrics +01/30/13 11:53:24,543 [1520] DEBUG metrics - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:24,543 [1520] DEBUG metrics - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:24,543 [1520] DEBUG metrics - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:24,543 [1520] DEBUG metrics - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:24,544 [1520] DEBUG metrics - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:24,546 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,546 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,549 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:53:24,549 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,550 [1520] DEBUG metrics - Entering getMyTickets() method ... +01/30/13 11:53:24,550 [1520] DEBUG metrics - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:24,550 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,550 [1520] DEBUG metrics - Prepared sql query being executed : SELECT vtiger_troubletickets.*, vtiger_crmentity.* + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + INNER JOIN vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_crmentity.smownerid = ? and vtiger_crmentity.deleted = 0 and vtiger_troubletickets.ticketid > 0 and vtiger_troubletickets.status <> 'Closed' AND vtiger_crmentity.setype='HelpDesk' ORDER BY createdtime DESC LIMIT 0,5 +01/30/13 11:53:24,550 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,554 [1520] DEBUG metrics - Entering getParentLink(22) method ... +01/30/13 11:53:24,554 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:53:24,555 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,557 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:53:24,557 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,558 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:53:24,559 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:53:24,559 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:53:24,559 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:53:24,560 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:53:24,560 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:53:24,562 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:53:24,562 [1520] DEBUG metrics - Entering getParentLink(29) method ... +01/30/13 11:53:24,562 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:53:24,562 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,564 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:53:24,564 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,565 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:53:24,566 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:53:24,566 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,566 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,568 [1520] DEBUG metrics - Exiting getMyTickets method ... +01/30/13 11:53:24,570 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,570 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:53:24,573 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:53:24) method ... +01/30/13 11:53:24,573 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:24,573 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:24,573 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:53:24,573 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:24,574 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:53:24,574 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:53:24,574 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:53:24,574 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:53:24,574 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:53:24,575 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,575 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:53:24,575 [1520] DEBUG metrics - Prepared sql query parameters : [9,16] +01/30/13 11:53:24,583 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:24,583 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,583 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:53:24,584 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,584 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,584 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:24,584 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,584 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and vtiger_activity.activitytype not in ('Emails') AND ( vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and ( vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held') ) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:53:24,590 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:53:24,590 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:24,590 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:45:00) method ... +01/30/13 11:53:24,590 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:24,591 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:53:24,591 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:24,591 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:24,591 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,593 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,593 [1520] DEBUG metrics - Prepared sql query parameters : [8] +01/30/13 11:53:24,595 [1520] DEBUG metrics - Entering fetchUserGroupids(1) method ... +01/30/13 11:53:24,595 [1520] DEBUG metrics - Entering getAllUserGroups(1) method... +01/30/13 11:53:24,595 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_users2group where userid=? +01/30/13 11:53:24,595 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,597 [1520] DEBUG metrics - Entering fetchUserRole(1) method ... +01/30/13 11:53:24,597 [1520] DEBUG metrics - Prepared sql query being executed : select roleid from vtiger_user2role where userid=? +01/30/13 11:53:24,597 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,598 [1520] DEBUG metrics - Exiting fetchUserRole method ... +01/30/13 11:53:24,599 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2role where roleid=? +01/30/13 11:53:24,599 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:53:24,600 [1520] DEBUG metrics - Entering getParentRole(H2) method ... +01/30/13 11:53:24,600 [1520] DEBUG metrics - Entering getRoleInformation(H2) method ... +01/30/13 11:53:24,600 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:53:24,600 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:53:24,602 [1520] DEBUG metrics - Exiting getRoleInformation method ... +01/30/13 11:53:24,602 [1520] DEBUG metrics - Exiting getParentRole method ... +01/30/13 11:53:24,602 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2rs where roleandsubid in (?,?) +01/30/13 11:53:24,602 [1520] DEBUG metrics - Prepared sql query parameters : [H1,H2] +01/30/13 11:53:24,604 [1520] DEBUG metrics - Entering getAllParentGroups(3) method... +01/30/13 11:53:24,604 [1520] DEBUG metrics - Prepared sql query being executed : select groupid from vtiger_group2grouprel where containsgroupid=? +01/30/13 11:53:24,604 [1520] DEBUG metrics - Prepared sql query parameters : [3] +01/30/13 11:53:24,605 [1520] DEBUG metrics - Exiting getAllParentGroups method... +01/30/13 11:53:24,606 [1520] DEBUG metrics - Exiting getAllUserGroups method... +01/30/13 11:53:24,606 [1520] DEBUG metrics - Exiting fetchUserGroupids method ... +01/30/13 11:53:24,606 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:53:24,606 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,606 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:53:24,607 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,607 [1520] DEBUG metrics - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:24,608 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,608 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:53:24,608 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,608 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:53:24,609 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,609 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:53:24,610 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,610 [1520] DEBUG metrics - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:53:24,610 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,611 [1520] DEBUG metrics - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:53:24,611 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,612 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:53:24,612 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,612 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:53:24,613 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,613 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:53:24,614 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,614 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:53:24,615 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,615 [1520] DEBUG metrics - Entering isPermitted(Documents,index,) method ... +01/30/13 11:53:24,616 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,616 [1520] INFO metrics - Here is the where clause for the list view: select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:53:24,616 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:53:24,616 [1520] DEBUG metrics - Prepared sql query parameters : [3,3,3,3,3,3,3,3,3,3,3,3] +01/30/13 11:53:24,626 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,626 [1520] DEBUG metrics - Prepared sql query parameters : [9] +01/30/13 11:53:24,628 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:53:24,628 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,630 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:24,630 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,630 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,630 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:53:24,633 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,633 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,633 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,633 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,633 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,633 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,633 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,633 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,641 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,641 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,642 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:53:24,642 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,644 [1520] DEBUG metrics - Entering getCvIdOfAll(SalesOrder) +01/30/13 11:53:24,644 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:53:24,645 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:53:24,648 [1520] DEBUG metrics - Exiting getCvIdOfAll(SalesOrder) +01/30/13 11:53:24,649 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,649 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,649 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,649 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,651 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,651 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,651 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,651 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,653 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,653 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,653 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,653 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,653 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,654 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,655 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,655 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:53:24,658 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,659 [1520] DEBUG metrics - Prepared sql query parameters : [22,61,63,65,66,85] +01/30/13 11:53:24,674 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,674 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:53:24,676 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,676 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,676 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,676 [1520] DEBUG metrics - Prepared sql query parameters : [27] +01/30/13 11:53:24,678 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,678 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,679 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,679 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,681 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,681 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,733 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,734 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:53:24,736 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,736 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,736 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,736 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,739 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,739 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,739 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,739 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:53:24,741 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,742 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,783 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,783 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:53:24,786 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,786 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:53:24,788 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,789 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:53:24,791 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:53:24) method ... +01/30/13 11:53:24,791 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:24,792 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,792 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,800 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:24,800 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,801 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,801 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:24,803 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:24,803 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:24,806 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:53:24,806 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,806 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,806 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:53:24,808 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,809 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,809 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,809 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,809 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,810 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,810 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,810 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,810 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,810 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,811 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,811 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,811 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,811 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,812 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,812 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,812 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,812 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,812 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,813 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,813 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,813 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,813 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,813 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,814 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,815 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,815 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,815 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:53:24,815 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:53:24,816 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,816 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:24,818 [1520] DEBUG metrics - query being executed : SELECT vtiger_salesorder.salesorderid, vtiger_salesorder.subject, vtiger_salesorder.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_salesorder.salesorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_salesorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_salesorder.salesorderid > 0 LIMIT 5 +01/30/13 11:53:24,822 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:53:24,822 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:53:24,823 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:53:24,823 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:53:24,823 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,823 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,823 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,824 [1520] DEBUG metrics - Entering getURLstring(SalesOrder) method ... +01/30/13 11:53:24,824 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:53:24,824 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,824 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,824 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:24,825 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:24,825 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:24,826 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:24,827 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:24,827 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,828 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:53:24,828 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:24,828 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,828 [1520] DEBUG metrics - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:53:24,829 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:24,830 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,830 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:24,830 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:24,834 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:24,834 [1520] DEBUG metrics - Prepared sql query parameters : [10] +01/30/13 11:53:24,837 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:53:24,837 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:24,840 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:24,840 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,840 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:24,840 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:53:24,843 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:24,843 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,843 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:24,844 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:53:24,851 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:24,852 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,852 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,853 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:53:24,853 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:53:24,856 [1520] DEBUG metrics - Entering getCvIdOfAll(Invoice) +01/30/13 11:53:24,856 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:53:24,856 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:53:24,859 [1520] DEBUG metrics - Exiting getCvIdOfAll(Invoice) +01/30/13 11:53:24,859 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,859 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,859 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,859 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:53:24,861 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,861 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,862 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:24,862 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:53:24,864 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:24,864 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:24,864 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,864 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:24,864 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,864 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:24,865 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:24,866 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:53:24,871 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:24,871 [1520] DEBUG metrics - Prepared sql query parameters : [23,67,69,71,72] +01/30/13 11:53:24,885 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,885 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:53:24,887 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,887 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,887 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,887 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:24,889 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,890 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,976 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,976 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:53:24,978 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,978 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,978 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,979 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:24,983 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,983 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,983 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:24,984 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:53:24,986 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:24,986 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:24,987 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:24,987 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:24,990 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:24,990 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:24,992 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:24,992 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:24,994 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:24,995 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:25,003 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:25,003 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,003 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,004 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:25,006 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:25,006 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:25,009 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:25,009 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,009 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,009 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:25,011 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,011 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,012 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,012 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,012 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,012 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,012 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,012 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,013 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,013 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,013 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,013 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,013 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,013 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,013 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,013 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,014 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,014 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,014 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,014 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,014 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,014 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,014 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,014 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,015 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,015 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,015 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,015 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,015 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,015 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,015 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,015 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,016 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,016 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,016 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,017 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,017 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,017 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:25,017 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:25,019 [1520] DEBUG metrics - query being executed : SELECT vtiger_invoice.invoiceid, vtiger_invoice.subject, vtiger_invoice.salesorderid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_invoice.invoiceid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_invoice.invoicestatus <> 'Paid') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_invoice.invoiceid > 0 LIMIT 5 +01/30/13 11:53:25,024 [1520] DEBUG metrics - Entering getNavigationValues(1,4,20) method ... +01/30/13 11:53:25,024 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:53:25,024 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:53:25,024 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:53:25,024 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:53:25,024 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,024 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,025 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Entering getURLstring(Invoice) method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,025 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,026 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,027 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,027 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,027 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:53:25,027 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,027 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,028 [1520] DEBUG metrics - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:53:25,028 [1520] DEBUG metrics - Entering getEntityName(SalesOrder) method ... +01/30/13 11:53:25,028 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:25,028 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:53:25,033 [1520] DEBUG metrics - Prepared sql query being executed : SELECT subject,salesorderid FROM vtiger_salesorder WHERE salesorderid IN (?,?) +01/30/13 11:53:25,033 [1520] DEBUG metrics - Prepared sql query parameters : [79,83] +01/30/13 11:53:25,035 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:25,036 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,036 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:25,036 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:25,038 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,038 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,038 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,039 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,039 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:25,040 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:25,040 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,040 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,041 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,042 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:25,042 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,044 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,044 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,044 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,045 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,045 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,045 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,045 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:25,045 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:53:25,046 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,046 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,046 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,046 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,047 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,051 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,051 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,051 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:25,051 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:25,051 [1520] DEBUG metrics - Prepared sql query parameters : [89] +01/30/13 11:53:25,053 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,053 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,053 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,054 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,054 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,054 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,055 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:25,055 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:25,055 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,055 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:25,055 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,055 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,055 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,056 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,056 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:25,056 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,058 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,058 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,058 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,059 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,059 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,059 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,059 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:25,059 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:53:25,060 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,060 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,060 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,060 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,061 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,065 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,066 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,066 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:25,066 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:25,066 [1520] DEBUG metrics - Prepared sql query parameters : [90] +01/30/13 11:53:25,068 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,068 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,068 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,069 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,069 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,069 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,069 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:25,069 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:25,069 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,070 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:25,070 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,070 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,070 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,071 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,071 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:25,071 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,073 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,073 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,073 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,074 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,074 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,074 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,074 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:25,074 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:53:25,074 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,075 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,075 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,075 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,075 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,080 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,080 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,080 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:25,080 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:25,080 [1520] DEBUG metrics - Prepared sql query parameters : [91] +01/30/13 11:53:25,084 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,084 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,084 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:25,085 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:25,085 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,085 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,086 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,086 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,086 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:25,087 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,088 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,088 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,089 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,089 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,089 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,089 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,090 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:25,090 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:53:25,090 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,090 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,090 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,090 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,091 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,095 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:25,095 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,095 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:25,096 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:25,096 [1520] DEBUG metrics - Prepared sql query parameters : [92] +01/30/13 11:53:25,099 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:25,100 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:53:25,102 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:53:25,102 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,103 [1520] DEBUG metrics - Entering getNewLeads() method ... +01/30/13 11:53:25,103 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:25,103 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,103 [1520] DEBUG metrics - Prepared sql query being executed : select lead_view from vtiger_users where id =? +01/30/13 11:53:25,103 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:25,105 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 00:00:00) method ... +01/30/13 11:53:25,105 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,106 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:25,106 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:53:25,106 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:25,106 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:53:25,106 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.firstname, vtiger_leaddetails.lastname, vtiger_leaddetails.leadid, vtiger_leaddetails.company + from vtiger_leaddetails inner join vtiger_crmentity on vtiger_leaddetails.leadid = vtiger_crmentity.crmid + where vtiger_crmentity.deleted =0 AND vtiger_leaddetails.converted =0 AND vtiger_leaddetails.leadid > 0 AND + vtiger_leaddetails.leadstatus not in ("Lost Lead", "Junk Lead","丢失的潜在客户","没有潜在价值") + AND vtiger_crmentity.createdtime >=? AND vtiger_crmentity.smownerid = ? LIMIT 0,5 +01/30/13 11:53:25,106 [1520] DEBUG metrics - Prepared sql query parameters : [2013-01-30 00:00:00,1] +01/30/13 11:53:25,109 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:25,110 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:25,112 [1520] DEBUG metrics - Exiting getNewLeads method ... +01/30/13 11:53:25,114 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:25,114 [1520] DEBUG metrics - Prepared sql query parameters : [12] +01/30/13 11:53:25,116 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:53:25,117 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,119 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:25,119 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,119 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:25,119 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:53:25,121 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,121 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,121 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,121 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,121 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,121 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,121 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:25,122 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:25,130 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,130 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,131 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:53:25,131 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:25,136 [1520] DEBUG metrics - Entering getCvIdOfAll(PurchaseOrder) +01/30/13 11:53:25,136 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:53:25,136 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:53:25,138 [1520] DEBUG metrics - Exiting getCvIdOfAll(PurchaseOrder) +01/30/13 11:53:25,138 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,138 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,138 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,138 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:25,140 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,140 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,140 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,140 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:53:25,142 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,142 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,143 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:25,143 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:53:25,147 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:25,147 [1520] DEBUG metrics - Prepared sql query parameters : [21,55,57,59,60] +01/30/13 11:53:25,161 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:25,161 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:25,163 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:25,163 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:25,163 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:25,163 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:53:25,164 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:25,165 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:25,222 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:25,222 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:53:25,224 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:25,224 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:25,225 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:25,225 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:53:25,227 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:53:25,228 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:53:25,228 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:25,229 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:53:25,231 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:25,231 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:53:25,233 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:25,233 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:53:25,237 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:53:25) method ... +01/30/13 11:53:25,238 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,238 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:25,238 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:25,247 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:53:25,247 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,247 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,247 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:53:25,249 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:25,250 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:53:25,252 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:25,252 [1520] DEBUG metrics - Prepared sql query parameters : [Vendors] +01/30/13 11:53:25,257 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:53:25,257 [1520] DEBUG metrics - Entering getColumnFields(Vendors) method ... +01/30/13 11:53:25,258 [1520] DEBUG metrics - in getColumnFields Vendors +01/30/13 11:53:25,258 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:53:25,258 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,258 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:53:25,258 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,259 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:25,259 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:53:25,266 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:53:25,267 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,267 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,267 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:53:25,267 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:53:25,268 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,268 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:53:25,268 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,268 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:25,268 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:53:25,270 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,271 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,271 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,271 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,271 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,271 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,272 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,272 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,272 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,272 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,273 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,273 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,273 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,273 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,273 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,274 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,274 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,274 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,274 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,274 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,275 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,275 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,275 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,275 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,276 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,277 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,277 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,277 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:53:25,277 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:53:25,278 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:25,278 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:53:25,280 [1520] DEBUG metrics - query being executed : SELECT vtiger_purchaseorder.purchaseorderid, vtiger_purchaseorder.subject, vtiger_purchaseorder.vendorid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_purchaseorder.purchaseorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_purchaseorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_purchaseorder.purchaseorderid > 0 LIMIT 5 +01/30/13 11:53:25,283 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:53:25,284 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:53:25,284 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:25,285 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,285 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:53:25,285 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:53:25,285 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:53:25,286 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:53:25,286 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:25,286 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,286 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:53:25,286 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:25,287 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,287 [1520] DEBUG metrics - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:53:25,287 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:25,288 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:53:25,288 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:25,288 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:53:25,292 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:53:25,292 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:53:25,294 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:53:25) method ... +01/30/13 11:53:25,294 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,294 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:25,295 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:53:25,295 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:53:25,295 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:53:25,295 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:53:25,296 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:25,296 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,297 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:53:25,297 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,297 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:53:25,297 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:53:25,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:53:25,298 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and (vtiger_activity.activitytype not in ('Emails')) AND (vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and (vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held')) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:53:25,304 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:53:25,304 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,304 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:45:00) method ... +01/30/13 11:53:25,305 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,305 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:53:25,305 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:53:25,305 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:25,305 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:53:25,310 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:25,310 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:25,310 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:25,311 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:25,311 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:53:25,311 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:53:25,311 [1520] DEBUG index - in CalendarAjax +01/30/13 11:53:25,312 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:53:25,312 [1520] INFO index - current module is Calendar +01/30/13 11:53:25,359 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:25,359 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:25,360 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:25,360 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:25,360 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:25,360 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:25,360 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:25,360 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:25,360 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:25,371 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:25,371 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:25,371 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:25,371 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:25,372 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:25,373 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:25,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,373 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:25,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,374 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:25,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,374 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:25,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,375 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:25,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,375 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:25,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,376 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:25,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,376 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:25,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,376 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:25,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,377 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:25,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,377 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:25,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,378 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:25,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,378 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:25,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,379 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:25,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,379 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:25,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,380 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:25,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,380 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:25,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,381 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:25,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,381 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:25,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,382 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:25,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,382 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:25,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,383 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:25,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,383 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:25,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,383 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:25,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,384 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:25,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,384 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:25,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,385 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:25,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,385 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:25,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,386 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:25,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,386 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:25,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,386 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:25,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,387 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:25,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,387 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:25,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,388 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:25,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,388 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:25,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,389 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:25,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,389 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:25,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,390 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:25,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,390 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:25,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,391 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:25,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,391 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:25,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,392 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:25,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,392 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:25,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,393 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:25,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,393 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:25,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,394 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:25,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,394 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:25,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:25,395 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:25,395 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:25,395 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:25,395 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:25,395 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:25,397 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:25,397 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:25,399 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:25,399 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:25,401 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:25,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:25,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:25,402 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:25,402 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:25,402 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:25,402 [1520] DEBUG index - skipping headers +01/30/13 11:53:25,403 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:53:25,403 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:25,408 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:25,409 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:53:25,409 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:53:25,409 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:53:25,413 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:54')) +01/30/13 11:53:25,418 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:53:31,763 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:31,887 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:31,887 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:31,887 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:31,888 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:31,888 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'index', +) +01/30/13 11:53:31,888 [1520] INFO index - About to take action index +01/30/13 11:53:31,888 [1520] DEBUG index - in index +01/30/13 11:53:31,888 [1520] INFO index - current page is modules/Contacts/index.php +01/30/13 11:53:31,888 [1520] INFO index - current module is Contacts +01/30/13 11:53:31,921 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:31,921 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:31,921 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:31,921 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:31,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:31,922 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:31,922 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:31,922 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:31,922 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:31,933 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:31,933 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:31,934 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:31,934 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:31,934 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:31,935 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:31,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,935 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:31,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,936 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:31,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,936 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:31,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,937 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:31,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,937 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:31,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,938 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:31,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,938 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:31,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,939 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:31,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,939 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:31,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,940 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:31,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,940 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:31,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,941 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:31,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,941 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:31,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,942 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:31,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,942 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:31,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,943 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:31,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,943 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:31,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,944 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:31,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,944 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:31,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,945 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:31,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,945 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:31,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,946 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:31,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,946 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:31,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,947 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:31,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,947 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:31,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,948 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:31,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,948 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:31,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,949 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:31,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,949 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:31,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,950 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:31,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,950 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:31,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,951 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:31,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,951 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:31,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,952 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:31,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,952 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:31,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,953 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:31,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,953 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:31,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,954 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:31,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,954 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:31,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,955 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:31,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,955 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:31,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,956 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:31,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,956 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:31,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,957 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:31,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,957 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:31,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,958 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:31,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:31,958 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:31,962 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:31,962 [1520] DEBUG index - Prepared sql query parameters : [414,1,Contacts,index,,2013-01-30 11:53:31] +01/30/13 11:53:31,966 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:31,967 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:31,967 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:31,967 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:31,969 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:31,969 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:31,970 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:31,971 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:31,972 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:31,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:31,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,973 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:31,973 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:31,973 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:31,973 [1520] DEBUG index - including headers +01/30/13 11:53:31,973 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:31,974 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:31,977 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:31,977 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:31,980 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:53:31,980 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:53:31,981 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,981 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:53:31,981 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,981 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:53:31,982 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,982 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:53:31,982 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,982 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,983 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:53:31,984 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:53:31,984 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:53:31,984 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:53:31,984 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:53:31,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:31,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,993 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:53:31,993 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:53:31,994 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:31,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:31,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,994 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:53:31,994 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:53:31,995 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:31,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:31,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,996 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:53:31,996 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:53:31,996 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:31,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:31,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,998 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:53:31,998 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:53:31,998 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:31,998 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:31,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,999 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:53:31,999 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:53:31,1000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:31,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:31,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:31,1000 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:31,1000 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:32,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,001 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:53:32,001 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:53:32,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:53:32,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,002 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:53:32,002 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:53:32,003 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,003 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:32,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,004 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:53:32,004 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:53:32,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:32,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,005 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:53:32,005 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:53:32,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:32,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,006 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:53:32,006 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:53:32,007 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,007 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:32,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,008 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:53:32,008 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:53:32,008 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:32,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,009 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:53:32,009 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:53:32,010 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:32,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,010 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:53:32,010 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:53:32,011 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,011 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:32,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,012 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:53:32,012 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:53:32,012 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,012 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:32,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,013 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:53:32,013 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:53:32,013 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,014 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:32,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,015 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:53:32,015 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:53:32,015 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:32,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,016 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:53:32,016 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:53:32,016 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:32,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,017 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:53:32,017 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:53:32) method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:53:32) method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:53:32,018 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,019 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,019 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,019 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,019 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:53:32,019 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:53:32,020 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:53:32,025 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,025 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,025 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,025 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,025 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,025 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,027 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,028 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,029 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,031 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,032 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,034 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,034 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,034 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,034 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,034 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:53:32,038 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:32,038 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,039 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:32,039 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:32,041 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,041 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,041 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,041 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,042 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,042 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,042 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:53:32,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,042 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:53:32,043 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,043 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,043 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,044 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,045 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:53:32,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,046 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:32,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,046 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,047 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:53:32,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,048 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:53:32,048 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,048 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:53:32,049 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,049 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:53:32,049 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,049 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,050 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:53:32,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,051 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:32,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,051 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,052 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:53:32,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,053 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:53:32,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,053 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:53:32,053 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:53:32,054 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:32,057 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:53:32,058 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,058 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:53:32,059 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,059 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:53:32,059 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,060 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:53:32,060 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,061 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:53:32,061 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,061 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:32,061 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:53:32,064 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:53:32,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,064 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:53:32,064 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:53:32,067 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:53:32,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,075 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:32,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,076 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:32,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:32,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,076 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:32,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,077 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,077 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:32,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,077 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:32,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:32,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,077 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:32,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:32,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,078 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:32,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:32,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,079 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:53:32,079 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:32,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,079 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:32,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:53:32,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,079 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:53:32,082 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:32,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,082 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:32,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:53:32,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,083 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:53:32,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:53:32,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,084 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:53:32,084 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:53:32,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,084 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:53:32,084 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:32,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,085 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:32,085 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:32,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,085 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:53:32,085 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:53:32,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,086 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:53:32,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:53:32,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,086 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:53:32,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:53:32,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,087 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:53:32,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:32,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,087 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:32,088 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:32,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,088 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:53:32,088 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:32,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,088 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:32,088 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:32,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,089 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:32,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:32,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,089 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:32,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:32,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,090 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:32,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:32,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,090 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:32,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:32,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,090 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:32,090 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:32,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,091 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:32,091 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:32,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,091 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:32,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:32,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,092 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:32,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:32,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,092 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:32,092 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:32,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,093 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:32,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:32,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,094 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:32,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,095 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:53:32,095 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:53:32,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,099 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,099 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,099 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,100 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,100 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:53:32,100 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,101 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:53:32,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,101 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:53:32,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,102 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:53:32,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,103 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:53:32,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,103 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:53:32,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,104 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:32,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,105 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:53:32,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,105 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:53:32,105 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,105 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,106 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,106 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,106 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:32,106 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,116 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,117 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,117 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:53:32,117 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,117 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:53:32,117 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:53:32,121 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:53:32,121 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,122 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,123 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:53:32,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,123 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:53:32,124 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:53:32,124 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:53:32,124 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:53:32,124 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:32,124 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:53:32,125 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:53:32,125 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:53:32,125 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:53:32,125 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:53:32,128 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:32,128 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:32,130 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:32,130 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:32,132 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:32,132 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:53:32,132 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:53:32,132 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:53:32,132 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:53:32,132 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:53:32,133 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:53:32,133 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:53:32,133 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:53:32,133 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:53:32,135 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:53:32,135 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:53:32,136 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:53:32,136 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:53:32,139 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:32,139 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:53:32,139 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,139 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:53:32,142 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,142 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,142 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,143 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,143 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,144 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,144 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =? +01/30/13 11:53:32,144 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:53:32,146 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where setdefault=1 and entitytype=? +01/30/13 11:53:32,146 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:53:32,148 [1520] DEBUG index - Entering isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:53:32,149 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:53:32,149 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,151 [1520] DEBUG index - Entering when status=0 +01/30/13 11:53:32,151 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:53:32,151 [1520] DEBUG index - Exiting isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:53:32,151 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,151 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:53:32,151 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,155 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,155 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:53:32,155 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,157 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:53:32,157 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:53:32,159 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:53:32,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,160 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:53:32,160 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:53:32,160 [1520] DEBUG index - Entering isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:53:32,160 [1520] DEBUG index - Entering when status=0 +01/30/13 11:53:32,161 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:53:32,161 [1520] DEBUG index - Exiting isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:53:32,161 [1520] DEBUG index - Entering isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:53:32,161 [1520] DEBUG index - Entering when status=0 +01/30/13 11:53:32,161 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:53:32,161 [1520] DEBUG index - Exiting isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:53:32,162 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,162 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:32,162 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,164 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,164 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:32,164 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,167 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,167 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:53:32,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,167 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:53:32,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,169 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:53:32,169 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:53:32,174 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:53:32,174 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:53:32,194 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:53:32,201 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:32,201 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:53:32,207 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:32,207 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:32,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,208 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,209 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,210 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,211 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,212 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,213 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,214 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:32,215 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:53:32,219 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:53:32,219 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,219 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:53:32,222 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:32,222 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:32,267 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,267 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:53:32,269 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,269 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:53:32,271 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,271 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:53:32,273 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,274 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:53:32,276 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:32,276 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:53:32,325 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,325 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:53:32,329 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,330 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:53:32,332 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,332 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:53:32,334 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,335 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:53:32,337 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,337 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:53:32,339 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,339 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:53:32,341 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,341 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:53:32,343 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,343 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:53:32,345 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,345 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:53:32,347 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:32,347 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:32,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,381 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:53:32,383 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,384 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:53:32,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,386 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:53:32,388 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,388 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:53:32,390 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:53:32,390 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:32,395 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,395 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:53:32,397 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,397 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:53:32,401 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:53:32,401 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:53:32,434 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,435 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:53:32,437 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,437 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:53:32,439 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,439 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:53:32,441 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,441 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:53:32,443 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,443 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:53:32,446 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,446 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:53:32,448 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,448 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:53:32,450 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,450 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:53:32,452 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,452 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:53:32,454 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,455 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:53:32,456 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,457 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:53:32,459 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:53:32,459 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:53:32,461 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:32,465 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:32,466 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:32,469 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:32,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:32,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,470 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:53:32,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:53:32,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,471 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:53:32,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:32,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,471 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:53:32,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:53:32,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,472 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:53:32,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:32,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,472 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:53:32,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:53:32,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,473 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:53:32,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:32,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,473 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:53:32,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:53:32,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,474 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:53:32,474 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:32,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,474 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:32,474 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:53:32,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,475 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:53:32,475 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:32,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,475 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:53:32,475 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:53:32,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,476 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:53:32,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:32,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,476 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:53:32,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:53:32,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,477 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:53:32,477 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:32,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,477 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:53:32,478 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:53:32,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,478 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:53:32,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:32,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,478 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:53:32,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:32,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,479 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:53:32,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:32,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,479 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:53:32,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:53:32,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,480 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:53:32,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,481 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,481 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:53:32,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,482 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,482 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:53:32,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:32,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,482 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:53:32,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:53:32,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,482 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:53:32,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:32,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,483 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:53:32,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:53:32,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,483 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:53:32,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:32,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,483 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:53:32,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:53:32,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,484 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:53:32,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:32,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,484 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:53:32,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:53:32,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,484 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:53:32,484 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:32,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,485 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:53:32,485 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:53:32,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,485 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:53:32,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:32,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,485 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:53:32,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:53:32,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,485 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:53:32,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:32,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,487 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:53:32,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:53:32,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,487 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:53:32,487 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:32,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,487 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:53:32,488 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:53:32,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,488 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:53:32,488 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:32,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,488 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:53:32,488 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:53:32,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,488 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:53:32,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:32,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,489 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:53:32,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:53:32,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,489 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:53:32,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:32,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,489 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:53:32,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:53:32,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,489 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:53:32,490 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:32,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,490 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:53:32,490 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:53:32,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,490 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:53:32,490 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:32,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,490 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:53:32,490 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:53:32,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,491 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:53:32,491 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:32,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,491 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:53:32,491 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:53:32,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,491 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:53:32,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:32,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,492 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:53:32,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:53:32,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,492 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:53:32,492 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:32,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,492 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:53:32,492 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:53:32,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,492 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:53:32,493 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,493 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,547 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:32,547 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:32,549 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,550 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,582 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:53:32,582 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:53:32,584 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:32,585 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:32,615 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:53:32,616 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,619 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:53:32,619 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,621 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:53:32,622 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,624 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,624 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:53:32,627 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:53:32,627 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:53:32,627 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,628 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:32,628 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:53:32,642 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,642 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,643 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,643 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:53:32,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,643 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:32,644 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:53:32,646 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:53:32,646 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:32,649 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:32,649 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:32,649 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:32,649 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:32,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,650 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,650 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:32,650 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:32,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,651 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:32,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,651 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:53:32,651 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:32,654 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:53:32,654 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:53:32,656 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,656 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,656 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,657 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,657 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,657 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,658 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,658 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,658 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,658 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,659 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,659 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,659 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,659 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,660 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,660 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,660 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,661 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,661 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,661 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,661 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,662 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,662 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,662 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,662 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,662 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,662 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,662 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,662 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,662 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,663 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,663 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,663 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,663 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,663 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,664 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,664 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 +01/30/13 11:53:32,667 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 20 +01/30/13 11:53:32,670 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,670 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,671 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,672 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,673 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,673 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:53:32,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,674 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:53:32,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,674 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:53:32,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,674 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:53:32,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,675 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:53:32,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,675 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:53:32,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,675 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:53:32,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,675 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:53:32,675 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,676 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:53:32,677 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:53:32,677 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:32,677 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:53:32,679 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?) +01/30/13 11:53:32,679 [1520] DEBUG index - Prepared sql query parameters : [16,8,14,20,18,10,2,] +01/30/13 11:53:32,682 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:53:32,682 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:53:32,682 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:53:32,684 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:53:32,684 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,1,1] +01/30/13 11:53:32,686 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:53:32,686 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,686 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:53:32,686 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:32,688 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,688 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,688 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,689 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,689 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,689 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,689 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,690 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,690 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,690 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,690 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,691 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,691 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,691 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,692 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,692 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,692 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,692 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,693 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,693 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,693 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,693 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,694 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,694 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,694 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,694 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,695 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,695 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,695 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,695 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,696 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,696 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,697 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,698 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,699 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,699 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,699 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,699 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,699 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,700 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,703 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,703 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,703 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,704 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,704 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,704 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,704 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:53:32,706 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,706 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,706 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,707 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,707 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,707 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,707 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,708 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,708 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,709 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,709 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,709 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,709 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,710 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,710 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,710 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,710 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,711 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,711 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,711 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,711 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,711 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,712 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,712 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,712 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,712 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,713 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,713 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,713 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,713 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,714 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,714 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,714 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,714 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,715 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,715 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,715 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,715 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,716 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,716 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,716 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,716 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,717 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,717 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,717 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,717 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,717 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,718 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,721 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,721 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,721 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,722 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,722 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,722 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,722 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:53:32,724 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,724 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,725 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,725 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,725 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,725 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,726 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,726 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,726 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,727 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,727 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,727 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,728 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,728 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,728 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,729 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,729 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,729 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,729 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,729 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,730 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,730 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,730 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,730 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,731 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,731 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,731 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,731 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,732 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,732 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,732 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,732 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,733 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,733 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,734 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,734 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,734 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,734 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,735 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,735 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,735 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,735 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,736 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,736 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,739 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,739 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,739 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,740 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,740 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,740 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,740 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:53:32,742 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,743 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,743 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,743 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,743 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,744 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,744 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,745 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,745 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,745 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,746 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,746 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,746 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,746 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,747 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,747 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,747 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,747 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,747 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,748 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,748 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,748 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,748 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,749 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,749 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,749 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,749 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,750 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,750 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,750 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,750 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,751 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,751 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,752 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,752 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,752 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,752 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,752 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,753 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,753 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,753 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,753 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,754 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,754 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,757 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,757 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,757 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,758 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,758 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,758 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,758 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:53:32,760 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,760 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,761 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,761 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,761 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,761 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,762 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,762 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,762 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,763 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,763 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,763 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,763 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,764 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,764 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,764 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,764 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,765 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,765 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,765 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,765 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,765 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,766 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,766 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,766 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,766 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,767 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,767 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,767 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,767 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,768 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,768 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,768 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,768 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,769 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,769 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,770 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,770 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,770 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,770 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,771 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,771 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,771 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,771 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,772 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,772 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,775 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,775 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,775 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,776 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,776 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,776 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,776 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:53:32,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,779 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,779 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,779 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,779 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,780 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,780 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,781 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,781 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,781 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,781 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,781 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,782 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,782 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,782 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,782 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,783 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,783 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,783 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,783 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,783 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,784 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,784 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,784 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,784 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,785 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,785 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,785 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,785 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,786 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,786 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,786 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,786 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,787 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,787 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,788 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,788 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,788 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,788 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,789 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,789 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,789 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,789 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,790 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,790 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,793 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,793 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,794 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,794 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,794 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,794 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,794 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:53:32,796 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,797 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,797 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,797 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,797 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,798 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,798 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,799 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,799 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,799 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,799 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,799 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,800 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,800 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,800 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,800 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,801 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,801 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,801 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,801 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,801 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,802 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,802 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,803 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,803 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,803 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,803 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,804 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,804 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,804 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,804 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,805 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,805 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,806 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,806 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,806 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,807 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,807 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,807 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,808 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,808 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,808 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,811 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,812 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,812 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,812 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,812 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,812 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,812 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:53:32,815 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,815 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,815 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,815 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,816 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,816 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,816 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,816 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,817 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,817 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,817 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,817 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,818 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,818 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,818 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,818 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,818 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,819 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,819 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,819 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,819 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,820 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,820 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,820 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,820 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,821 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,821 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,821 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,821 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,821 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,822 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,822 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,822 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,822 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,823 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,823 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,824 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,824 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,824 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,825 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,825 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,825 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,826 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,826 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,829 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,829 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,830 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,830 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,830 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,830 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,830 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:32,832 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,833 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,833 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,834 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,834 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,834 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,835 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,835 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,835 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,835 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,835 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,836 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,836 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,836 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,836 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,837 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,837 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,837 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,837 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,837 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,838 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,838 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,838 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,839 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,839 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,839 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,839 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,840 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,840 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,840 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,841 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,842 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,842 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,842 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,842 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,843 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,843 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,843 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,843 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,844 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,844 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,847 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,847 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,847 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,848 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,848 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,848 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,848 [1520] DEBUG index - Prepared sql query parameters : [30] +01/30/13 11:53:32,850 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,851 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,851 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,851 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,851 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,851 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,852 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,852 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,852 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,853 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,853 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,853 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,853 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,854 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,854 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,855 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,855 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,855 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,855 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,855 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,856 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,857 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,857 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,857 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,858 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,858 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,859 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,859 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,860 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,860 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,860 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,860 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,861 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,861 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,861 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,861 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,862 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,862 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,865 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,865 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,865 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,866 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,866 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,866 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,866 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:53:32,868 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,868 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,868 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,869 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,869 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,870 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,870 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,871 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,871 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,872 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,872 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,872 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,872 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,873 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:53:32,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,873 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:53:32,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,873 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,873 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,874 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,874 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,874 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,874 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,875 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,875 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,876 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,876 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,876 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,876 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,877 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,877 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,877 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,877 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,878 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,878 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,878 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,879 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,879 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,879 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,879 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,879 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,879 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,880 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,883 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,883 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,883 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,883 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,884 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,884 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,884 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,884 [1520] DEBUG index - Prepared sql query parameters : [130] +01/30/13 11:53:32,886 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,887 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,887 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,888 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,888 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,889 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,889 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,889 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,889 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,890 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,890 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:32,890 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,890 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,890 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,891 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,891 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,891 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,891 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,892 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,892 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,892 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,892 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,893 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,893 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,893 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,893 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,894 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,894 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,894 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,894 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,894 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,895 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:53:32,895 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,895 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,895 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,895 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,896 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,896 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:53:32,896 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:53:32,897 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:32,897 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:53:32,897 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:53:32,897 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:53:32,898 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:53:32,901 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:53:32,901 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:53:32,901 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:32,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:32,901 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:32,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,902 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:53:32,902 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:53:32,902 [1520] DEBUG index - Prepared sql query parameters : [132] +01/30/13 11:53:32,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,906 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:53:32,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,906 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:53:32,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,906 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:53:32,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,907 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:53:32,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,907 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:53:32,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,907 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:53:32,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,908 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:53:32,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,908 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:53:32,908 [1520] DEBUG index - Entering AlphabeticalSearch(Contacts,index,lastname,true,basic,,,,,7,) method ... +01/30/13 11:53:32,908 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:53:32,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,908 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:53:32,909 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,909 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,911 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,911 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:53:32,911 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,912 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,914 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,914 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:53:32,914 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,914 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,918 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,918 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:53:32,918 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,918 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,920 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,920 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:53:32,920 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,920 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,922 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,923 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:53:32,923 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,923 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,925 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,925 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:53:32,925 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,925 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,927 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,927 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:53:32,927 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,927 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,929 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,930 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:53:32,930 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,930 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,932 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,932 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:53:32,932 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,932 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,934 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,934 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:53:32,934 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,935 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,936 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,937 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:53:32,937 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,937 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,939 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,939 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:53:32,939 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,939 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,942 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,943 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:53:32,943 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,943 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,945 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,945 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:53:32,945 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,946 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,948 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,948 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:53:32,948 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,948 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,950 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,951 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:53:32,951 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,951 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,952 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,953 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:53:32,953 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,953 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,954 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,954 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:53:32,954 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,955 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,956 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,957 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:53:32,957 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,957 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,958 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,959 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:53:32,959 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,959 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,960 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,961 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:53:32,961 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,961 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,962 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,962 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:53:32,963 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,963 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,965 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,965 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:53:32,965 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,965 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,967 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,967 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:53:32,968 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,968 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,969 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,969 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:53:32,969 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,970 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,971 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,971 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:53:32,971 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,972 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:32,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,973 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:53:32,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,973 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:53:32,973 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,973 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:53:32,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,975 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:53:32,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,975 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:53:32,975 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,975 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:53:32,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,977 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:53:32,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,977 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:53:32,977 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,977 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:53:32,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,979 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:53:32,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,979 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:53:32,979 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,979 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,981 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,981 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:53:32,981 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,981 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,983 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,984 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:53:32,984 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,984 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,985 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,985 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:53:32,986 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,986 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,987 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,988 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:53:32,988 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,988 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,989 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,990 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:53:32,990 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,990 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,991 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,991 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:53:32,992 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,992 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,993 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,994 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:53:32,994 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,994 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,996 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,996 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:53:32,996 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,996 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,998 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,998 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:53:32,998 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:32,998 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:32,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:32,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:32,1000 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:32,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,000 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:53:33,000 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:33,000 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:33,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,002 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:33,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,002 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:53:33,002 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:33,002 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:53:33,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,004 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:53:33,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,004 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:53:33,004 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:53:33,005 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:53:33,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,006 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:53:33,007 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:53:33,007 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:53:33,007 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:33,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:33,007 [1520] DEBUG index - Entering getFieldsResultForMerge(4) method ... +01/30/13 11:53:33,007 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND fieldname NOT IN (?,?) AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:53:33,007 [1520] DEBUG index - Prepared sql query parameters : [4,portal,imagename,4,70,69,4] +01/30/13 11:53:33,010 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:53:33,010 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:53:33,010 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:53:33,010 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:53:33,013 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:53:33,013 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:53:33,013 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:53:33,013 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:33,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:33,013 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:53:33,013 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:53:33,026 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:53:33,026 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:53:33,026 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:33,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,030 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:53:33,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,031 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:53:33,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,031 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:53:33,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,031 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:53:33,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,032 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:53:33,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,032 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:53:33,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,032 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:53:33,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,032 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:53:33,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,033 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:53:33,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,033 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:53:33,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,033 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:53:33,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,034 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:53:33,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,034 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:53:33,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,034 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:53:33,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,035 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:53:33,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,035 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:53:33,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,035 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:53:33,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,036 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:53:33,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,036 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:53:33,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,036 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:53:33,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,036 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:53:33,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,037 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:53:33,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,037 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:53:33,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,037 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:53:33,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,038 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:53:33,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,038 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:53:33,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,038 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:53:33,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,039 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:53:33,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,039 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:53:33,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,039 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:53:33,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,040 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:53:33,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,040 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:53:33,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,040 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:53:33,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,040 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:53:33,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,041 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:53:33,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,041 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:53:33,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,041 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:53:33,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,042 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:53:33,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,042 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:53:33,042 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:33,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:33,042 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:53:33,043 [1520] DEBUG index - Prepared sql query parameters : [4,1] +01/30/13 11:53:33,046 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:53:33,046 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:53:33,046 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:53:33,047 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:53:33,047 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:53:33,047 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:53:33,047 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:53:33,053 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:33,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:33,053 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:53:33,053 [1520] DEBUG index - Prepared sql query parameters : [4,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:53:33,056 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:53:33,056 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:33,057 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:53:33,057 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:53:33,057 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:53:33,059 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:53:33,059 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:53:33,059 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:53:33,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,065 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,065 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:53:33,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,065 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:53:33,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,066 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,066 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,066 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,066 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,067 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,067 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,068 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,068 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,068 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,071 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:53:33,071 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:53:33,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,072 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:53:33,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,072 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:53:33,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,072 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:53:33,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,073 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:53:33,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,073 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:53:33,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,073 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:53:33,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,073 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:53:33,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,074 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:53:33,077 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:33,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:33,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,077 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:53:33,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,078 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,078 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:53:33,090 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:33,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:33,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,091 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:53:33,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:53:33,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:33,091 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:53:33,092 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:53:33,092 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:53:33,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:43,723 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:53:43,852 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:53:43,852 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:53:43,852 [1520] DEBUG index - ****Starting for new session +01/30/13 11:53:43,852 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:53:43,852 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_id', + 'id' => '25', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:53:43,853 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:53:43,853 [1520] DEBUG index - in TooltipAjax +01/30/13 11:53:43,853 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:53:43,853 [1520] INFO index - current module is Tooltip +01/30/13 11:53:43,886 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:53:43,886 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:53:43,886 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:53:43,886 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:43,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:43,887 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:43,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:43,887 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:53:43,887 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:53:43,896 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:53:43,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:43,896 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:53:43,896 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:53:43,897 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:53:43,897 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:53:43,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,898 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:53:43,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,898 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:53:43,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,899 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:53:43,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,899 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:53:43,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,900 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:53:43,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,900 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:53:43,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,901 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:53:43,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,901 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:53:43,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,901 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:53:43,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,902 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:53:43,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,902 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:53:43,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,903 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:53:43,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,903 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:53:43,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,904 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:53:43,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,904 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:53:43,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,905 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:53:43,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,905 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:53:43,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,906 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:53:43,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,906 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:53:43,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,907 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:53:43,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,907 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,908 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:53:43,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,909 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:53:43,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,909 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:53:43,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,910 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:53:43,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,910 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:53:43,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,911 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:53:43,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,911 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:53:43,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,912 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:53:43,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,912 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:53:43,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,913 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:53:43,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,913 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:53:43,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,913 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:53:43,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,914 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:53:43,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,914 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:53:43,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,915 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:53:43,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,915 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:53:43,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,916 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:53:43,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,916 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:53:43,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,917 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:53:43,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,917 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:53:43,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,918 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:53:43,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,918 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:53:43,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,919 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:53:43,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:53:43,919 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:53:43,923 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:53:43,923 [1520] DEBUG index - Prepared sql query parameters : [415,1,Tooltip,TooltipAjax,,2013-01-30 11:53:43] +01/30/13 11:53:43,927 [1520] DEBUG index - Current user is: admin +01/30/13 11:53:43,927 [1520] DEBUG index - Current theme is: softed +01/30/13 11:53:43,927 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:53:43,927 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:53:43,928 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:53:43,929 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:53:43,930 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:53:43,931 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:53:43,932 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:53:43,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:53:43,933 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:53:43,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:53:43,933 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:53:43,933 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:53:43,934 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:53:43,934 [1520] DEBUG index - skipping headers +01/30/13 11:53:43,935 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:53:43,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:53:43,941 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:53:43,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:53:43,941 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:53:43,942 [1520] DEBUG index - Prepared sql query parameters : [4,account_id] +01/30/13 11:53:43,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:53:43,944 [1520] DEBUG index - Prepared sql query parameters : [72] +01/30/13 11:54:08,147 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:08,270 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:08,270 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:08,270 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:08,271 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:08,271 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'parenttab' => 'Marketing', + 'file' => 'MassEdit', + 'mode' => 'ajax', + 'idstring' => '23;22;', + 'viewname' => '7', + 'excludedRecords' => '', +) +01/30/13 11:54:08,271 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:54:08,271 [1520] DEBUG index - in ContactsAjax +01/30/13 11:54:08,271 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:54:08,271 [1520] INFO index - current module is Contacts +01/30/13 11:54:08,304 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:08,304 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:08,304 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:08,305 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:08,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,305 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:08,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,305 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:08,305 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:08,314 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:08,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,314 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:08,314 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:08,315 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:08,315 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:08,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,316 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:08,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,316 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:08,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,317 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:08,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,317 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:08,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,318 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:08,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,318 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:08,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,319 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:08,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,319 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:08,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,320 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:08,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,320 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:08,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,321 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:08,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,321 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:08,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,322 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:08,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,322 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:08,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,323 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:08,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,323 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:08,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,324 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:08,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,324 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:08,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,325 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:08,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,325 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:08,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,326 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:08,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,326 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:08,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,327 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:08,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,327 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:08,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,327 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:08,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,328 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:08,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,328 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:08,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,329 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:08,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,329 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:08,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,330 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:08,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,330 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:08,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,331 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:08,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,331 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:08,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,331 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:08,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,332 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:08,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,332 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:08,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,333 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:08,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,333 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:08,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,334 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:08,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,334 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:08,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,335 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:08,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,335 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:08,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,336 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:08,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,336 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:08,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,337 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:08,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,337 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:08,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,338 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:08,341 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:08,341 [1520] DEBUG index - Prepared sql query parameters : [416,1,Contacts,ContactsAjax,,2013-01-30 11:54:08] +01/30/13 11:54:08,344 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:08,344 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:08,344 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:08,344 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:08,346 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:08,346 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:08,348 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:08,348 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:08,349 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:08,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,350 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:08,350 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:08,350 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:08,350 [1520] DEBUG index - skipping headers +01/30/13 11:54:08,351 [1520] DEBUG index - Entering isPermitted(Contacts,MassEdit,) method ... +01/30/13 11:54:08,352 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:08,356 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:08,356 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:08,357 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,357 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,357 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:08,357 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:08,364 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,364 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:08,365 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:54:08,365 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:54:08,366 [1520] DEBUG index - Entering getBlocks(Contacts,create_view,mass_edit,Array,) method ... +01/30/13 11:54:08,366 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,366 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,366 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:54:08,366 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:08,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,368 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:08,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,369 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:54:08,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,369 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:08,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,369 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:08,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,370 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:08,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,370 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:08,370 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype = 1 AND vtiger_field.masseditable NOT IN (0,2) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:54:08,370 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:54:08,382 [1520] DEBUG index - Entering getBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1, +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1, +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1, +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1, +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1, +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1, +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1, +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1, +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1, +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1, +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1, +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1, +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1, +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1, +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1, +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1, +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1, +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1, +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1, +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1, +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1, +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1, +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1, +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1, +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1, +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1, +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1, +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1, +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1, +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1, +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1, +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1, +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1, +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1, +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1, +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1, +,Array,4,Array) method ... +01/30/13 11:54:08,382 [1520] DEBUG index - Entering getOutputHtml(55,firstname,First Name,100,Array,1,Contacts) method ... +01/30/13 11:54:08,383 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,salutationtype) method ... +01/30/13 11:54:08,383 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,383 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:08,384 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:54:08,384 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:08,384 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:54:08,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:54:08,384 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:54:08,386 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:54:08,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:54:08,386 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:54:08,388 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:08,388 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:54:08,388 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,388 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:54:08,392 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 416 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #327 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #327 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:54:08,393 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:08,393 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:08,394 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,395 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:54:08,395 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,395 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:54:08,398 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,398 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:54:08,398 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,398 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:54:08,401 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,401 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:54:08,401 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:54:08,401 [1520] DEBUG index - Prepared sql query parameters : [salutationtype] +01/30/13 11:54:08,403 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct salutationtype FROM vtiger_salutationtype inner join vtiger_role2picklist on vtiger_salutationtype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:54:08,403 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:54:08,411 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:54:08,411 [1520] DEBUG index - function getTranslatedString(Mr.) - translated to (先生) +01/30/13 11:54:08,411 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:54:08,411 [1520] DEBUG index - function getTranslatedString(Mrs.) - translated to (女士) +01/30/13 11:54:08,411 [1520] DEBUG index - function getTranslatedString(Dr.) - translated to (博士) +01/30/13 11:54:08,412 [1520] DEBUG index - function getTranslatedString(Prof.) - translated to (专家) +01/30/13 11:54:08,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,412 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:08,412 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,412 [1520] DEBUG index - Entering getOutputHtml(255,lastname,Last Name,100,Array,1,Contacts) method ... +01/30/13 11:54:08,413 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:54:08,413 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,413 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:08,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,414 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:08,414 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,414 [1520] DEBUG index - Entering getOutputHtml(11,phone,Office Phone,100,Array,1,Contacts) method ... +01/30/13 11:54:08,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,415 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:08,415 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,416 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Account Name,100,Array,1,Contacts) method ... +01/30/13 11:54:08,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,416 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:08,416 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,417 [1520] DEBUG index - Entering getOutputHtml(11,mobile,Mobile,100,Array,1,Contacts) method ... +01/30/13 11:54:08,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,417 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:08,418 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,418 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Contacts) method ... +01/30/13 11:54:08,419 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:54:08,419 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:08,419 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:08,419 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:54:08,419 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,419 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:54:08,422 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 416 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #344 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #344 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:54:08,423 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:08,423 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:08,425 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,425 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:54:08,425 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,425 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:54:08,428 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,428 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:54:08,428 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:08,429 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:54:08,432 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:08,432 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:54:08,432 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:54:08,432 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:54:08,434 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:54:08,434 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:54:08,445 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:54:08,445 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:54:08,445 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:54:08,445 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:54:08,446 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:54:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,447 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:08,447 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,447 [1520] DEBUG index - Entering getOutputHtml(11,homephone,Home Phone,100,Array,1,Contacts) method ... +01/30/13 11:54:08,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,448 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:08,448 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,448 [1520] DEBUG index - Entering getOutputHtml(1,title,Title,100,Array,1,Contacts) method ... +01/30/13 11:54:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,449 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:08,449 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,450 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Contacts) method ... +01/30/13 11:54:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,451 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:08,451 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,451 [1520] DEBUG index - Entering getOutputHtml(1,department,Department,100,Array,1,Contacts) method ... +01/30/13 11:54:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,452 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:08,452 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,452 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Contacts) method ... +01/30/13 11:54:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,453 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:08,453 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,453 [1520] DEBUG index - Entering getOutputHtml(13,email,Email,100,Array,1,Contacts) method ... +01/30/13 11:54:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,454 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:08,454 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,455 [1520] DEBUG index - Entering getOutputHtml(5,birthday,Birthdate,100,Array,1,Contacts) method ... +01/30/13 11:54:08,455 [1520] INFO index - uitype is 5 +01/30/13 11:54:08,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,455 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:08,456 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:08,456 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:08,456 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,456 [1520] DEBUG index - Entering getOutputHtml(1,assistant,Assistant,100,Array,1,Contacts) method ... +01/30/13 11:54:08,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,457 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:08,457 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,457 [1520] DEBUG index - Entering getOutputHtml(11,assistantphone,Assistant Phone,100,Array,1,Contacts) method ... +01/30/13 11:54:08,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,458 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:08,458 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,459 [1520] DEBUG index - Entering getOutputHtml(13,secondaryemail,Secondary Email,100,Array,1,Contacts) method ... +01/30/13 11:54:08,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,459 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:08,459 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,460 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Contacts) method ... +01/30/13 11:54:08,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,461 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:08,461 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,461 [1520] DEBUG index - Entering getOutputHtml(56,donotcall,Do Not Call,100,Array,1,Contacts) method ... +01/30/13 11:54:08,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,462 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:08,462 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,462 [1520] DEBUG index - Entering getOutputHtml(56,reference,Reference,10,Array,1,Contacts) method ... +01/30/13 11:54:08,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,463 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:08,463 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,464 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Contacts) method ... +01/30/13 11:54:08,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,464 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:08,465 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:54:08,465 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:54:08,466 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:54:08,466 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:08,467 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:08,467 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:54:08,467 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:54:08,470 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:08,470 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:08,472 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:08,472 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:08,476 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:08,477 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:08,477 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:08,477 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:08,477 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:08,477 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:08,477 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:08,478 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:08,478 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:54:08,479 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:08,479 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,480 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Contacts) method ... +01/30/13 11:54:08,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,481 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:08,481 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,482 [1520] DEBUG index - Entering getOutputHtml(5,support_start_date,Support Start Date,100,Array,1,Contacts) method ... +01/30/13 11:54:08,482 [1520] INFO index - uitype is 5 +01/30/13 11:54:08,482 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,482 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:54:08,483 [1520] INFO index - in getNewDisplayDate +01/30/13 11:54:08,483 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:54:08,483 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:54:08) method ... +01/30/13 11:54:08,483 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:08,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,483 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:08,483 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:08,483 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:08,484 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,484 [1520] DEBUG index - Entering getOutputHtml(5,support_end_date,Support End Date,100,Array,1,Contacts) method ... +01/30/13 11:54:08,484 [1520] INFO index - uitype is 5 +01/30/13 11:54:08,485 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:54:08,485 [1520] INFO index - in getNewDisplayDate +01/30/13 11:54:08,485 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:54:08) method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,486 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:08,486 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:08,486 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:08,486 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,486 [1520] DEBUG index - Entering getOutputHtml(21,mailingstreet,Mailing Street,100,Array,1,Contacts) method ... +01/30/13 11:54:08,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,487 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:08,487 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,487 [1520] DEBUG index - Entering getOutputHtml(21,otherstreet,Other Street,100,Array,1,Contacts) method ... +01/30/13 11:54:08,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,488 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:08,488 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,489 [1520] DEBUG index - Entering getOutputHtml(1,mailingpobox,Mailing Po Box,100,Array,1,Contacts) method ... +01/30/13 11:54:08,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,489 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:08,489 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,490 [1520] DEBUG index - Entering getOutputHtml(1,otherpobox,Other Po Box,100,Array,1,Contacts) method ... +01/30/13 11:54:08,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,491 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:08,491 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,491 [1520] DEBUG index - Entering getOutputHtml(1,mailingcity,Mailing City,100,Array,1,Contacts) method ... +01/30/13 11:54:08,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,492 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:08,492 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,492 [1520] DEBUG index - Entering getOutputHtml(1,othercity,Other City,100,Array,1,Contacts) method ... +01/30/13 11:54:08,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,493 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:08,493 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,493 [1520] DEBUG index - Entering getOutputHtml(1,mailingstate,Mailing State,100,Array,1,Contacts) method ... +01/30/13 11:54:08,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,494 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:08,494 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,495 [1520] DEBUG index - Entering getOutputHtml(1,otherstate,Other State,100,Array,1,Contacts) method ... +01/30/13 11:54:08,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,495 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:08,495 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,496 [1520] DEBUG index - Entering getOutputHtml(1,mailingzip,Mailing Zip,100,Array,1,Contacts) method ... +01/30/13 11:54:08,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,497 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:08,497 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,497 [1520] DEBUG index - Entering getOutputHtml(1,otherzip,Other Zip,100,Array,1,Contacts) method ... +01/30/13 11:54:08,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,498 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:08,498 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,498 [1520] DEBUG index - Entering getOutputHtml(1,mailingcountry,Mailing Country,100,Array,1,Contacts) method ... +01/30/13 11:54:08,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,499 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:08,499 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,500 [1520] DEBUG index - Entering getOutputHtml(1,othercountry,Other Country,100,Array,1,Contacts) method ... +01/30/13 11:54:08,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,500 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:08,500 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,501 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Contacts) method ... +01/30/13 11:54:08,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,501 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:08,502 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:54:08,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,502 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:08,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,502 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:08,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,502 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:08,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,503 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:08,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,503 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:08,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,503 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:08,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,504 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:08,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,504 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:08,504 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:54:08,504 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:54:08,504 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:08,504 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:08,505 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:08,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:08,506 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:08,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:08,506 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:54:08,506 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:08,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,510 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:54:08,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,510 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:08,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,510 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:08,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,510 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:08,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,511 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:08,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,511 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:08,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,511 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:08,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,512 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:08,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,512 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:08,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,512 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:08,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,513 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:08,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,513 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:08,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,513 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:08,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,514 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:08,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,514 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:08,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,514 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:08,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,514 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:08,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,515 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:08,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,515 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:08,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,515 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:08,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,516 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:08,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,516 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:08,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,516 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:08,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,517 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:08,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,517 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:54:08,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,517 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:08,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,517 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:08,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,518 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:08,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,518 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:08,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,518 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:08,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,519 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:08,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,519 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:08,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,519 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:08,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,520 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:08,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,520 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:08,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,520 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:08,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,520 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:08,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,521 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:08,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,521 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:08,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,521 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:08,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,522 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:54:08,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,522 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:08,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:08,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:08,522 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:54:08,522 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:54:08,523 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:54:24,227 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:24,349 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:24,349 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:24,350 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:24,350 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:24,350 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'email', + 'id' => '27', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:54:24,350 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:54:24,350 [1520] DEBUG index - in TooltipAjax +01/30/13 11:54:24,351 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:54:24,351 [1520] INFO index - current module is Tooltip +01/30/13 11:54:24,383 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:24,383 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:24,383 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:24,383 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:24,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:24,384 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:24,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:24,384 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:24,384 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:24,392 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:24,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:24,393 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:24,393 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:24,393 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:24,394 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:24,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,394 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:24,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,395 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:24,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,395 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:24,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,396 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:24,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,397 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:24,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,397 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:24,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,398 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:24,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,398 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:24,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,399 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:24,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,399 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:24,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,399 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:24,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,400 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:24,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,400 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:24,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,401 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:24,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,401 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:24,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,402 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:24,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,402 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:24,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,403 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:24,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,403 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:24,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,404 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:24,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,404 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,405 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:24,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,406 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:24,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,406 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:24,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,407 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:24,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,407 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:24,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,408 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:24,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,408 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:24,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,409 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:24,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,409 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:24,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,410 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:24,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,410 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:24,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,411 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:24,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,411 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:24,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,411 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:24,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,412 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:24,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,412 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:24,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,413 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:24,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,413 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:24,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,414 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:24,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,414 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:24,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,415 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:24,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,415 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:24,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,416 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:24,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:24,416 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:24,419 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:24,419 [1520] DEBUG index - Prepared sql query parameters : [417,1,Tooltip,TooltipAjax,,2013-01-30 11:54:24] +01/30/13 11:54:24,425 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:24,425 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:24,425 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:24,425 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:24,427 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:24,427 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:24,429 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:24,429 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:24,431 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:24,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:54:24,432 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:54:24,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:24,432 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:24,432 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:24,432 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:24,432 [1520] DEBUG index - skipping headers +01/30/13 11:54:24,433 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:54:24,434 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:24,440 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:24,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:24,440 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:54:24,441 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:54:24,443 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:54:24,443 [1520] DEBUG index - Prepared sql query parameters : [80] +01/30/13 11:54:26,835 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:26,957 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:26,958 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:26,958 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:26,958 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:26,958 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '22', +) +01/30/13 11:54:26,959 [1520] INFO index - About to take action DetailView +01/30/13 11:54:26,959 [1520] DEBUG index - in DetailView +01/30/13 11:54:26,959 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:54:26,959 [1520] INFO index - current module is Contacts +01/30/13 11:54:26,993 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:26,993 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:26,993 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:26,993 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:26,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:26,994 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:26,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:26,994 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:26,994 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:27,005 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:27,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,006 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:27,006 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:27,007 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:27,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,007 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:27,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,008 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:27,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,008 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:27,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,009 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:27,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,009 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:27,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,010 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:27,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,010 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:27,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,011 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:27,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,011 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:27,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,012 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:27,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,012 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:27,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,013 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:27,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,013 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:27,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,014 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:27,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,014 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:27,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,014 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:27,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,015 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:27,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,015 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:27,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,016 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:27,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,016 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:27,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,017 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:27,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,017 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,018 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:27,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,019 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:27,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,019 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:27,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,020 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:27,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,020 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:27,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,021 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:27,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,021 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:27,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,022 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:27,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,022 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:27,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,023 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:27,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,023 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:27,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,024 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:27,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,024 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:27,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,025 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:27,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,025 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:27,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,025 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:27,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,026 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:27,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,026 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:27,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,027 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:27,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,027 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:27,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,028 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:27,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,028 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:27,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,029 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:27,032 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:27,033 [1520] DEBUG index - Prepared sql query parameters : [418,1,Contacts,DetailView,22,2013-01-30 11:54:27] +01/30/13 11:54:27,035 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:27,035 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:27,035 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:27,035 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:27,037 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:27,037 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:27,039 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:27,039 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:27,041 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:27,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,042 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,042 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,042 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,042 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,042 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:27,042 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:27,053 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,053 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,053 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:54:27,053 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:54:27,053 [1520] DEBUG index - Prepared sql query parameters : [1,22] +01/30/13 11:54:27,055 [1520] INFO index - in track view method Contacts +01/30/13 11:54:27,055 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,055 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:27,057 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:54:27,057 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,058 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:54:27,058 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:54:27,058 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,22,Mary Smith] +01/30/13 11:54:27,061 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:54:27,061 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:54:27,063 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:54:27,063 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:54:27,063 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:54:27,065 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:54:27,065 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:54:27,065 [1520] DEBUG index - Prepared sql query parameters : [95] +01/30/13 11:54:27,070 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:27,070 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:27,070 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:27,070 [1520] DEBUG index - including headers +01/30/13 11:54:27,070 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:27,071 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:27,074 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,074 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,076 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:54:27,077 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:54:27,077 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,078 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:54:27,079 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:54:27,079 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:54:27,080 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,080 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:54:27,080 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,080 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,081 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:54:27,082 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,082 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:54:27,082 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,082 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:54:27,083 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:27,083 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:54:27,083 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:54:27,083 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:54:27,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:27,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,092 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:54:27,092 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:27,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:27,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,093 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:54:27,093 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:54:27,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:27,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,095 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:54:27,095 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:54:27,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:27,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,097 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:54:27,097 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:54:27,097 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,098 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:27,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,098 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:54:27,098 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:54:27,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,099 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:54:27,099 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:27,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:27,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,100 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:54:27,100 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:27,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:54:27,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,101 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:54:27,102 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:54:27,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,102 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:27,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,103 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:54:27,103 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:27,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:27,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,104 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:54:27,104 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:27,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:27,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,105 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:54:27,106 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:27,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,106 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:27,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,107 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:54:27,107 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:54:27,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:27,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,108 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:54:27,108 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:27,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:27,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,109 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:54:27,109 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:54:27,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,110 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:27,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,110 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:54:27,111 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:54:27,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,111 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:27,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,112 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:54:27,112 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:54:27,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,112 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:27,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,113 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:54:27,114 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:54:27,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:27,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:54:27,115 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:54:27,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:27,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,117 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:54:27,117 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:54:27,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,117 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:54:27,117 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:54:27) method ... +01/30/13 11:54:27,118 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:27,118 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:54:27) method ... +01/30/13 11:54:27,118 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:27,118 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:27,118 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:27,119 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:54:27,119 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:54:27,119 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:54:27,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,132 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,132 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,132 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:54:27,135 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:27,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:27,136 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,138 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,139 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:27,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,140 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:27,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,140 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:27,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,141 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:27,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,141 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:27,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,143 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:54:27,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,143 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:27,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,143 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:27,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,144 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:54:27,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,144 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,145 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:27,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,146 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:54:27,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,146 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:54:27,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,147 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:54:27,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,147 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,148 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:54:27,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,149 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:27,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,149 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:54:27,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,150 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:27,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,150 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:54:27,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,151 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:27,151 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:27,151 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,154 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:54:27,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,155 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:54:27,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,155 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:54:27,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,156 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:54:27,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,157 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:54:27,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,157 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:27,158 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:54:27,159 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:54:27,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,160 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:54:27,160 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:54:27,162 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:54:27,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,168 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:27,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,169 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:54:27,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:27,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,169 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:54:27,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:27,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,170 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:27,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,170 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:27,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,170 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:27,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:27,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,171 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:27,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:27,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,171 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:27,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:54:27,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,172 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:27,172 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:27,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,172 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:27,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:54:27,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,173 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:54:27,175 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:54:27,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,176 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:54:27,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:54:27,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,177 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:54:27,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:54:27,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,177 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:54:27,177 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:54:27,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,178 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:54:27,178 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:54:27,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,179 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:54:27,179 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:27,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,179 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:54:27,179 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:54:27,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,180 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:54:27,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:54:27,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,180 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:54:27,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:54:27,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,181 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:54:27,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:27,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,181 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:27,182 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:27,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,182 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:54:27,182 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:27,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,182 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:54:27,182 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:27,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,182 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:54:27,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:27,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,183 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:54:27,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:54:27,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,183 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:54:27,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:27,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,184 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:27,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:27,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,184 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:54:27,184 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:54:27,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,185 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:54:27,185 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:27,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,185 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:54:27,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:27,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,185 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:54:27,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:54:27,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,186 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:27,186 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:54:27,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,187 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:54:27,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:54:27,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,187 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:27,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,188 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:54:27,188 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:54:27,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,215 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,215 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,215 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,215 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,215 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,216 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:54:27,216 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,218 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:54:27,218 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,220 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:54:27,220 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,223 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:54:27,223 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,225 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:54:27,225 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,226 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:54:27,226 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,228 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,229 [1520] INFO VT - PearDatabase ->There is no entry for this entity 22 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:54:27,229 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:54:27,229 [1520] INFO index - Contact detail view +01/30/13 11:54:27,230 [1520] DEBUG index - Entering updateInfo(22) method ... +01/30/13 11:54:27,230 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:54:27,230 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,231 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:54:27,231 [1520] INFO index - in getOwnerName 1 +01/30/13 11:54:27,231 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:54:27,231 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,232 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,233 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:54:27,233 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,235 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:27,235 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:27,235 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:54:27,235 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:54:27,236 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,237 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:54:27,237 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,237 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:27,237 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:54:27,238 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:54:27,238 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,238 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:54:27,238 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:27,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,241 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:27,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,242 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:54:27,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,242 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:27,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,242 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:27,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,243 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:27,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,243 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:27,243 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:54:27,244 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:54:27,253 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:54:27,254 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:54:27,254 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:54:27,254 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,256 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:27,256 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:27,256 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:54:27,257 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:54:27,257 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:54:27,258 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:54:27,258 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:54:27,258 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:54:27,260 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:27,260 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:54:27,262 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:54:27,262 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,262 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,262 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,263 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:54:27,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,263 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:27,263 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,263 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,264 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,264 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:54:27,265 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:54:27,265 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,266 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:27,266 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:54:27,266 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,267 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:27,267 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,267 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,267 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,268 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:54:27,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,268 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:27,269 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,269 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,269 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,269 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:54:27,270 [1520] DEBUG index - Entering getAccountName(16) method ... +01/30/13 11:54:27,270 [1520] INFO index - in getAccountName 16 +01/30/13 11:54:27,270 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:54:27,270 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:54:27,271 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:54:27,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,272 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:27,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,272 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,272 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,272 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:54:27,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,273 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:27,273 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,273 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,273 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,274 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,275 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:27,275 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:54:27,275 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:27,275 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:54:27,283 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 418 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:54:27,284 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,284 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,286 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:27,286 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:54:27,286 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:27,286 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:54:27,290 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:27,290 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:54:27,290 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:27,290 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:54:27,293 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:27,294 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:54:27,294 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:54:27,294 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:54:27,295 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:54:27,295 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:54:27,306 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:54:27,306 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:54:27,307 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:54:27,308 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:54:27,308 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:54:27,308 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:54:27,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,308 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,309 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:54:27,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,309 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:27,310 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,310 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,310 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,310 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:54:27,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,311 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:27,311 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,311 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,311 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,312 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:54:27,312 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,312 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,312 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:27,313 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,313 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,313 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,313 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:54:27,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,314 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:27,314 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,314 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,314 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,315 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:54:27,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,315 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:27,316 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,316 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,316 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,317 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:54:27,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,318 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:27,319 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,319 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,319 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,320 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:54:27,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,321 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:27,322 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,322 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,322 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,323 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:54:27,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,324 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:27,325 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,325 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,325 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,326 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:54:27,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,327 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:27,328 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:54:27,328 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,328 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:27,330 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:54:27,330 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:54:27,332 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,332 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,332 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,333 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:54:27,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,335 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:27,335 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,335 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,335 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,336 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:54:27,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,338 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:27,338 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,338 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,338 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,339 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:54:27,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,341 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:27,341 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,341 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,341 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,342 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:54:27,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,344 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:27,344 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,344 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,344 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,345 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:54:27,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,346 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:27,347 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,347 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,347 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,347 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:54:27,348 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:54:27,348 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,350 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:54:27,350 [1520] INFO index - in getOwnerName 1 +01/30/13 11:54:27,350 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:54:27,350 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,350 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,352 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:54:27,352 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,354 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:27,354 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,354 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,354 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:54:27,354 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:54:27,356 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:54:27,356 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:27,356 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:27,356 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:54:27,357 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:54:27,358 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,359 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,360 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:27,360 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:27,362 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:27,362 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:27,363 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:27,363 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:27,363 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:27,363 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:27,363 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:27,364 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:27,364 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:54:27,365 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:27,365 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,366 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,367 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:54:27,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,367 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:54:27,368 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,368 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,369 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:54:27,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,370 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:27,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,370 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,371 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:54:27,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,371 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:54:27,371 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,372 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,373 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:54:27,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,374 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:27,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,374 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,374 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:54:27,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,375 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:27,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,375 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,376 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:54:27,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,377 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:27,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,377 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,377 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,377 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:54:27,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,378 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:27,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,378 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,379 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:54:27,380 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,380 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:27,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,380 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,381 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:54:27,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,381 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:27,381 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,381 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,381 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,382 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:54:27,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,383 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:27,383 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,383 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,384 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:54:27,384 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,384 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,384 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:27,384 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,384 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,384 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,385 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:54:27,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,386 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:27,386 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,386 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,386 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,387 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:54:27,387 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,387 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,387 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:27,387 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,387 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,388 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,388 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:54:27,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,389 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:27,389 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,389 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,389 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,390 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:54:27,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,390 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:27,390 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,390 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,391 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,391 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:54:27,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,392 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:27,392 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,392 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,392 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,393 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:54:27,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,393 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:27,393 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,393 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,394 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,394 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:54:27,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,395 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:27,395 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,395 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,395 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,396 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:54:27,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,396 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:27,396 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,397 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,397 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,397 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:54:27,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,398 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:54:27,398 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:54:27,398 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,400 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:27,400 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:27,401 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:27,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,401 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:27,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,401 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:27,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,402 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,402 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,402 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,402 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,403 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,403 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,403 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,403 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:27,404 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:54:27,404 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:54:27,404 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:54:27,404 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,404 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:54:27,404 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 11:54:27,405 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,405 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,22) method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Entering getEmailParentsList(Contacts,22) method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,407 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:54:27,407 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:54:27,410 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:54:27,410 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:27,410 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:27,412 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,412 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,412 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,412 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,413 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:27,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,415 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:54:27,415 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:27,419 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,419 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:54:27,419 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:54:27,439 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:27,440 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,440 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:54:27,440 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:54:27,440 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:27,445 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:54:27,445 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:27,445 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:27,446 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:54:27,446 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:27,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,447 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:54:27,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,447 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:54:27,448 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,448 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:54:27,448 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,448 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:27,449 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,449 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:54:27,450 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,450 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:27,450 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,450 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,451 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:54:27,452 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:27,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,455 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:54:27,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,455 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:27,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,455 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:27,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,456 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:27,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,456 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:27,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,456 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:27,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,457 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:27,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,457 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:27,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,457 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:27,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,458 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:27,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,458 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:27,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,458 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:27,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,459 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:27,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,459 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:27,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,459 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:27,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,460 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:27,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,460 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:27,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,460 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:27,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,461 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:27,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,461 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:27,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,461 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:27,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,462 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:27,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,462 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:27,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,462 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:27,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,463 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:54:27,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,463 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:27,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,463 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:27,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,464 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:27,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,464 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:27,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,464 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:27,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,465 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:27,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,465 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:27,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,465 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:27,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,466 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:27,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,466 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:27,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,466 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:27,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,467 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:27,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,467 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:27,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,467 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:27,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,467 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:27,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,468 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:54:27,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,468 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:27,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,468 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:54:27,469 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:54:27,469 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:54:27,469 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 11:54:27,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,470 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,470 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:54:27,470 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:27,475 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:27,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,475 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:27,476 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:27,477 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:54:27,477 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,479 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:54:27,479 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:27,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,479 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:27,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,479 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:54:27,479 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:54:27,480 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:27,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,480 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:27,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,480 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:54:27,480 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:54:27,490 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:27,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,490 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:27,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,490 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,491 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:27,491 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:54:27,491 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:27,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,492 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:27,492 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:54:27,492 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:27,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,492 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:27,493 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:54:27,494 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:54:27,494 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:27,496 [1520] DEBUG index - Entering when status=0 +01/30/13 11:54:27,496 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:54:27,496 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:54:27,496 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,496 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,496 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,496 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,497 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,497 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 35 +01/30/13 11:54:27,503 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:54:27,504 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:54:27,22,1] +01/30/13 11:54:27,508 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,508 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:54:27,508 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:54:27,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,516 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,517 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:27,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,517 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:27,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,517 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,518 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,518 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,518 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,519 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,519 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:27,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,520 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:27,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,520 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:27,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,520 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:27,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,521 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:54:27,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,521 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:27,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,521 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:27,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,522 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:27,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,522 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:54:27,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,522 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:54:27,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,523 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:27,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,523 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:54:27,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,523 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:27,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,523 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:27,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,524 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:27,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,524 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:54:27,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,524 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:27,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,525 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:54:27,567 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:27,567 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:27,597 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:27,597 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:27,600 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:27,600 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:27,639 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,639 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,639 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,639 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,639 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:54:27,640 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,642 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:27,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,643 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:27,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,643 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:54:27,643 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,643 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,643 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,644 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,644 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,644 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:54:27,644 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:54:27,647 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:54:27,647 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:54:27,647 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:54:27,647 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:27,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,647 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:27,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,647 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:27,647 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:27,654 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:27,654 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,654 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,655 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:54:27,655 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,655 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,655 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,655 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,655 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,656 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:54:27,656 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:54:27,656 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:27,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,656 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:27,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,656 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:27,656 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:27,664 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:27,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,665 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,665 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,665 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,665 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,665 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,665 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:54:27,666 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:54:27,666 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:27,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,666 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:27,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,666 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:27,666 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:54:27,671 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:27,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,671 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,673 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,673 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,673 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,673 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,677 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:27,677 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:27,677 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:27,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:27,678 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:54:27,678 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:27,678 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:54:27,678 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:27,696 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,696 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:54:27,696 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,697 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:54:27,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:27,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:27,697 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:27,697 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:54:27,698 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:27,698 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:27,865 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:27,996 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:27,996 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:27,997 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:27,997 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:27,997 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:54:27,997 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:54:27,997 [1520] DEBUG index - in CalendarAjax +01/30/13 11:54:27,998 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:54:27,998 [1520] INFO index - current module is Calendar +01/30/13 11:54:28,030 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:28,030 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:28,030 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:28,031 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:28,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:28,031 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:28,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:28,031 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:28,031 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:28,040 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:28,041 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:28,041 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:28,041 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:28,041 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:28,042 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,042 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,043 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,043 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,044 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,044 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,045 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,045 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:28,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,046 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:28,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,046 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:28,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,047 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:28,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,047 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:28,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,048 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:28,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,048 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:28,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,049 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:28,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,049 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:28,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,050 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:28,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,050 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:28,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,050 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:28,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,051 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:28,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,051 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:28,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,052 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:28,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,052 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,053 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:28,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,054 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:28,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,054 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:28,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,055 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:28,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,055 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:28,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,056 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:28,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,056 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:28,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,057 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:28,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,057 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:28,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,058 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:28,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,058 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:28,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,059 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:28,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,059 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:28,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,060 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:28,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,060 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:28,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,061 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:28,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,061 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:28,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,062 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:28,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,062 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:28,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,063 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:28,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,063 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:28,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,063 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:28,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:28,064 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:28,064 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:28,064 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:28,064 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:28,065 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:28,066 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:28,066 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:28,068 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:28,068 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:28,070 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:28,070 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:28,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:28,071 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:28,071 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:28,071 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:28,071 [1520] DEBUG index - skipping headers +01/30/13 11:54:28,072 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:54:28,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:28,077 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:28,078 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:54:28,078 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:54:28,078 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:54:28,081 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:55')) +01/30/13 11:54:28,086 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:54:34,517 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:34,640 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:34,640 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:34,641 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:34,641 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:34,641 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'index', +) +01/30/13 11:54:34,641 [1520] INFO index - About to take action index +01/30/13 11:54:34,642 [1520] DEBUG index - in index +01/30/13 11:54:34,642 [1520] INFO index - current page is modules/Contacts/index.php +01/30/13 11:54:34,642 [1520] INFO index - current module is Contacts +01/30/13 11:54:34,674 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:34,674 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:34,675 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:34,675 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:34,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,675 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:34,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,675 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:34,675 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:34,688 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:34,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,688 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:34,688 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:34,689 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:34,689 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:34,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,690 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:34,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,690 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:34,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,691 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:34,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,691 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:34,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,692 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:34,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,692 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:34,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,693 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:34,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,693 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:34,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,694 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:34,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,694 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:34,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,695 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:34,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,695 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:34,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,696 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:34,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,696 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:34,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,696 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:34,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,697 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:34,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,697 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:34,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,698 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:34,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,698 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:34,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,699 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:34,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,699 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,700 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:34,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,701 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:34,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,701 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:34,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,702 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:34,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,702 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:34,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,703 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:34,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,703 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:34,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,704 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:34,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,704 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:34,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,705 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:34,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,705 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:34,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,706 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:34,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,706 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:34,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,707 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:34,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,707 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:34,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,708 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:34,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,708 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:34,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,709 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:34,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,709 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:34,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,710 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:34,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,710 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:34,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,711 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:34,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,711 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:34,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,711 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:34,716 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:34,716 [1520] DEBUG index - Prepared sql query parameters : [419,1,Contacts,index,,2013-01-30 11:54:34] +01/30/13 11:54:34,719 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:34,719 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:34,719 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:34,719 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:34,720 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:34,721 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:34,722 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:34,723 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:34,724 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:34,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:34,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,725 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:34,725 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:34,725 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:34,725 [1520] DEBUG index - including headers +01/30/13 11:54:34,725 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:34,726 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:34,729 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:34,729 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:34,731 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:54:34,732 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,733 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:54:34,734 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,734 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:54:34,734 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,734 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:34,735 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:54:34,736 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:54:34,736 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:54:34,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:34,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,745 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:54:34,745 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:34,746 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:34,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,747 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:54:34,747 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:54:34,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:34,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,748 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:54:34,748 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:54:34,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:34,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,750 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:54:34,750 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:54:34,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,751 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:34,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,751 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:54:34,751 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:54:34,752 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:34,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,752 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:54:34,752 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:34,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:34,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,753 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:54:34,753 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:34,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:54:34,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,754 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:54:34,755 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:54:34,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,755 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:34,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,756 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:54:34,756 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:34,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:34,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,757 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:54:34,757 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:34,758 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:34,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,758 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:54:34,758 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:34,759 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,759 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:34,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,760 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:54:34,760 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:54:34,760 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:34,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,761 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:54:34,761 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:34,761 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:34,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,762 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:54:34,762 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:54:34,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,763 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:34,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,763 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:54:34,763 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:54:34,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,764 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:34,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,764 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:54:34,765 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:54:34,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,765 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:34,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,766 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:54:34,766 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:54:34,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:34,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,767 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:54:34,767 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:54:34,768 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:34,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,769 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:54:34,769 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:54:34,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,769 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:54:34,769 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:54:34) method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:54:34) method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:34,770 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:34,771 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:34,771 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:54:34,771 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:54:34,771 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:54:34,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,785 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,785 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:54:34,789 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:34,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,790 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:34,790 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:34,793 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:34,793 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:34,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,795 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:34,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,795 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:34,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,795 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:34,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,796 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:34,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,796 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,797 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,798 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:34,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,799 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:54:34,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,799 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,800 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:34,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,801 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:54:34,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,801 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:54:34,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,802 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:54:34,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,802 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:34,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,803 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:54:34,803 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,803 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:34,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,803 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:54:34,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,804 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:34,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,804 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:54:34,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,805 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:34,805 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,805 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:54:34,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,806 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:34,806 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:34,806 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:34,810 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:54:34,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,810 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:54:34,811 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,811 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:54:34,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,812 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:54:34,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,812 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:54:34,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,813 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:34,813 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:54:34,816 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:54:34,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,816 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:54:34,816 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:54:34,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:54:34,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:34,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,827 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:34,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:34,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,828 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:54:34,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:34,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,828 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:54:34,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:34,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,828 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:34,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:34,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,829 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:34,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:34,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,829 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:34,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:34,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,829 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:34,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:34,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,830 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:34,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:54:34,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,830 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:34,830 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:34,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,831 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:34,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:54:34,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,831 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:54:34,833 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:54:34,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,834 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:54:34,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:54:34,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,835 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:54:34,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:54:34,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,835 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:54:34,836 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:54:34,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,836 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:54:34,836 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:54:34,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,837 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:54:34,837 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:34,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,837 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:54:34,837 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:54:34,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,837 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:54:34,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:54:34,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,838 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:54:34,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:54:34,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,839 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:54:34,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:34,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,840 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:34,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:34,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,840 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:54:34,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:34,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,840 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:54:34,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:34,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,840 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:54:34,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:34,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,841 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:54:34,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:54:34,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,842 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:54:34,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:34,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,842 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:34,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:34,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,842 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:54:34,842 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:54:34,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,843 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:54:34,843 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:34,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,843 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:54:34,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:34,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,843 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:54:34,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:54:34,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,844 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:34,844 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:54:34,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,845 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:54:34,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:54:34,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,846 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:34,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:34,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,846 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:54:34,847 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:54:34,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,851 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:34,851 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:34,851 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:34,852 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:34,852 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:54:34,852 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:34,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,853 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:54:34,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,853 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:54:34,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,854 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:54:34,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,855 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:34,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,855 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:54:34,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,856 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:34,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,857 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:54:34,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,857 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:54:34,857 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:34,857 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:34,857 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,858 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,858 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:34,858 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:34,868 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,869 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:34,869 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:54:34,869 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,869 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,869 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:54:34,869 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:54:34,873 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:54:34,873 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:34,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,874 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:34,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,874 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:34,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:34,875 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:54:34,875 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:54:34,875 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:54:34,875 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:54:34,876 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:54:34,876 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:54:34,876 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:34,877 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:34,877 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:54:34,877 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:54:34,879 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:34,879 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:34,882 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:34,882 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:34,884 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:34,884 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:34,884 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:34,884 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:34,884 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:34,884 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:34,885 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:54:34,885 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:54:34,885 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:54:34,885 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:54:34,887 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:54:34,887 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:34,888 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:34,888 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:54:34,890 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:34,890 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:54:34,890 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:34,890 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:34,895 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:34,895 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:34,895 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,895 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:34,895 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,896 [1520] DEBUG index - Entering isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:54:34,897 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:54:34,897 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:34,898 [1520] DEBUG index - Entering when status=0 +01/30/13 11:54:34,898 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:54:34,899 [1520] DEBUG index - Exiting isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:54:34,899 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,899 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:54:34,899 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:34,902 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,903 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:54:34,903 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:34,905 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:54:34,905 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:54:34,907 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:54:34,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,908 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:54:34,908 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:54:34,908 [1520] DEBUG index - Entering isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:54:34,908 [1520] DEBUG index - Entering when status=0 +01/30/13 11:54:34,909 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:54:34,909 [1520] DEBUG index - Exiting isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:54:34,909 [1520] DEBUG index - Entering isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:54:34,909 [1520] DEBUG index - Entering when status=0 +01/30/13 11:54:34,909 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:54:34,909 [1520] DEBUG index - Exiting isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:54:34,909 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,910 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:54:34,910 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:34,911 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,912 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:54:34,912 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:34,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:34,915 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:34,915 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,915 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:34,915 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:34,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:34,917 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:54:34,917 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:34,932 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:54:34,932 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:54:34,952 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:54:34,956 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:54:34,956 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:54:34,959 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:34,959 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:34,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,959 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:34,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:34,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,961 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,962 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,963 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,964 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:34,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:34,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:34,967 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:34,968 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:54:34,973 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:34,973 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:34,973 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:54:34,977 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:54:34,977 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:54:35,024 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,024 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:54:35,026 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,026 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:54:35,029 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,029 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:54:35,031 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:35,031 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:54:35,033 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:54:35,034 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:54:35,083 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,083 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:54:35,085 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,085 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:54:35,087 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,088 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:54:35,089 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,090 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:54:35,091 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,092 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:54:35,094 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,094 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:54:35,096 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,097 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:54:35,100 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,100 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:54:35,102 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:35,102 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:54:35,105 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:54:35,105 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:35,139 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,139 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:54:35,142 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,142 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:54:35,144 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,144 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:54:35,146 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,147 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:54:35,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:54:35,149 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:35,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,151 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:54:35,153 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:35,153 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:54:35,156 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:54:35,157 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:54:35,189 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,190 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:54:35,192 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,192 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:54:35,194 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,195 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:54:35,197 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,197 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:54:35,199 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,199 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:54:35,203 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,203 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:54:35,205 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,205 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:54:35,207 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,207 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:54:35,210 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,210 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:54:35,212 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,212 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:54:35,214 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,215 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:54:35,217 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:54:35,217 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:54:35,219 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:35,223 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:35,224 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:35,227 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:35,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:35,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,228 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:35,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:35,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,229 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:54:35,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:35,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,229 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:54:35,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:35,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,230 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:54:35,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:54:35,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,230 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:54:35,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:54:35,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,231 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:54:35,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:54:35,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,231 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:35,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:54:35,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,232 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:54:35,232 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:54:35,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,232 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:54:35,233 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:54:35,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,233 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:54:35,233 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:54:35,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,233 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:54:35,234 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:54:35,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,234 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:54:35,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:54:35,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,234 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:35,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:54:35,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,235 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:54:35,235 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:35,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,236 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:54:35,236 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:35,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,236 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:54:35,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:35,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,237 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:54:35,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:35,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,237 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:54:35,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:35,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,238 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:54:35,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:35,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,238 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:54:35,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,239 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,239 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:54:35,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,240 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,240 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:54:35,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:35,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,241 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:35,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:35,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,241 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:54:35,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:35,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,242 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:35,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:35,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,243 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:54:35,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:35,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,243 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:35,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:35,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,244 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:54:35,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:54:35,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,244 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:35,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:54:35,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,245 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:54:35,245 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:35,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,245 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:35,245 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:35,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,245 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:54:35,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:35,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,245 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:54:35,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:35,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,246 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:54:35,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:54:35,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,247 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:54:35,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:54:35,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,247 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:54:35,247 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:54:35,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,248 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:54:35,248 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:54:35,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,248 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:54:35,248 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:35,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,248 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:54:35,248 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:35,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,248 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:54:35,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:35,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,249 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:35,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:35,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,249 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:54:35,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:35,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,249 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:54:35,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:35,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,249 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:54:35,249 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,250 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:54:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,250 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:54:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,250 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:54:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:35,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,250 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:54:35,250 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,251 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:54:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,251 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:54:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,251 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:54:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:35,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,251 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:54:35,251 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:54:35,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,252 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:54:35,252 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:54:35,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,252 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:54:35,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:35,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:35,305 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:54:35,305 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:35,307 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:35,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:35,339 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:54:35,339 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:54:35,341 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:35,341 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:35,372 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:54:35,372 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,376 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:54:35,376 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,382 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:54:35,382 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:35,384 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:54:35,388 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:54:35,388 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:54:35,388 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:35,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,388 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:35,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,389 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:35,389 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:35,402 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:35,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,403 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,403 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:35,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,404 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:35,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,404 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:54:35,404 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:35,407 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:35,408 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:35,410 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:35,410 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:35,411 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:35,411 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:35,411 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,411 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,411 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:35,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:35,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:35,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,412 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:54:35,413 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:35,415 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:54:35,415 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:54:35,418 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,418 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,418 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,418 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,419 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,419 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,419 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,419 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,420 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,420 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,420 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,420 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,421 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,421 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,421 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,421 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,421 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,422 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,422 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,422 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,422 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,422 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,423 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,423 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,423 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,424 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,424 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,424 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,424 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,425 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,425 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,425 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,425 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,425 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,426 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,426 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,426 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,426 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,426 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,427 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,427 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 +01/30/13 11:54:35,431 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 20 +01/30/13 11:54:35,435 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,435 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,435 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,436 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,436 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:54:35,436 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:54:35,436 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,437 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,437 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,437 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,437 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,438 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:35,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,438 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:35,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,439 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:35,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,439 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:35,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,439 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:35,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,440 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:35,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,440 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:35,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,440 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:35,440 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,441 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,441 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:54:35,442 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:54:35,442 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:35,442 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:54:35,445 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?) +01/30/13 11:54:35,445 [1520] DEBUG index - Prepared sql query parameters : [16,8,14,20,18,10,2,] +01/30/13 11:54:35,447 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:54:35,447 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:35,448 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:35,450 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:54:35,450 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,1,1] +01/30/13 11:54:35,452 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:35,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,453 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:35,453 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:35,455 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,455 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,455 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,456 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,456 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,456 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,456 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,457 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,457 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,457 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,457 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,457 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,458 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,458 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,458 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,458 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,459 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,459 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,460 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,460 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,460 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,460 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,460 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,461 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,461 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,461 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,461 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,462 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,462 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,462 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,462 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,463 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,463 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,463 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,463 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,463 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,464 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,464 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,464 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,465 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,465 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,465 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,466 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,466 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,466 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,467 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,470 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,470 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,470 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,470 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,471 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,471 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,471 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:35,474 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,474 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,474 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,475 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,475 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,475 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,475 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,476 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,476 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,476 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,476 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,477 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,477 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,477 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,478 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,478 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,478 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,478 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,479 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,479 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,479 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,479 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,480 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,480 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,480 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,480 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,481 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,481 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,481 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,481 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,482 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,482 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,482 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,482 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,483 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,483 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,483 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,483 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,484 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,484 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,484 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,485 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,485 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,485 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,485 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,485 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,486 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,489 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,489 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,489 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,490 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,490 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,490 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,490 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:54:35,492 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,492 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,492 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,493 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,493 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,493 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,493 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,494 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,494 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,495 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,495 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,495 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,495 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,496 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,496 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,496 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,496 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,497 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,497 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,497 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,497 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,497 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,498 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,498 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,498 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,499 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,499 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,499 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,499 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,500 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,500 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,500 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,500 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,501 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,501 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,501 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,501 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,502 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,502 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,502 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,503 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,503 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,503 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,503 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,504 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,507 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,507 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,507 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,507 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,508 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,508 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,508 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:54:35,510 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,510 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,510 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,511 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,511 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,511 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,511 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,512 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,512 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,513 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,513 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,513 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,513 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,514 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,514 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,514 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,515 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,515 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,515 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,516 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,516 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,516 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,516 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,517 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,517 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,517 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,518 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,518 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,518 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,518 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,519 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,519 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,519 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,519 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,520 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,520 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,520 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,521 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,521 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,521 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,521 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,521 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,522 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,525 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,525 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,525 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,525 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,526 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,526 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,526 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:54:35,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,528 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,529 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,529 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,529 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,529 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,530 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,530 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,530 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,531 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,531 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,531 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,532 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,532 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,532 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,533 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,533 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,534 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,534 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,534 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,534 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,534 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,535 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,535 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,535 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,535 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,536 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,536 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,536 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,536 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,537 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,537 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,537 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,537 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,537 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,538 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,538 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,538 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,539 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,539 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,539 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,540 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,543 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,543 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,543 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,543 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,544 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,544 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,544 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:54:35,546 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,546 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,546 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,547 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,547 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,547 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,547 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,548 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,548 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,548 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,548 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,548 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,549 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,549 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,549 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,549 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,550 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,550 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,551 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,551 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,551 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,551 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,551 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,552 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,552 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,552 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,552 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,553 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,553 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,554 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,554 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,554 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,554 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,554 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,555 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,555 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,555 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,556 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,556 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,556 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,557 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,557 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,557 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,557 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,558 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,561 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,561 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,561 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,561 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,561 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,561 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,562 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:54:35,564 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,564 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,564 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,565 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,565 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,565 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,565 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,566 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,566 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,566 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,566 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,566 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,567 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,567 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,567 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,568 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,568 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,568 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,569 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,569 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,569 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,569 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,570 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,570 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,570 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,570 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,570 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,571 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,571 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,571 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,571 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,572 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,572 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,572 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,572 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,573 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,573 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,573 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,573 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,574 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,574 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,574 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,575 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,575 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,575 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,575 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,576 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,579 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,579 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,579 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,579 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,579 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,580 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,580 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:54:35,582 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,582 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,582 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,583 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,583 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,583 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,583 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,584 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,584 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,584 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,584 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,584 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,585 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,585 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,585 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,585 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,586 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,586 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,587 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,587 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,587 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,587 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,587 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,588 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,588 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,588 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,588 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,589 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,589 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,589 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,589 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,590 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,590 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,590 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,590 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,590 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,591 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,591 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,591 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,591 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,592 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,592 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,592 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,593 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,593 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,593 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,593 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,594 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,597 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,597 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,597 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,597 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,597 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,597 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,597 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,597 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,597 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,598 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:35,600 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,600 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,600 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,601 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,601 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,601 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,602 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,602 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,602 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,602 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,603 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,603 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,603 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,603 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,603 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,604 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,604 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,604 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,604 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,605 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,605 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,605 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,605 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,606 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,606 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,606 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,606 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,606 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,607 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,607 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,607 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,607 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,608 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,608 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,608 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,609 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,609 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,609 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,610 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,610 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,610 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,611 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,611 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,611 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,611 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,611 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,614 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,615 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,615 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,615 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,615 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,615 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,615 [1520] DEBUG index - Prepared sql query parameters : [30] +01/30/13 11:54:35,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,618 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,619 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,619 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,619 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,619 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,620 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,620 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,620 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,620 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,621 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,621 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,621 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,621 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,621 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,622 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,622 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,623 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,623 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,623 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,623 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,624 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,624 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,624 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,624 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,624 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,625 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,625 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,625 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,625 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,626 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,626 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,626 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,626 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,627 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,627 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,627 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,627 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,628 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,628 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,628 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,629 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,629 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,629 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,629 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,633 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,633 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,633 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,633 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,633 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,633 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,634 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:54:35,636 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,636 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,636 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,637 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,637 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,638 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,638 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,638 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,638 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,639 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,639 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,639 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,640 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,640 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,640 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,640 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:35,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,641 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:35,641 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,641 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,641 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,642 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,642 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,642 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,642 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,643 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,643 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,643 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,643 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,644 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,644 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,644 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,644 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,645 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,646 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,646 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,646 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,647 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,647 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,648 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,651 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,651 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,651 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,651 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,652 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,652 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,652 [1520] DEBUG index - Prepared sql query parameters : [130] +01/30/13 11:54:35,654 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,654 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,654 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,655 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,655 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,655 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,655 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,656 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,656 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,656 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,656 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,656 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,657 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,657 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,658 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,658 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,658 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,658 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,659 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,659 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,659 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,659 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,660 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,660 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,660 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,660 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,661 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,661 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,661 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,661 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,661 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,662 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,662 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,662 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,662 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:35,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,663 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,663 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,663 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,664 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,664 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:54:35,664 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:54:35,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,665 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:35,665 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:35,665 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:35,665 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:35,669 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:35,669 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:35,669 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,669 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:35,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,669 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:54:35,669 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:54:35,670 [1520] DEBUG index - Prepared sql query parameters : [132] +01/30/13 11:54:35,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,672 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:35,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,672 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:35,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,673 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:35,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,673 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:35,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,673 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:35,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,673 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:35,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,674 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:35,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,674 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:35,674 [1520] DEBUG index - Entering AlphabeticalSearch(Contacts,index,lastname,true,basic,,,,,7,) method ... +01/30/13 11:54:35,674 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:54:35,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,675 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:54:35,675 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,675 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,679 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,679 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:35,679 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,679 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,681 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,681 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:35,682 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,682 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,684 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,684 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:35,685 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,685 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,688 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,688 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:35,688 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,688 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,690 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,691 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:35,691 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,691 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,693 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,693 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:35,693 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,693 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,695 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,695 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:35,695 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,695 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,698 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,698 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:35,698 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,698 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,700 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,700 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:35,700 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,700 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,702 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,703 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:35,703 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,703 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,705 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,705 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:35,705 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,705 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,707 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,707 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:35,707 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,707 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,710 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,710 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:35,710 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,710 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,715 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,715 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:35,715 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,715 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,717 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,718 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:35,718 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,718 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,720 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,720 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:35,720 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,720 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,722 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,722 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:35,722 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,722 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,725 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,725 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:35,725 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,725 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,727 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,727 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:35,727 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,727 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,729 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,729 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:35,729 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,729 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,731 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,731 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:35,731 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,731 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,733 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,733 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:35,733 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,733 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,735 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,735 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:35,735 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,735 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,737 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,737 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:54:35,737 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,737 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,740 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,740 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:54:35,740 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,740 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,742 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,742 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:54:35,742 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,742 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,744 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:35,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,744 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:35,744 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,744 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:35,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,746 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:35,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,746 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:35,746 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,746 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:35,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,748 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:35,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,748 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:35,748 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,748 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:35,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,750 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:35,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,750 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:35,750 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,750 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,752 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,752 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:35,752 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,752 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,754 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,754 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:35,754 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,754 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,756 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,756 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:35,756 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,756 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,758 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,758 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:35,758 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,758 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,760 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,761 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:35,761 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,761 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,763 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,763 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:35,763 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,763 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,765 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,766 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:35,766 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,766 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,768 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,768 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:35,768 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,768 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,770 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,770 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:35,770 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,770 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,773 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,774 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:35,774 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,774 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,776 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,776 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:35,776 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,776 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:35,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,781 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:35,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,781 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:35,781 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:54:35,781 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:54:35,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,783 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:35,783 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:54:35,784 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:54:35,784 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,784 [1520] DEBUG index - Entering getFieldsResultForMerge(4) method ... +01/30/13 11:54:35,784 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND fieldname NOT IN (?,?) AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:54:35,784 [1520] DEBUG index - Prepared sql query parameters : [4,portal,imagename,4,70,69,4] +01/30/13 11:54:35,788 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:54:35,788 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:54:35,788 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:54:35,788 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:35,791 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:54:35,791 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:54:35,791 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:54:35,791 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,791 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:54:35,791 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:54:35,805 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:54:35,805 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:54:35,805 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,809 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:54:35,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,809 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:35,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,810 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:35,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,810 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:35,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,810 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:35,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,810 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:35,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,811 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:35,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,811 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:35,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,811 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:35,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,812 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:35,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,812 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:35,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,812 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:35,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,813 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:35,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,813 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:35,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,813 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:35,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,813 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:35,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,814 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:35,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,814 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:35,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,814 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:35,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,815 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:35,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,815 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:35,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,815 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:35,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,816 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:35,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,816 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:54:35,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,816 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:35,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,817 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:35,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,817 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:35,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,817 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:35,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,817 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:35,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,818 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:35,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,818 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:35,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,818 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:35,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,819 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:35,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,819 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:35,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,819 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:35,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,820 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:35,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,820 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:35,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,820 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:35,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,821 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:35,821 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:54:35,821 [1520] DEBUG index - Prepared sql query parameters : [4,1] +01/30/13 11:54:35,823 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:54:35,823 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:54:35,823 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:54:35,823 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:54:35,823 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:54:35,823 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:54:35,823 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:35,830 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:35,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:35,830 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:54:35,830 [1520] DEBUG index - Prepared sql query parameters : [4,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:54:35,833 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:35,833 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:35,833 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:54:35,833 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:54:35,834 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:35,835 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:54:35,835 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:35,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:35,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,839 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,839 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:54:35,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,840 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:54:35,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,840 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,840 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,840 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,841 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,841 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,841 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,842 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,842 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,845 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:35,845 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:35,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,845 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:54:35,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,846 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:54:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,846 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:54:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,846 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:54:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,847 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:54:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,847 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:54:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,847 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:54:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,847 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:54:35,851 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:35,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:35,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,851 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:54:35,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,852 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,852 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:35,860 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:35,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:35,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,860 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:54:35,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:35,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:35,861 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:54:35,861 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:54:35,861 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:35,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:37,147 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:37,270 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:37,270 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:37,271 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:37,271 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:37,271 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'email', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:54:37,271 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:54:37,271 [1520] DEBUG index - in TooltipAjax +01/30/13 11:54:37,272 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:54:37,272 [1520] INFO index - current module is Tooltip +01/30/13 11:54:37,304 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:37,305 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:37,305 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:37,305 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:37,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:37,305 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:37,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:37,306 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:37,306 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:37,315 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:37,315 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:37,315 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:37,315 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:37,315 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:37,316 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:37,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,317 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:37,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,317 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:37,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,318 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:37,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,318 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:37,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,318 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:37,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,319 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:37,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,319 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:37,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,320 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:37,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,320 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:37,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,321 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:37,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,321 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:37,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,322 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:37,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,322 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:37,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,323 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:37,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,323 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:37,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,324 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:37,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,324 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:37,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,325 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:37,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,325 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:37,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,325 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:37,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,326 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:37,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,326 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,327 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:37,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,328 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:37,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,328 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:37,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,329 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:37,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,329 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:37,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,330 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:37,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,330 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:37,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,331 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:37,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,331 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:37,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,332 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:37,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,332 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:37,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,333 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:37,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,333 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:37,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,334 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:37,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,334 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:37,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,335 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:37,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,335 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:37,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,336 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:37,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,336 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:37,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,337 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:37,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,337 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:37,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,338 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:37,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:37,338 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:37,343 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:37,343 [1520] DEBUG index - Prepared sql query parameters : [420,1,Tooltip,TooltipAjax,,2013-01-30 11:54:37] +01/30/13 11:54:37,346 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:37,346 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:37,346 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:37,346 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:37,348 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:37,348 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:37,350 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:37,350 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:37,351 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:37,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:54:37,352 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:54:37,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:37,353 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:37,353 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:37,353 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:37,353 [1520] DEBUG index - skipping headers +01/30/13 11:54:37,354 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:54:37,355 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:37,361 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:37,361 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:37,361 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:54:37,361 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:54:37,364 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:54:37,364 [1520] DEBUG index - Prepared sql query parameters : [80] +01/30/13 11:54:37,876 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:38,001 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:38,001 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:38,001 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:38,002 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:38,002 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_id', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:54:38,002 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:54:38,002 [1520] DEBUG index - in TooltipAjax +01/30/13 11:54:38,002 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:54:38,002 [1520] INFO index - current module is Tooltip +01/30/13 11:54:38,034 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:38,034 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:38,034 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:38,034 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:38,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:38,035 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:38,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:38,035 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:38,035 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:38,044 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:38,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:38,045 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:38,045 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:38,045 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:38,046 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:38,046 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,046 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:38,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,047 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:38,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,047 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:38,047 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,048 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:38,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,048 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:38,048 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,049 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:38,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,049 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:38,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,049 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:38,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,050 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:38,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,050 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:38,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,051 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:38,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,051 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:38,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,052 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:38,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,052 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:38,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,053 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:38,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,053 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:38,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,054 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:38,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,054 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:38,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,055 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:38,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,055 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:38,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,056 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:38,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,056 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,057 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:38,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,058 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:38,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,058 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:38,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,059 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:38,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,059 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:38,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,060 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:38,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,060 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:38,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,061 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:38,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,061 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:38,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,062 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:38,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,062 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:38,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,063 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:38,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,063 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:38,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,063 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:38,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,064 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:38,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,064 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:38,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,065 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:38,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,065 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:38,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,066 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:38,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,066 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:38,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,067 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:38,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,067 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:38,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:38,068 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:38,073 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:38,073 [1520] DEBUG index - Prepared sql query parameters : [421,1,Tooltip,TooltipAjax,,2013-01-30 11:54:38] +01/30/13 11:54:38,076 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:38,076 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:38,076 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:38,076 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:38,078 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:38,078 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:38,080 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:38,080 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:38,081 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:38,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:54:38,082 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:54:38,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:38,083 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:38,083 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:38,083 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:38,083 [1520] DEBUG index - skipping headers +01/30/13 11:54:38,084 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:54:38,084 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:38,090 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:38,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:38,090 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:54:38,091 [1520] DEBUG index - Prepared sql query parameters : [4,account_id] +01/30/13 11:54:38,093 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:54:38,093 [1520] DEBUG index - Prepared sql query parameters : [72] +01/30/13 11:54:50,140 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:50,263 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:50,264 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:50,264 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:50,264 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:50,264 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'lastname', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:54:50,264 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:54:50,265 [1520] DEBUG index - in TooltipAjax +01/30/13 11:54:50,265 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:54:50,265 [1520] INFO index - current module is Tooltip +01/30/13 11:54:50,298 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:50,298 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:50,298 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:50,298 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:50,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:50,299 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:50,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:50,299 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:50,299 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:50,307 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:50,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:50,307 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:50,307 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:50,308 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:50,308 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:50,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,309 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:50,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,309 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:50,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,310 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:50,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,310 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:50,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,311 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:50,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,311 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:50,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,312 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:50,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,312 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:50,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,313 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:50,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,313 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:50,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,314 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:50,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,314 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:50,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,315 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:50,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,315 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:50,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,315 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:50,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,316 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:50,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,316 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:50,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,317 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:50,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,317 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:50,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,318 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:50,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,318 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,319 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:50,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,320 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:50,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,320 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:50,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,321 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:50,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,321 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:50,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,322 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:50,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,322 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:50,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,323 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:50,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,323 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:50,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,324 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:50,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,324 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:50,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,325 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:50,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,325 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:50,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,326 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:50,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,326 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:50,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,326 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:50,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,327 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:50,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,327 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:50,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,328 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:50,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,328 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:50,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,329 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:50,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,329 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:50,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,330 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:50,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:50,330 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:50,338 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:50,338 [1520] DEBUG index - Prepared sql query parameters : [422,1,Tooltip,TooltipAjax,,2013-01-30 11:54:50] +01/30/13 11:54:50,341 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:50,341 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:50,341 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:50,341 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:50,343 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:50,343 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:50,345 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:50,345 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:50,347 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:50,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:54:50,347 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:54:50,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:50,348 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:50,348 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:50,348 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:50,348 [1520] DEBUG index - skipping headers +01/30/13 11:54:50,349 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:54:50,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:50,356 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:50,356 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:50,356 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:54:50,356 [1520] DEBUG index - Prepared sql query parameters : [4,lastname] +01/30/13 11:54:50,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:54:50,358 [1520] DEBUG index - Prepared sql query parameters : [70] +01/30/13 11:54:55,023 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:54:55,145 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:54:55,145 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:54:55,145 [1520] DEBUG index - ****Starting for new session +01/30/13 11:54:55,146 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:54:55,146 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '22', +) +01/30/13 11:54:55,146 [1520] INFO index - About to take action DetailView +01/30/13 11:54:55,146 [1520] DEBUG index - in DetailView +01/30/13 11:54:55,146 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:54:55,147 [1520] INFO index - current module is Contacts +01/30/13 11:54:55,179 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:54:55,180 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:54:55,180 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:54:55,180 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:55,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,180 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:55,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,181 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:55,181 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:54:55,191 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:54:55,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,192 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,192 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:54:55,192 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:54:55,193 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:54:55,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,193 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:54:55,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,194 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:54:55,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,194 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:55,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,195 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:54:55,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,195 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:54:55,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,196 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:54:55,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,196 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:55,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,197 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:54:55,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,197 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:54:55,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,198 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:54:55,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,198 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:54:55,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,199 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:54:55,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,199 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:54:55,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,200 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:54:55,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,200 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:54:55,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,201 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:54:55,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,201 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:54:55,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,201 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:54:55,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,202 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:54:55,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,202 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:54:55,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,203 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:54:55,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,203 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,204 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:54:55,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,205 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:54:55,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,206 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:54:55,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,206 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:54:55,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,207 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:54:55,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,207 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:54:55,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,208 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:54:55,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,208 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:54:55,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,209 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:54:55,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,209 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:54:55,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,210 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:54:55,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,210 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:54:55,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,210 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:54:55,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,211 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:54:55,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,211 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:54:55,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,212 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:54:55,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,212 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:54:55,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,213 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:54:55,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,213 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:54:55,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,214 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:54:55,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,214 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:54:55,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,215 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:54:55,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,215 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:54:55,218 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:54:55,218 [1520] DEBUG index - Prepared sql query parameters : [423,1,Contacts,DetailView,22,2013-01-30 11:54:55] +01/30/13 11:54:55,221 [1520] DEBUG index - Current user is: admin +01/30/13 11:54:55,221 [1520] DEBUG index - Current theme is: softed +01/30/13 11:54:55,221 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:54:55,221 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:54:55,222 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:54:55,223 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:54:55,224 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:54:55,225 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:54:55,226 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:54:55,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,227 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,227 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,227 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:55,228 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:55,238 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,239 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,239 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:54:55,239 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:54:55,239 [1520] DEBUG index - Prepared sql query parameters : [1,22] +01/30/13 11:54:55,245 [1520] INFO index - in track view method Contacts +01/30/13 11:54:55,245 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,245 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:55,247 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:54:55,247 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,248 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:54:55,248 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:54:55,248 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,22,Mary Smith] +01/30/13 11:54:55,251 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:54:55,251 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:54:55,252 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:54:55,252 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:54:55,252 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:54:55,253 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:54:55,253 [1520] DEBUG index - including headers +01/30/13 11:54:55,253 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:54:55,253 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:54:55,256 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,257 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,258 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:54:55,258 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:54:55,259 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,260 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:54:55,260 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:54:55,261 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:54:55,261 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,261 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,262 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:54:55,263 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,263 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:54:55,263 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,263 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:54:55,264 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:54:55,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:55,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,272 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:54:55,272 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:55,272 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:55,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,273 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:54:55,273 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:54:55,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:55,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,274 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:54:55,274 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:54:55,275 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:55,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,276 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:54:55,276 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:54:55,277 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,277 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:55,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,277 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:54:55,277 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:54:55,278 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,278 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:54:55,278 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:55,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:55,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,279 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:54:55,280 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:55,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:54:55,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,281 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:54:55,281 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:54:55,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,281 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:55,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,282 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:54:55,282 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:55,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:55,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,283 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:54:55,284 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:55,284 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:55,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,285 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:54:55,285 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:55,285 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,285 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:55,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,286 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:54:55,286 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:54:55,286 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:55,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,287 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:54:55,287 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:55,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:55,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,288 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:54:55,289 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:54:55,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,289 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:55,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,290 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:54:55,290 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:54:55,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,290 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:55,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,291 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:54:55,291 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:54:55,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,292 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:55,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,293 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:54:55,293 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:54:55,293 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:55,294 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,294 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:54:55,294 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:54:55,294 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:55,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,295 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:54:55,295 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:54:55) method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:54:55) method ... +01/30/13 11:54:55,296 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:55,297 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:55,297 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:55,298 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:54:55,298 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:54:55,298 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:54:55,301 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,301 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,301 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,301 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,303 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,304 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,306 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,309 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:54:55,314 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:55,314 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:55,315 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,316 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,316 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,317 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,317 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:55,318 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,319 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:54:55,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,319 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:55,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,319 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:54:55,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,320 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,321 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:54:55,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,322 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:55,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,322 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:54:55,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,323 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:54:55,323 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,323 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:54:55,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,324 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:54:55,324 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,324 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:55,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,324 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:55,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,325 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:54:55,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,325 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,326 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:54:55,327 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,327 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:55,327 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,327 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:54:55,328 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,328 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:55,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,328 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:54:55,328 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,329 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:55,329 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,329 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:54:55,329 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,329 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:55,330 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:54:55,330 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,333 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:54:55,333 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,333 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:54:55,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,334 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:54:55,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,335 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:54:55,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,336 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:54:55,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,336 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:55,337 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:54:55,339 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:54:55,339 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,339 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:54:55,339 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:54:55,342 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:54:55,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,348 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:54:55,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,349 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:54:55,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:54:55,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,349 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:54:55,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:54:55,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,350 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:54:55,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,350 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:54:55,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,350 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:55,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:54:55,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,351 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:55,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:54:55,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,351 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:55,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:54:55,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,352 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:55,352 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:54:55,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,352 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:55,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:54:55,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,353 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:54:55,355 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:54:55,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,355 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:54:55,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:54:55,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,356 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:54:55,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:54:55,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,357 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:54:55,357 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:54:55,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,357 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:54:55,358 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:54:55,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,358 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:54:55,358 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:55,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,358 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:54:55,358 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:54:55,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,359 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:54:55,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:54:55,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,359 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:54:55,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:54:55,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,360 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:54:55,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:54:55,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,361 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:55,361 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:54:55,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,361 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:54:55,361 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:54:55,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,361 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:54:55,361 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:54:55,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,361 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:54:55,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:54:55,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,362 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:54:55,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:54:55,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,363 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:54:55,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:54:55,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,363 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:55,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:54:55,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,363 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:54:55,363 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:54:55,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,364 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:54:55,364 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:54:55,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,364 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:54:55,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:54:55,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,365 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:54:55,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:54:55,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,365 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:55,365 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:54:55,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,366 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:54:55,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:54:55,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,367 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:55,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,367 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:54:55,368 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:54:55,369 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,371 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,371 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,371 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,371 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,371 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:54:55,371 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,376 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:54:55,377 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,379 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:54:55,379 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,382 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:54:55,382 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:54:55,384 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,385 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:54:55,385 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,386 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,386 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,388 [1520] INFO VT - PearDatabase ->There is no entry for this entity 22 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:54:55,388 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:54:55,388 [1520] INFO index - Contact detail view +01/30/13 11:54:55,389 [1520] DEBUG index - Entering updateInfo(22) method ... +01/30/13 11:54:55,389 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:54:55,389 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,390 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:54:55,390 [1520] INFO index - in getOwnerName 1 +01/30/13 11:54:55,390 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:54:55,391 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,391 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,392 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:54:55,392 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,393 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:55,394 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:55,394 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:54:55,394 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:54:55,394 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,395 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:54:55,395 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,395 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:55,396 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:54:55,396 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:54:55,396 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,396 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:54:55,396 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:55,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,398 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:55,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,398 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:54:55,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,399 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:55,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,399 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:55,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,399 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:55,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,400 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:55,400 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:54:55,400 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:54:55,411 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:54:55,412 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:54:55,413 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:54:55,413 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,414 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:55,415 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:55,415 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:54:55,415 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:54:55,415 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:54:55,416 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:54:55,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:54:55,417 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:54:55,418 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:55,419 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:54:55,420 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:54:55,420 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,420 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,420 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,421 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:54:55,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,422 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:55,422 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,422 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,422 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,422 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:54:55,423 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:54:55,423 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,425 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:55,425 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,425 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,426 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,426 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:54:55,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,427 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:55,427 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,427 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,427 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,428 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:54:55,428 [1520] DEBUG index - Entering getAccountName(16) method ... +01/30/13 11:54:55,428 [1520] INFO index - in getAccountName 16 +01/30/13 11:54:55,428 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:54:55,428 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:54:55,430 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:54:55,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,430 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:55,430 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,430 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,430 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,431 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:54:55,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,432 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:55,432 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,432 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,432 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,432 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:54:55,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,433 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:55,433 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:54:55,433 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:54:55,433 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:54:55,433 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:54:55,434 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:55,434 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:54:55,437 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 423 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #501 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #501 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:54:55,438 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,438 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,441 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:55,441 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:54:55,441 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:55,441 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:54:55,444 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:55,444 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:54:55,444 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:54:55,444 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:54:55,448 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:54:55,448 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:54:55,448 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:54:55,448 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:54:55,450 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:54:55,450 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:54:55,463 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:54:55,464 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:54:55,464 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:54:55,464 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:54:55,464 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:54:55,464 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:54:55,464 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,464 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,465 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:54:55,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,466 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:55,466 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,466 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,466 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,466 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:54:55,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,467 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:55,467 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,467 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,467 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,468 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:54:55,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,469 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:55,469 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,469 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,469 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,470 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:54:55,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,470 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:55,470 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,470 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,471 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,471 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:54:55,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,473 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:55,473 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,473 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,473 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,474 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:54:55,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,476 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:55,476 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,476 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,476 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,477 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:54:55,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,479 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:55,479 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,479 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,479 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,480 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:54:55,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,482 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:55,482 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,482 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,482 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,483 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:54:55,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,485 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:55,485 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:54:55,485 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,485 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:55,488 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:54:55,488 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:54:55,489 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,490 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,490 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,491 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:54:55,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,492 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:55,493 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,493 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,493 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,494 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:54:55,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,495 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:55,496 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,496 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,496 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,497 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:54:55,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,498 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:55,499 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,499 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,499 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,500 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:54:55,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,501 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:55,501 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,502 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,502 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,502 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:54:55,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,503 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:55,503 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,503 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,503 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,504 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:54:55,504 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:54:55,504 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,506 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:54:55,506 [1520] INFO index - in getOwnerName 1 +01/30/13 11:54:55,506 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:54:55,506 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,506 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,508 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:54:55,508 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,510 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:55,510 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,510 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,510 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:54:55,510 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:54:55,511 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:54:55,512 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:55,512 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:55,512 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:54:55,512 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:54:55,514 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,514 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,516 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:54:55,516 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:54:55,518 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:55,518 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:55,518 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:55,518 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:55,518 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:55,518 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:55,518 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:54:55,519 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:54:55,519 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:54:55,520 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:54:55,520 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:54:55,520 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:54:55,520 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,521 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:54:55,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,522 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:54:55,522 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,523 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,524 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:54:55,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,524 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:55,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,525 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,525 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:54:55,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,526 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:54:55,526 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:54:55,526 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:54:55,526 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:54:55,527 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:54:55,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,527 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,527 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,527 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:54:55,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,528 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:55,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,528 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,529 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:54:55,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,530 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:55,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,530 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,530 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:54:55,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,531 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:55,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,531 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,532 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:54:55,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,533 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:55,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,533 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,533 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:54:55,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,534 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:55,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,534 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,535 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:54:55,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,536 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:55,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,536 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,536 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:54:55,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,537 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:55,537 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,537 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,538 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,538 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:54:55,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,539 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:55,539 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,539 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,539 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,540 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:54:55,540 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,540 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,540 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:55,541 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,541 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,541 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,541 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:54:55,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,542 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:55,542 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,542 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,542 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,543 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:54:55,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,544 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:55,544 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,544 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,544 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,544 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:54:55,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,545 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:55,545 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,545 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,545 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,546 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:54:55,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,547 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:55,547 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,547 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,547 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,547 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:54:55,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,548 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:55,548 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,548 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,548 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,549 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:54:55,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,550 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:55,550 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,550 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,550 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,550 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:54:55,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,551 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:55,551 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,551 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,551 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,552 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:54:55,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,553 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:54:55,553 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:54:55,553 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,555 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:54:55,555 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:54:55,555 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:54:55,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,555 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:55,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,556 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:54:55,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,556 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:55,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,556 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:54:55,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,557 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:55,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,557 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:54:55,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,557 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:55,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,557 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:54:55,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,558 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:55,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,558 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:54:55,558 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:54:55,558 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:54:55,558 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:54:55,558 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,558 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,559 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:54:55,559 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 11:54:55,559 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,559 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,22) method ... +01/30/13 11:54:55,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,560 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:54:55,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,560 [1520] DEBUG index - Entering getEmailParentsList(Contacts,22) method ... +01/30/13 11:54:55,561 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,561 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:54:55,561 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:54:55,564 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:54:55,564 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:54:55,564 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:55,566 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,566 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,566 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,566 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,566 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,567 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:54:55,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,569 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:54:55,569 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:55,572 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,573 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:54:55,573 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:54:55,594 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:55,594 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,595 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:54:55,595 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:54:55,595 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:54:55,596 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:54:55,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:54:55,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:54:55,598 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:54:55,598 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:54:55,598 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,599 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:54:55,599 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,599 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:54:55,600 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,600 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:54:55,600 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,600 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:54:55,601 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,601 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:54:55,601 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,602 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:55,602 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,602 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,603 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:54:55,603 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:55,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,607 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:54:55,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,607 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:54:55,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,608 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:54:55,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,608 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:54:55,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,608 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:54:55,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,609 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:54:55,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,609 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:54:55,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,609 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:54:55,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,610 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:54:55,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,610 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:54:55,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,610 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:54:55,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,611 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:54:55,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,611 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:54:55,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,611 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:54:55,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,612 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:54:55,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,612 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:54:55,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,612 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:54:55,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,613 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:54:55,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,613 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:54:55,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,613 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:54:55,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,614 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:54:55,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,614 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:54:55,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,614 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:54:55,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,615 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:54:55,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,615 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:54:55,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,615 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:54:55,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,616 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:54:55,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,616 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:54:55,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,616 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:54:55,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,617 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:54:55,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,617 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:54:55,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,617 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:54:55,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,618 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:54:55,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,618 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:54:55,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,618 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:54:55,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,619 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:54:55,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,619 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:54:55,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,619 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:54:55,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,620 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:54:55,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,620 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:54:55,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,620 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:54:55,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,621 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:54:55,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,621 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:54:55,621 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:54:55,621 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:54:55,621 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,22) method ... +01/30/13 11:54:55,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,622 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,623 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:54:55,623 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:54:55,626 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:54:55,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,626 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:54:55,626 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:54:55,628 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:54:55,628 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:55,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,631 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:54:55,631 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:54:55,644 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:55,644 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,644 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:55,644 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,644 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,644 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:55,645 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:54:55,645 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:54:55,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,645 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:55,646 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:54:55,646 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:54:55,646 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,646 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:54:55,647 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:54:55,647 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:54:55,647 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:55,649 [1520] DEBUG index - Entering when status=0 +01/30/13 11:54:55,649 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:54:55,649 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:54:55,651 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:54:55,651 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:54:55,22,1] +01/30/13 11:54:55,661 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,661 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:54:55,662 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:54:55,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,670 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,670 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:55,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,670 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:55,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,671 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,671 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,671 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,672 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,672 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,673 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:54:55,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,673 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:55,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,674 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:55,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,674 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:54:55,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,674 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:54:55,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,675 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:54:55,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,675 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:54:55,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,675 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:54:55,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,675 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:54:55,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,676 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:54:55,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,676 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:54:55,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,676 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:54:55,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,676 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:54:55,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,677 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:54:55,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,677 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:54:55,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,677 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:54:55,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,678 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:54:55,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,678 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:54:55,720 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:55,720 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:55,751 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:55,752 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:55,754 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:54:55,754 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:54:55,792 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,792 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,792 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,793 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,793 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:54:55,793 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:54:55,796 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:55,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,796 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:54:55,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,796 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:54:55,797 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,797 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,797 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,797 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,797 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:54:55,797 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:54:55,800 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:54:55,800 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:54:55,800 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:54:55,800 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:55,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,800 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:55,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,800 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:55,800 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:54:55,808 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:54:55,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,808 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,808 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:54:55,808 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,808 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,809 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,809 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,809 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:54:55,809 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:54:55,809 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:55,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,809 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:55,810 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,810 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:55,810 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:54:55,818 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:54:55,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,818 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,819 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,819 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,819 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,819 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,819 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:54:55,819 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:54:55,819 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:55,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,820 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:55,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,820 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:54:55,820 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:54:55,826 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:54:55,826 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,826 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,827 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,827 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,827 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,827 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,829 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:54:55,829 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:54:55,829 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:54:55,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,830 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:54:55,830 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:54:55,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:54:55,830 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:54:55,830 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:54:55,852 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:55,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,852 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:54:55,853 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:54:55,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:54:55,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,853 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:54:55,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:54:55,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:54:55,853 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:54:55,854 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:54:55,854 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:54:55,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:05,909 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:06,040 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:06,040 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:06,040 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:06,041 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:06,041 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'getListOfRecords', + 'ajax' => 'true', + 'CurModule' => 'Contacts', + 'CurRecordId' => '22', + 'CurParentTab' => 'Marketing', +) +01/30/13 11:55:06,041 [1520] INFO index - About to take action getListOfRecords +01/30/13 11:55:06,041 [1520] DEBUG index - in getListOfRecords +01/30/13 11:55:06,041 [1520] INFO index - current page is modules/Users/getListOfRecords.php +01/30/13 11:55:06,041 [1520] INFO index - current module is Users +01/30/13 11:55:06,074 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:06,074 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:06,074 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:06,074 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:06,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:06,075 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:06,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:06,075 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:06,075 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:06,086 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:06,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:06,086 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:06,086 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:06,087 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:06,087 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:06,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,088 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:06,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,088 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:06,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,089 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:06,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,089 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:06,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,090 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:06,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,090 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:06,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,091 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:06,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,091 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:06,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,091 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:06,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,092 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:06,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,092 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:06,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,093 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:06,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,093 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:06,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,094 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:06,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,094 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:06,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,095 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:06,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,095 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:06,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,096 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:06,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,096 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:06,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,097 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:06,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,097 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,098 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:06,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,099 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:06,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,099 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:06,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,100 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:06,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,100 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:06,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,101 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:06,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,101 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:06,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,102 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:06,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,102 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:06,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,103 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:06,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,103 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:06,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,103 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:06,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,104 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:06,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,104 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:06,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,105 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:06,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,105 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:06,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,106 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:06,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,106 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:06,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,107 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:06,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,107 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:06,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,108 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:06,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,108 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:06,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,109 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:06,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:06,109 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:06,112 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:06,113 [1520] DEBUG index - Prepared sql query parameters : [424,1,Users,getListOfRecords,,2013-01-30 11:55:06] +01/30/13 11:55:06,115 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:06,115 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:06,115 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:06,115 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:06,117 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:06,117 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:06,119 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:06,119 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:06,120 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:06,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:55:06,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:06,122 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:06,122 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:06,122 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:06,122 [1520] DEBUG index - skipping headers +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - in getColumnFields Contacts +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Entering getTabid(Contacts) method ... +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Entering getTabid(Contacts) method ... +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:06,128 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:55:06,138 [1520] DEBUG layout_utils - Entering getTabid(Contacts) method ... +01/30/13 11:55:06,138 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:55:06,138 [1520] DEBUG layout_utils - Exiting getColumnFields method ... +01/30/13 11:55:06,138 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tablename,entityidfield, fieldname from vtiger_entityname WHERE modulename = ? +01/30/13 11:55:06,138 [1520] DEBUG layout_utils - Prepared sql query parameters : [Contacts] +01/30/13 11:55:06,140 [1520] DEBUG layout_utils - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:06,140 [1520] DEBUG layout_utils - Entering getTabid(Contacts) method ... +01/30/13 11:55:06,140 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:55:06,141 [1520] DEBUG layout_utils - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:06,141 [1520] DEBUG layout_utils - Entering getFieldVisibilityPermission(Contacts,1,lastname) method ... +01/30/13 11:55:06,141 [1520] DEBUG layout_utils - Entering getTabid(Contacts) method ... +01/30/13 11:55:06,141 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:55:06,141 [1520] DEBUG layout_utils - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:06,142 [1520] DEBUG layout_utils - Entering isPermittedCustomView(7,getListOfRecords,Contacts) method.... +01/30/13 11:55:06,143 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:55:06,143 [1520] DEBUG layout_utils - Prepared sql query parameters : [7] +01/30/13 11:55:06,144 [1520] DEBUG layout_utils - Entering when status=0 +01/30/13 11:55:06,144 [1520] DEBUG layout_utils - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:55:06,144 [1520] DEBUG layout_utils - Exiting isPermittedCustomView(7,getListOfRecords,Contacts) method.... +01/30/13 11:55:06,144 [1520] DEBUG layout_utils - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:55:06,145 [1520] DEBUG layout_utils - Prepared sql query parameters : [Contacts] +01/30/13 11:55:06,146 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,146 [1520] DEBUG layout_utils - Prepared sql query parameters : [22] +01/30/13 11:55:06,148 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,148 [1520] DEBUG layout_utils - Prepared sql query parameters : [23] +01/30/13 11:55:06,149 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,149 [1520] DEBUG layout_utils - Prepared sql query parameters : [24] +01/30/13 11:55:06,151 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,151 [1520] DEBUG layout_utils - Prepared sql query parameters : [25] +01/30/13 11:55:06,153 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,153 [1520] DEBUG layout_utils - Prepared sql query parameters : [26] +01/30/13 11:55:06,154 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,154 [1520] DEBUG layout_utils - Prepared sql query parameters : [27] +01/30/13 11:55:06,155 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,155 [1520] DEBUG layout_utils - Prepared sql query parameters : [28] +01/30/13 11:55:06,156 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,156 [1520] DEBUG layout_utils - Prepared sql query parameters : [29] +01/30/13 11:55:06,157 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,158 [1520] DEBUG layout_utils - Prepared sql query parameters : [30] +01/30/13 11:55:06,159 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,159 [1520] DEBUG layout_utils - Prepared sql query parameters : [31] +01/30/13 11:55:06,160 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,160 [1520] DEBUG layout_utils - Prepared sql query parameters : [130] +01/30/13 11:55:06,164 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:55:06,164 [1520] DEBUG layout_utils - Prepared sql query parameters : [132] +01/30/13 11:55:06,166 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT firstname,lastname, contactid from vtiger_contactdetails WHERE contactid IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:55:06,166 [1520] DEBUG layout_utils - Prepared sql query parameters : [22,23,24,25,26,27,28,29,30,31,130] +01/30/13 11:55:09,742 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:09,866 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:09,866 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:09,866 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:09,867 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:09,867 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'DetailView', + 'parenttab' => 'Marketing', + 'record' => '27', + 'start' => '1', +) +01/30/13 11:55:09,867 [1520] INFO index - About to take action DetailView +01/30/13 11:55:09,867 [1520] DEBUG index - in DetailView +01/30/13 11:55:09,867 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:55:09,867 [1520] INFO index - current module is Contacts +01/30/13 11:55:09,900 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:09,900 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:09,900 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:09,901 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:09,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:09,901 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:09,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:09,901 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:09,901 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:09,913 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:09,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:09,914 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:09,914 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:09,914 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:09,915 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:09,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,915 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:09,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,916 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:09,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,917 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:09,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,917 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:09,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,918 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:09,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,918 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:09,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,919 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:09,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,919 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:09,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,920 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:09,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,920 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:09,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,921 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:09,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,921 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:09,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,922 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:09,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,922 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:09,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,923 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:09,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,923 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:09,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,923 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:09,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,924 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:09,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,924 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:09,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,925 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:09,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,925 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:09,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,926 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:09,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,926 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:09,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,927 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:09,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,927 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:09,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,927 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:09,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,928 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:09,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,928 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:09,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,929 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:09,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,929 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:09,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,930 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:09,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,930 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:09,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,931 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:09,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,931 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:09,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,932 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:09,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,932 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:09,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,933 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:09,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,933 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:09,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,934 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:09,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,934 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:09,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,935 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:09,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,935 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:09,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,936 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:09,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,936 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:09,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,936 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:09,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,937 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:09,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:09,937 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:09,961 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:09,961 [1520] DEBUG index - Prepared sql query parameters : [425,1,Contacts,DetailView,27,2013-01-30 11:55:09] +01/30/13 11:55:09,968 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:09,969 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:09,969 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:09,969 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:09,971 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:09,971 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:09,973 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:09,973 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:09,974 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:09,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:09,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:09,975 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:09,975 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:09,975 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:09,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:09,975 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:09,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:09,976 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:09,976 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:10,035 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,036 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:55:10,036 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:55:10,036 [1520] DEBUG index - Prepared sql query parameters : [1,27] +01/30/13 11:55:10,038 [1520] INFO index - in track view method Contacts +01/30/13 11:55:10,038 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,038 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:10,045 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:55:10,045 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,047 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:10,047 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:10,047 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,27,Jennifer Davis] +01/30/13 11:55:10,051 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:10,051 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:10,056 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:55:10,056 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:55:10,056 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:55:10,061 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:55:10,061 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:55:10,061 [1520] DEBUG index - Prepared sql query parameters : [99] +01/30/13 11:55:10,067 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:10,068 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:10,068 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:10,068 [1520] DEBUG index - including headers +01/30/13 11:55:10,068 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:55:10,069 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:55:10,072 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,072 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,082 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:55:10,082 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:55:10,082 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,085 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:55:10,085 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:55:10,086 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:55:10,086 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,087 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:55:10,087 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,087 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:55:10,087 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,088 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:55:10,088 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,088 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:55:10,088 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,088 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:55:10,089 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,089 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:55:10,089 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,089 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:55:10,090 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:10,090 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:55:10,090 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:55:10,090 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:55:10,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:10,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,105 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:55:10,105 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:10,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:10,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,106 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:55:10,106 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:55:10,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:10,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,108 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:55:10,108 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:55:10,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:10,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,110 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:55:10,110 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:55:10,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,111 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:10,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,112 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:55:10,112 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:55:10,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,113 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:55:10,113 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:10,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:10,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,114 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:55:10,114 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:10,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:55:10,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,116 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:55:10,116 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:55:10,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,117 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:10,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,117 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:55:10,117 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:10,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:10,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:55:10,119 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:10,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:10,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,120 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:55:10,121 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:10,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,121 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:10,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,122 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:55:10,122 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:55:10,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:10,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,123 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:55:10,123 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:10,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:10,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,125 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:55:10,125 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:55:10,126 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,126 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:10,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,126 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:55:10,126 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:55:10,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,127 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:10,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,128 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:55:10,128 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:55:10,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,129 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:10,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,130 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:55:10,130 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:55:10,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:10,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,131 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:55:10,131 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:55:10,132 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:10,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,133 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:55:10,133 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:55:10,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,134 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:55:10,134 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:10) method ... +01/30/13 11:55:10,134 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:10,134 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:55:10) method ... +01/30/13 11:55:10,135 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:10,135 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:10,135 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:10,136 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:55:10,136 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:55:10,136 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:55:10,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,150 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:55:10,154 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:10,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,154 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:10,154 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,156 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,156 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,157 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,157 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:10,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,158 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:10,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,158 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:10,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:10,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,160 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:10,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,160 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:10,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,160 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:10,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,161 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:10,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,161 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,162 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,163 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:10,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,164 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:10,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,164 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:55:10,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,165 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:55:10,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,165 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:55:10,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,166 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:10,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,166 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,167 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,168 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:55:10,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,169 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:10,169 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:10,169 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,173 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:10,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,174 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:55:10,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,175 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:55:10,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,176 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:55:10,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,176 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:55:10,177 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,177 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:10,177 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:55:10,180 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:55:10,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,180 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:55:10,180 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:55:10,188 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:55:10,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,194 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:10,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,195 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:55:10,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:10,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,196 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:55:10,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:10,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,196 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:55:10,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,196 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:10,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,197 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:10,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:10,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,197 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:10,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:10,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,197 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:10,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:55:10,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,198 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:10,198 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:10,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,198 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:10,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:55:10,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,199 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:55:10,202 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:55:10,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,202 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:55:10,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:55:10,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,203 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:55:10,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:55:10,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,203 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:55:10,204 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:55:10,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,204 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:55:10,204 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:55:10,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,205 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:55:10,205 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:10,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,205 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:55:10,205 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:55:10,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,206 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:55:10,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:55:10,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,206 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:55:10,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:55:10,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,207 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:55:10,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:10,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,207 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:10,208 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:10,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,208 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:10,208 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:10,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,208 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:55:10,208 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:10,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,208 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:55:10,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:10,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,209 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:55:10,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:55:10,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,210 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:55:10,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:10,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,210 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:10,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:10,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,210 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:55:10,210 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:55:10,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,211 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:55:10,211 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:10,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,211 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:55:10,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:10,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,212 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:55:10,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:55:10,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,212 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:10,213 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:55:10,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,213 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:55:10,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:55:10,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,214 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:10,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,214 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:55:10,215 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:10,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,217 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:10,217 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:10,217 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,217 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,218 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,218 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:10,218 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,221 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:55:10,222 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,224 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:55:10,224 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,227 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:55:10,227 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,229 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:55:10,229 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,231 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:55:10,231 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,233 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,234 [1520] INFO VT - PearDatabase ->There is no entry for this entity 27 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:55:10,234 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:55:10,235 [1520] INFO index - Contact detail view +01/30/13 11:55:10,235 [1520] DEBUG index - Entering updateInfo(27) method ... +01/30/13 11:55:10,235 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:55:10,235 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,237 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:10,237 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:10,237 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:10,237 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,237 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,239 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:10,239 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,240 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:10,241 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:10,241 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:55:10,241 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:55:10,241 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,243 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:10,243 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,243 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:10,243 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:55:10,243 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:55:10,243 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,244 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:55:10,244 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:10,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,246 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:10,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,246 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:55:10,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,247 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:10,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,247 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:10,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,247 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:10,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,248 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:10,248 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:55:10,248 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:55:10,261 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:55:10,261 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:55:10,262 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:10,262 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,265 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:10,265 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:10,265 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:55:10,265 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:55:10,265 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:55:10,267 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:55:10,267 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:55:10,267 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:55:10,271 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:10,271 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:55:10,274 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:55:10,274 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,274 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,274 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,275 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:55:10,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,275 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:10,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,276 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,276 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:55:10,277 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:10,277 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,281 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:10,281 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,281 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,282 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:55:10,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,283 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:10,283 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,283 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,283 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,284 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:55:10,284 [1520] DEBUG index - Entering getAccountName(18) method ... +01/30/13 11:55:10,284 [1520] INFO index - in getAccountName 18 +01/30/13 11:55:10,284 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:55:10,284 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:55:10,288 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:55:10,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,288 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:10,288 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,289 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,289 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,289 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:55:10,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,290 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:10,290 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,290 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,290 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,291 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,292 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:10,292 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:55:10,292 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:10,292 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:55:10,299 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 425 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:55:10,300 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,300 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,302 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:10,302 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:55:10,302 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:10,302 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:55:10,306 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:10,306 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:55:10,306 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:10,306 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:55:10,309 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:10,309 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:55:10,310 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:55:10,310 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:55:10,312 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:55:10,312 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:55:10,324 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:55:10,324 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:55:10,324 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:55:10,324 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:55:10,325 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:55:10,326 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,326 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,326 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,326 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:55:10,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,327 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:10,327 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,327 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,327 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,328 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:55:10,328 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,329 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:10,329 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,329 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,329 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,329 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:55:10,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,330 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:10,330 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,330 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,330 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,331 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:55:10,331 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,332 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:10,332 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,332 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,332 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,332 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:55:10,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,333 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:10,333 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,333 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,333 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,334 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:55:10,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,335 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:10,335 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,335 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,335 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,335 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:55:10,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,336 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:10,336 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,336 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,336 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,337 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:55:10,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,338 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:10,338 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,338 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,338 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,339 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:55:10,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,339 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:10,340 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:55:10,340 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,340 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:10,342 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:55:10,342 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:55:10,344 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,344 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,344 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,345 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:55:10,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,346 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:10,346 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,346 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,346 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,346 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:55:10,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,347 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:10,347 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,347 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,347 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,348 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:55:10,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,349 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:10,349 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,349 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,349 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,349 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:55:10,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,350 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:10,350 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,350 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,350 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,351 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:55:10,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,352 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:10,352 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,352 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,352 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,353 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:55:10,353 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:55:10,353 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,355 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:10,355 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:10,355 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:10,355 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,355 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,358 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:10,358 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,362 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:10,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,362 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:55:10,362 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:55:10,364 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:55:10,364 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:10,365 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:10,365 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:55:10,365 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:55:10,367 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,367 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,369 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:10,370 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:10,372 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:10,372 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:10,372 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:10,372 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:10,373 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:10,373 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:10,373 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:10,373 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:10,373 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:55:10,375 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:10,375 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:10,375 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,376 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,377 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:55:10,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,377 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:55:10,377 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,378 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,379 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:55:10,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,380 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:10,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,380 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,380 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:55:10,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,381 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:55:10,381 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:10,381 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:10,381 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:10,382 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:10,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,382 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,383 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:55:10,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,383 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:10,383 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,383 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,384 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:55:10,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,385 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:10,385 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,385 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,385 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,386 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:55:10,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,386 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:10,386 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,386 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,387 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,387 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:55:10,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,388 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:10,388 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,388 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,388 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,389 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:55:10,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,389 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:10,389 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,389 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,390 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,390 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:55:10,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,391 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:10,391 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,391 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,391 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,392 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:55:10,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,392 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:10,393 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,393 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,393 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,393 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:55:10,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,394 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:10,394 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,394 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,394 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,395 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:55:10,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,396 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:10,396 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,396 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,396 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,396 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:55:10,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,397 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:10,397 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,397 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,397 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,398 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:55:10,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,399 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:10,399 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,399 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,399 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,399 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:55:10,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,400 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:10,400 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,400 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,400 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,401 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:55:10,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,402 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:10,402 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,402 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,402 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,402 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:55:10,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,403 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:10,403 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,403 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,403 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,404 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:55:10,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,405 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:10,405 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,405 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,405 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,406 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:55:10,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,406 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:10,406 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,406 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,407 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,407 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:55:10,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,408 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:10,408 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:55:10,408 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,411 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:10,411 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:10,411 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:10,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,412 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:10,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,412 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:10,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,412 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:10,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,412 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:10,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,413 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:10,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,413 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:10,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,413 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:10,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,413 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:10,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,414 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:10,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,414 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:10,414 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:55:10,414 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:55:10,414 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:55:10,414 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,415 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,415 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:55:10,415 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,27) method ... +01/30/13 11:55:10,415 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,415 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,27) method ... +01/30/13 11:55:10,416 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,416 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:10,417 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,417 [1520] DEBUG index - Entering getEmailParentsList(Contacts,27) method ... +01/30/13 11:55:10,417 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:55:10,417 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:55:10,421 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:55:10,421 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:55:10,421 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:10,423 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:10,423 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:10,424 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,424 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:10,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,426 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:55:10,426 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:10,432 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,433 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:55:10,433 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:55:10,456 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:10,456 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,457 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:55:10,457 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:55:10,457 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:10,459 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:55:10,459 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:10,459 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:10,460 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:55:10,460 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:10,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,461 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:55:10,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,461 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:55:10,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,462 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:55:10,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,462 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:10,463 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,463 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:55:10,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,464 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:10,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,464 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:10,465 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:55:10,466 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:10,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,469 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:55:10,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,469 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:10,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,470 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:10,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,470 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:10,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,470 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:10,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,471 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:10,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,471 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:10,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,471 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:10,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,472 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:10,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,472 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:10,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,472 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:10,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,473 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:10,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,473 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:10,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,473 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:10,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,474 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:10,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,474 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:10,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,474 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:10,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,475 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:10,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,475 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:10,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,475 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:10,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,476 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:10,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,476 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:10,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,476 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:10,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,477 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:10,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,477 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:55:10,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,477 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:10,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,478 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:10,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,478 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:10,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,478 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:10,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,479 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:10,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,479 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:10,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,479 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:10,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,480 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:10,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,480 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:10,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,480 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:10,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,481 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:10,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,481 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:10,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,481 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:10,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,482 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:10,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,482 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:10,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,482 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:10,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,483 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:10,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,483 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:55:10,483 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:55:10,483 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:55:10,483 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,27) method ... +01/30/13 11:55:10,484 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,484 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,485 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:55:10,485 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:10,489 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:10,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,489 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:10,490 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:10,495 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:55:10,495 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:10,497 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:55:10,497 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:10,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,497 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:55:10,498 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:55:10,498 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,498 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:55:10,498 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:55:10,510 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:10,510 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,510 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:10,510 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,510 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,511 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:10,511 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:55:10,511 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:10,511 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,512 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:10,512 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:55:10,512 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:10,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,512 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:10,513 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:10,514 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:55:10,514 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:10,516 [1520] DEBUG index - Entering when status=0 +01/30/13 11:55:10,516 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:55:10,516 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:10,517 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:55:10,518 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:55:10,27,1] +01/30/13 11:55:10,522 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,522 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,522 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:55:10,522 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:55:10,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,530 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,530 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:10,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,531 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:10,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,531 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,532 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,532 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,532 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,533 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,533 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:10,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,534 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:10,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,534 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:10,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,534 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:10,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,535 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:55:10,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,535 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:10,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,535 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:10,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,536 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:10,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,536 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:55:10,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,536 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:55:10,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,536 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:10,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,537 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:55:10,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,537 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:10,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,537 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:10,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,538 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:10,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,538 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:10,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,538 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:10,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:10,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,539 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:55:10,581 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:10,581 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:10,613 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:10,613 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:10,616 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:10,616 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:10,655 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:10,655 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:10,655 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,656 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,656 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:55:10,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:10,659 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:10,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,659 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:10,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:10,659 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:55:10,660 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:10,660 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:10,660 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:10,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:10,660 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:10,660 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:55:10,660 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:55:11,531 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:55:11,532 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:55:11,532 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:55:11,532 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:11,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,532 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:11,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,533 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:11,533 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:11,546 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:11,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,546 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,546 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:55:11,547 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:11,547 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:11,547 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:11,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,548 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,548 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:11,548 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:55:11,549 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:11,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,549 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:11,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,549 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:11,549 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:55:11,566 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:11,566 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,566 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,567 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:11,567 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:11,567 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:11,567 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,567 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,568 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:55:11,568 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:55:11,568 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:11,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,569 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:11,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,569 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:11,569 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:55:11,576 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:11,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,576 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,577 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:11,577 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:11,577 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:11,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,578 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,579 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:11,579 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:11,579 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:11,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,580 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:11,580 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:55:11,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:11,580 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:55:11,581 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:11,663 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:11,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:11,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:11,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:11,664 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:55:11,664 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:11,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:11,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:11,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:11,665 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:55:11,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:11,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:11,665 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:11,666 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:55:11,667 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:11,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:12,677 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:12,807 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:12,808 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:12,808 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:12,808 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:12,809 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'viewtype' => '', + 'action' => 'DetailView', + 'record' => '28', + 'parenttab' => 'Marketing', + 'start' => '1', +) +01/30/13 11:55:12,809 [1520] INFO index - About to take action DetailView +01/30/13 11:55:12,809 [1520] DEBUG index - in DetailView +01/30/13 11:55:12,809 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:55:12,809 [1520] INFO index - current module is Contacts +01/30/13 11:55:12,842 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:12,842 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:12,842 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:12,842 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:12,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,843 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:12,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,843 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:12,843 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:12,854 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:12,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,855 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:12,855 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:12,855 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:12,856 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:12,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,856 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:12,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,857 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:12,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,857 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:12,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,858 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:12,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,858 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:12,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,859 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:12,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,859 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:12,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,860 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:12,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,860 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:12,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,861 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:12,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,861 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:12,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,862 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:12,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,862 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:12,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,862 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:12,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,863 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:12,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,863 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:12,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,864 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:12,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,864 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:12,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,865 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:12,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,865 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:12,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,866 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:12,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,866 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,867 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:12,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,868 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:12,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,868 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:12,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,869 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:12,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,869 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:12,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,870 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:12,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,870 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:12,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,871 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:12,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,871 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:12,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,872 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:12,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,872 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:12,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,873 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:12,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,873 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:12,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,874 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:12,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,874 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:12,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,874 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:12,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,875 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:12,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,875 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:12,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,876 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:12,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,876 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:12,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,877 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:12,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,877 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:12,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:12,878 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:12,943 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:12,944 [1520] DEBUG index - Prepared sql query parameters : [426,1,Contacts,DetailView,28,2013-01-30 11:55:12] +01/30/13 11:55:12,946 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:12,947 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:12,947 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:12,947 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:12,950 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:12,951 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:12,954 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:12,954 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:12,958 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:12,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:12,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:12,959 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:12,959 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:12,960 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:12,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,960 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:12,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,960 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:12,960 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:12,983 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:12,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:12,984 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:12,984 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:55:12,984 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:55:12,984 [1520] DEBUG index - Prepared sql query parameters : [1,28] +01/30/13 11:55:12,987 [1520] INFO index - in track view method Contacts +01/30/13 11:55:12,987 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:12,987 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:12,989 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:55:12,989 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:12,990 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:12,990 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:12,990 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,28,Maria Miller] +01/30/13 11:55:12,996 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:12,996 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:12,997 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:55:12,997 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:55:12,998 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:55:12,999 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:55:12,999 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:55:12,999 [1520] DEBUG index - Prepared sql query parameters : [100] +01/30/13 11:55:13,002 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:13,002 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:13,002 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:13,002 [1520] DEBUG index - including headers +01/30/13 11:55:13,002 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:55:13,003 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:55:13,006 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,006 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,008 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:55:13,008 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:55:13,008 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,011 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:55:13,011 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:55:13,012 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:55:13,012 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,012 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:55:13,012 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,012 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:55:13,013 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,013 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:55:13,013 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,013 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:55:13,013 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,014 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:55:13,014 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,014 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:55:13,014 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,014 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:55:13,015 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:13,015 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:55:13,015 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:55:13,015 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:55:13,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:13,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,021 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:55:13,022 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:13,022 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:13,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,023 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:55:13,023 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:55:13,023 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:13,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,024 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:55:13,024 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:55:13,025 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:13,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,026 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:55:13,026 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:55:13,027 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,027 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:13,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,027 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:55:13,027 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:55:13,028 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,028 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:55:13,028 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:13,029 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:13,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,030 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:55:13,030 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:13,030 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:55:13,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,031 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:55:13,031 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:55:13,031 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,031 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:13,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,032 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:55:13,032 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:13,033 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:13,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,034 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:55:13,034 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:13,034 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:13,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,035 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:55:13,035 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:13,036 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,036 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:13,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,036 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:55:13,036 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:55:13,037 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:13,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,037 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:55:13,038 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:13,038 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:13,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,039 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:55:13,040 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:55:13,040 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,040 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:13,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,041 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:55:13,041 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:55:13,041 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,042 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:13,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,042 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:55:13,042 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:55:13,043 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,043 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:13,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,044 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:55:13,044 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:55:13,045 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:13,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,045 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:55:13,045 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:55:13,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:13,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,046 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:55:13,046 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:55:13,047 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,047 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:55:13,047 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:13) method ... +01/30/13 11:55:13,047 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:13,048 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:55:13) method ... +01/30/13 11:55:13,048 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:13,048 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:13,048 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:13,049 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:55:13,049 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:55:13,049 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:55:13,055 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,055 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,056 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,057 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,059 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,061 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,062 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,064 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:55:13,068 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:13,068 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,069 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:13,069 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,070 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,070 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,071 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,071 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:13,072 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,072 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:13,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,072 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:13,072 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:13,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,074 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:13,074 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,074 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:13,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,074 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:13,075 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,075 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:13,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,075 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,076 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,077 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:13,078 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,078 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:13,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,078 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:55:13,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,079 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:55:13,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,079 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:55:13,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,080 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:13,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,080 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,081 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,082 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:55:13,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,083 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:13,083 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:13,083 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,089 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:55:13,089 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,089 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:13,090 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,090 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:55:13,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,091 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:55:13,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,092 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:55:13,092 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,092 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:13,092 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:55:13,094 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:55:13,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,095 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:55:13,095 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:55:13,097 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:55:13,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,103 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:13,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,103 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:55:13,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:13,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,104 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:55:13,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:13,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,104 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:55:13,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,104 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:13,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,105 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:13,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:13,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,105 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:13,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:13,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,105 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:13,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:55:13,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,106 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:13,106 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:13,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,106 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:13,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:55:13,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,107 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:55:13,109 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:55:13,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,110 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:55:13,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:55:13,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,111 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:55:13,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:55:13,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,111 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:55:13,111 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:55:13,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,112 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:55:13,112 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:55:13,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,112 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:55:13,113 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:13,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,113 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:55:13,113 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:55:13,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,113 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:55:13,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:55:13,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,114 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:55:13,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:55:13,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,115 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:55:13,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:13,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,115 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:13,115 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:13,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,115 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:13,116 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:13,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,116 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:55:13,116 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:13,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,116 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:55:13,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:13,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,116 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:55:13,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:55:13,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,117 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:55:13,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:13,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,117 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:13,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:13,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,118 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:55:13,118 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:55:13,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,118 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:55:13,119 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:13,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,119 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:55:13,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:13,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,119 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:55:13,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:55:13,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,120 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:13,120 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:55:13,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,120 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:55:13,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:55:13,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,121 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:13,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,122 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:55:13,122 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:55:13,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,124 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,125 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,125 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,125 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,125 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,125 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:13,125 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,127 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:55:13,127 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,130 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:55:13,130 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,132 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:55:13,132 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,134 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:55:13,134 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:55:13,136 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,138 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,139 [1520] INFO VT - PearDatabase ->There is no entry for this entity 28 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:55:13,139 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:55:13,140 [1520] INFO index - Contact detail view +01/30/13 11:55:13,140 [1520] DEBUG index - Entering updateInfo(28) method ... +01/30/13 11:55:13,140 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:55:13,140 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,141 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:13,141 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:13,142 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:13,142 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,142 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,143 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:13,143 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,145 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:13,145 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:13,145 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:55:13,146 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:55:13,146 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,147 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:13,147 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,148 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:13,148 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:55:13,148 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:55:13,148 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,148 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:55:13,148 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:13,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,152 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:13,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,152 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:55:13,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,152 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:13,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,153 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:13,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,153 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:13,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,153 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:13,154 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:55:13,154 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:55:13,165 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:55:13,166 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:55:13,166 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:13,166 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,168 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:13,168 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:13,168 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:55:13,168 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:55:13,168 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:55:13,179 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:55:13,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:55:13,179 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:55:13,182 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:13,182 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:55:13,184 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:55:13,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,184 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,185 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:55:13,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,185 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:13,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,186 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,186 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:55:13,187 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:13,187 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,191 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:13,191 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,191 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,192 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:55:13,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,193 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:13,193 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,193 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,193 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,194 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:55:13,194 [1520] DEBUG index - Entering getAccountName(18) method ... +01/30/13 11:55:13,194 [1520] INFO index - in getAccountName 18 +01/30/13 11:55:13,194 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:55:13,194 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:55:13,196 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:55:13,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,196 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:13,196 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,196 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,197 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,197 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:55:13,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,198 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:13,198 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,198 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,198 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,199 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:55:13,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,199 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:13,199 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:55:13,199 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:13,200 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:13,200 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:55:13,200 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:13,200 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:55:13,204 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 426 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:55:13,205 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,205 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,209 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:13,209 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:55:13,209 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:13,209 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:55:13,214 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:13,214 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:55:13,214 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:13,214 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:55:13,218 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:13,219 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:55:13,219 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:55:13,219 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:55:13,220 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:55:13,220 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:55:13,231 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:55:13,231 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:55:13,231 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:55:13,231 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:55:13,231 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:55:13,232 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:55:13,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,233 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,233 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:55:13,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,234 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:13,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,234 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,234 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,235 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:55:13,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,235 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:13,235 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,236 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,236 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:55:13,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,237 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:13,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,237 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,238 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:55:13,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,238 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:13,239 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,239 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,239 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,239 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:55:13,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,240 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:13,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,240 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,241 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:55:13,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,242 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:13,242 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,242 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,242 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,242 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:55:13,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,243 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:13,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,243 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,244 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:55:13,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,245 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:13,245 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,245 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,245 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,245 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:55:13,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,246 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:13,246 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:55:13,246 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,246 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:13,248 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:55:13,248 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:55:13,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,250 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,250 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:55:13,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,251 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:13,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,251 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,252 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:55:13,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,252 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:13,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,253 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,253 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:55:13,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,254 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:13,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,254 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,255 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:55:13,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,255 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:13,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,256 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,256 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:55:13,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,257 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:13,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,257 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,257 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,258 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:55:13,258 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:55:13,258 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,263 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:13,263 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:13,263 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:13,263 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,263 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,265 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:13,265 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,268 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:13,268 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,268 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,268 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:55:13,269 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:55:13,270 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:55:13,270 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:13,271 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:13,271 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:55:13,271 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:55:13,272 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,273 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,274 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:13,274 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:13,276 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:13,276 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:13,276 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:13,276 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:13,276 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:13,276 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:13,277 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:13,277 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:13,277 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:55:13,279 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:13,279 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,279 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,280 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,280 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:55:13,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,281 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:55:13,281 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:13,281 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:13,281 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:13,281 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:13,282 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,282 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,282 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,282 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:55:13,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,283 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:13,283 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,283 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,283 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,284 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:55:13,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,284 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:55:13,285 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,285 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,286 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:55:13,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,287 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:13,287 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,287 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,287 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,287 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:55:13,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,288 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:13,288 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,288 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,288 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,289 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:55:13,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,290 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:13,290 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,290 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,290 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,291 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:55:13,291 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,291 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:13,292 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,292 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,292 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,292 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:55:13,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,293 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,293 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:13,293 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,293 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,293 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,294 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:55:13,294 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,294 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,294 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:13,295 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,295 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,295 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,295 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:55:13,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,296 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:13,296 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,296 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,296 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,297 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:55:13,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,298 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:13,298 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,298 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,298 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,298 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:55:13,299 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,299 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:13,299 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,299 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,299 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,300 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:55:13,300 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,300 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,300 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:13,301 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,301 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,301 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,301 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:55:13,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,302 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:13,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,302 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,303 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:55:13,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,304 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:13,304 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,304 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,304 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,304 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:55:13,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,305 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:13,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,305 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,305 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,306 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:55:13,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,307 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:13,307 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,307 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,308 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:55:13,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,308 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:13,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,309 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,309 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:55:13,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,310 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:13,310 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,310 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,310 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,311 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:55:13,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,311 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:13,311 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:55:13,311 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,314 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:13,314 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:13,314 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:13,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,314 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:13,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,315 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:13,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,315 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:13,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,315 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:13,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,315 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:13,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,316 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:13,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,316 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:13,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,316 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:13,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,316 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:13,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,317 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:13,317 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:55:13,317 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:55:13,317 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:55:13,317 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,317 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:55:13,317 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,28) method ... +01/30/13 11:55:13,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,318 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,28) method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Entering getEmailParentsList(Contacts,28) method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,319 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:55:13,320 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:55:13,331 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:55:13,331 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:55:13,332 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:13,334 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,334 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,334 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,335 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,336 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,337 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:55:13,337 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:13,351 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,351 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,351 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:55:13,351 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:55:13,380 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:13,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,381 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:55:13,381 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:55:13,381 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:13,383 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:55:13,383 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:13,383 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:13,384 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:55:13,384 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:13,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,385 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:55:13,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,386 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:55:13,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,386 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:55:13,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,387 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:13,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,387 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:55:13,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,388 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:13,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,389 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:55:13,389 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,389 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:55:13,389 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,390 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:13,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:13,390 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:55:13,390 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:13,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,393 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:55:13,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,393 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:13,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,394 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:13,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,394 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:13,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,394 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:13,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,395 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:13,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,395 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:13,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,395 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:13,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,396 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:13,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,396 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:13,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,396 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:13,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,397 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:13,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,397 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:13,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,397 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:13,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,398 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:13,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,398 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:13,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,398 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:13,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,399 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:13,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,399 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:13,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,399 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:13,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,400 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:13,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,400 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:13,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,400 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:13,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,401 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:13,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,401 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:55:13,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,401 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:13,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,402 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:13,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,402 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:13,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,402 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:13,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,403 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:13,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,403 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:13,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,403 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:13,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,404 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:13,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,404 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:13,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,404 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:13,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,405 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:13,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,405 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:13,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,405 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:13,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,406 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:13,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,406 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:13,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,406 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:13,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,407 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:13,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,407 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:55:13,407 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:55:13,407 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:55:13,407 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,28) method ... +01/30/13 11:55:13,408 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,408 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,409 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:55:13,409 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:13,412 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:13,412 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,412 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:13,412 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:13,417 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:55:13,417 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:13,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,420 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:55:13,420 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:55:13,430 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:13,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,430 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:13,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,430 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,430 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:13,431 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:55:13,431 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:13,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,431 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:13,432 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:55:13,432 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:13,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,432 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:13,433 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:13,434 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:55:13,434 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:13,435 [1520] DEBUG index - Entering when status=0 +01/30/13 11:55:13,435 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:55:13,436 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:13,437 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:55:13,437 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:55:13,28,1] +01/30/13 11:55:13,451 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,451 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:55:13,451 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:55:13,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,459 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,460 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:13,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,460 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:13,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,460 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,461 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,461 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,461 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,462 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,462 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:13,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,463 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:13,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,463 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:13,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,463 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:13,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,464 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:55:13,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,464 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:13,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,464 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:13,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,465 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:13,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,465 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:55:13,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,465 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:55:13,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,465 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:13,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,466 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:55:13,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,466 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:13,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,466 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:13,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,467 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:13,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,467 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:13,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,467 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:13,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,467 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:55:13,509 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:13,509 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:13,540 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:13,540 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:13,543 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:13,543 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:13,582 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,582 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,583 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,583 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,583 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:55:13,583 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:13,586 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:13,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,586 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:13,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,586 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:55:13,587 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,587 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,587 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,587 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,587 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:55:13,587 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:55:13,590 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:55:13,590 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:55:13,590 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:55:13,591 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:13,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,591 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:13,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,591 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:13,591 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:13,598 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:13,598 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,598 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,598 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:55:13,599 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,599 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,599 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,599 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,599 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:13,600 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:55:13,600 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:13,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,600 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:13,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,600 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:13,600 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:55:13,609 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:13,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,609 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,609 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,609 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,609 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:55:13,610 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:55:13,610 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,610 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:13,610 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:55:13,619 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:13,619 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,620 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,621 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,621 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,621 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,622 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,623 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:13,623 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:13,624 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:13,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,624 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:13,625 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:55:13,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:13,625 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:55:13,625 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:55:13,646 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:13,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:13,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,647 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:55:13,647 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:13,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:13,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,647 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:55:13,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:13,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:13,647 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:13,648 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:55:13,648 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:13,649 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:14,875 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:15,007 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:15,007 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:15,007 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:15,008 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:15,008 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'viewtype' => '', + 'action' => 'DetailView', + 'record' => '27', + 'parenttab' => 'Marketing', + 'start' => '1', +) +01/30/13 11:55:15,008 [1520] INFO index - About to take action DetailView +01/30/13 11:55:15,008 [1520] DEBUG index - in DetailView +01/30/13 11:55:15,008 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:55:15,008 [1520] INFO index - current module is Contacts +01/30/13 11:55:15,042 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:15,042 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:15,042 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:15,042 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:15,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,043 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:15,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,043 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:15,043 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:15,054 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:15,054 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,054 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,054 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:15,055 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:15,056 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:15,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,056 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:15,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,057 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:15,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,057 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:15,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,058 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:15,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,058 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:15,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,059 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:15,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,059 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:15,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,059 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:15,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,060 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:15,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,060 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:15,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,061 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:15,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,061 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:15,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,062 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:15,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,062 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:15,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,063 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:15,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,063 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:15,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,064 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:15,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,064 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:15,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,065 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:15,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,065 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:15,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,066 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:15,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,066 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:15,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,067 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:15,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,067 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:15,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,067 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:15,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,068 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:15,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,068 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:15,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,069 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:15,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,069 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:15,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,070 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:15,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,070 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:15,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,070 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:15,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,071 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:15,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,071 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:15,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,072 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:15,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,072 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:15,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,073 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:15,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,073 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:15,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,074 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:15,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,074 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:15,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,075 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:15,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,075 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:15,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,076 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:15,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,076 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:15,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,077 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:15,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,077 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:15,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,078 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:15,082 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:15,082 [1520] DEBUG index - Prepared sql query parameters : [427,1,Contacts,DetailView,27,2013-01-30 11:55:15] +01/30/13 11:55:15,101 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:15,101 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:15,101 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:15,102 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:15,103 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:15,103 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:15,105 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:15,105 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:15,107 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:15,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,108 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,108 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,108 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:15,108 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:15,120 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,121 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,121 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:55:15,121 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:55:15,121 [1520] DEBUG index - Prepared sql query parameters : [1,27] +01/30/13 11:55:15,124 [1520] INFO index - in track view method Contacts +01/30/13 11:55:15,124 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,125 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:15,127 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:55:15,127 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,128 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:15,128 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:55:15,128 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,27,Jennifer Davis] +01/30/13 11:55:15,171 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:15,171 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:55:15,173 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:55:15,173 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:15,173 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:15,173 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:15,173 [1520] DEBUG index - including headers +01/30/13 11:55:15,173 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:55:15,174 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:55:15,179 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,180 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,182 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:55:15,182 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:55:15,182 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,185 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:55:15,186 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:55:15,187 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:55:15,188 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,188 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:55:15,189 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,189 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:55:15,190 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,190 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:55:15,190 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,191 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:55:15,191 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,191 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:55:15,192 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,192 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:55:15,193 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,193 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:55:15,194 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:15,194 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:55:15,194 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:55:15,194 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:55:15,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:15,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:55:15,202 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:15,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:15,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,204 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:55:15,204 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:55:15,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:15,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,206 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:55:15,206 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:55:15,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:15,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,208 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:55:15,208 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:55:15,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,209 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:15,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,209 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:55:15,209 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:55:15,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,210 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:55:15,210 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:15,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:15,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,212 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:55:15,212 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:15,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:55:15,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,213 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:55:15,213 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:55:15,214 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,214 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:15,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,214 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:55:15,214 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:15,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:15,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,216 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:55:15,216 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:15,216 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:15,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,217 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:55:15,217 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:15,218 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,218 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:15,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,219 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:55:15,219 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:55:15,219 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:15,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,220 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:55:15,220 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:15,221 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:15,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,221 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:55:15,221 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:55:15,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,222 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:15,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,223 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:55:15,223 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:55:15,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,224 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:15,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,224 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:55:15,224 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:55:15,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,225 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:15,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,226 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:55:15,226 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:55:15,227 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:15,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,227 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:55:15,227 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:55:15,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:15,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,229 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:55:15,229 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:55:15,229 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,229 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:15) method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:55:15) method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:15,230 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:15,232 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:55:15,232 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:55:15,232 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:55:15,235 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,235 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,235 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,239 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,242 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,244 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:55:15,248 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:15,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,249 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:15,249 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,251 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,252 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:15,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,253 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:15,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,253 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:15,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,254 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:15,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,254 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:15,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,255 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:55:15,256 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,256 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:15,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,256 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:15,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,257 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:55:15,257 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,257 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:15,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,258 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:55:15,258 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,258 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:15,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,258 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:15,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,259 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:55:15,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,259 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:55:15,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,260 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:55:15,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,260 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:15,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,261 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:55:15,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,261 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:15,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,261 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:55:15,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,262 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:15,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,262 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:55:15,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,263 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:15,263 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,263 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:55:15,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,264 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:15,264 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:15,264 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,267 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:15,268 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,268 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:55:15,268 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,269 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:55:15,269 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,269 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:55:15,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,270 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:55:15,271 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,271 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:15,271 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:55:15,273 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:55:15,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,273 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:55:15,274 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:55:15,276 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:55:15,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,282 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:15,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,283 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:55:15,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:15,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,283 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:55:15,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:15,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,284 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:55:15,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,284 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:15,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,284 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:15,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:15,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,285 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:15,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:15,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,285 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:15,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:55:15,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,286 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:15,286 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:15,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,286 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:15,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:55:15,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,287 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:55:15,289 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:55:15,289 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,290 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:55:15,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:55:15,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,290 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:55:15,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:55:15,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,291 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:55:15,291 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:55:15,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,291 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:55:15,291 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:55:15,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,292 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:55:15,292 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:15,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,292 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:55:15,292 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:55:15,293 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,293 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:55:15,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:55:15,293 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,293 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:55:15,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:55:15,294 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,294 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:55:15,294 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:15,294 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,294 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:15,295 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:15,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,295 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:15,295 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:15,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,295 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:55:15,295 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:15,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,295 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:55:15,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:15,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,296 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:55:15,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:55:15,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,296 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:55:15,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:15,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,296 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:15,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:15,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,297 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:55:15,297 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:55:15,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,298 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:55:15,298 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:15,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,298 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:55:15,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:15,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,298 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:55:15,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:55:15,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,299 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:15,299 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:55:15,300 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,300 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:55:15,300 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:55:15,300 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,300 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:15,301 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,301 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,301 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:55:15,301 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:15,302 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,304 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,304 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,304 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,304 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,304 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:15,304 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,307 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:55:15,307 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:55:15,310 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,312 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:55:15,312 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,317 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:55:15,317 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,318 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:55:15,318 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,320 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,322 [1520] INFO VT - PearDatabase ->There is no entry for this entity 27 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:55:15,322 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:55:15,322 [1520] INFO index - Contact detail view +01/30/13 11:55:15,322 [1520] DEBUG index - Entering updateInfo(27) method ... +01/30/13 11:55:15,322 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:55:15,322 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,324 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:15,324 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:15,324 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:15,324 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,324 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,326 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:15,326 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,328 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:15,329 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:15,329 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:55:15,329 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:55:15,329 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,330 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:15,330 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,331 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:15,331 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:55:15,331 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:55:15,331 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,331 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:55:15,331 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:15,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,334 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:15,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,334 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:55:15,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,335 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:15,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,335 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:15,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,335 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:15,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,336 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:15,336 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:55:15,336 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:55:15,349 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:55:15,349 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:55:15,350 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:15,350 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,352 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:15,352 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:15,352 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:55:15,352 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:55:15,352 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:55:15,354 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:55:15,354 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:55:15,354 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:55:15,356 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:15,356 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:55:15,361 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:55:15,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,361 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,361 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:55:15,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,362 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:15,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,362 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,363 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:55:15,363 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:55:15,364 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,368 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:15,368 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:15,368 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,368 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,368 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:15,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,369 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,369 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:55:15,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,370 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:15,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,370 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,371 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:55:15,371 [1520] DEBUG index - Entering getAccountName(18) method ... +01/30/13 11:55:15,371 [1520] INFO index - in getAccountName 18 +01/30/13 11:55:15,371 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:55:15,371 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:55:15,386 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:55:15,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,386 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:15,386 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,386 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,387 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,387 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:55:15,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,388 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:15,388 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,388 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,388 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,389 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:55:15,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,389 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:15,389 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:55:15,390 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:15,390 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:15,390 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:55:15,390 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:15,390 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:55:15,393 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 427 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #501 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #501 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:55:15,394 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,394 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,396 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:15,396 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:55:15,396 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:15,397 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:55:15,400 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:15,400 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:55:15,400 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:15,400 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:55:15,403 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:15,403 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:55:15,403 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:55:15,403 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:55:15,407 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:55:15,407 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:55:15,419 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:55:15,420 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:55:15,420 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:55:15,420 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:55:15,420 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:55:15,420 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:55:15,420 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,420 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,420 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,421 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:55:15,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,422 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:15,422 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,422 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,422 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,422 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:55:15,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,423 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:15,423 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,423 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,423 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,424 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:55:15,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,425 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:15,425 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,425 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,425 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,425 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:55:15,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,426 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:15,426 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,426 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,426 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,427 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:55:15,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,428 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:15,428 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,428 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,428 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,428 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:55:15,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,429 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:15,429 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,429 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,429 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,430 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:55:15,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,431 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:15,431 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,431 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,431 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,431 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:55:15,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,432 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:15,432 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,432 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,432 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,433 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:55:15,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,434 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:15,434 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:55:15,434 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,434 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:15,436 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:55:15,436 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:55:15,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,438 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,438 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:55:15,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,439 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:15,439 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,439 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,439 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,440 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:55:15,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,441 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:15,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,441 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,441 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,441 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:55:15,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,442 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:15,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,442 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,443 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:55:15,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,444 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:15,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,444 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,444 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:55:15,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,445 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:15,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,445 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,446 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:55:15,446 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:55:15,446 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,448 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:55:15,448 [1520] INFO index - in getOwnerName 1 +01/30/13 11:55:15,448 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:55:15,448 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,448 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,450 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:15,450 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,452 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:15,452 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,452 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,452 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:55:15,452 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:55:15,454 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:55:15,454 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:15,454 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:15,454 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:55:15,455 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:55:15,456 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,457 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,459 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:15,459 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:15,460 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:15,460 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:15,461 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:15,461 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:15,461 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:15,461 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:15,461 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:15,462 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:15,462 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:55:15,463 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:15,463 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:15,463 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,464 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,465 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:55:15,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,465 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:55:15,465 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,466 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,467 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:55:15,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,468 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:15,468 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,468 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,468 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,468 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:55:15,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,469 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:55:15,469 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:42) method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:42) method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,470 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,471 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:55:15,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,471 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:15,472 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,472 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,472 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,472 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:55:15,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,473 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:15,473 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,473 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,473 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,474 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:55:15,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,474 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:15,475 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,475 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,475 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,475 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:55:15,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,476 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:15,476 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,476 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,476 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,477 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:55:15,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,477 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:15,478 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,478 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,478 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,478 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:55:15,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,479 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:15,479 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,479 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,479 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,480 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:55:15,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,480 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:15,481 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,481 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,481 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,481 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:55:15,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,482 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:15,482 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,482 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,482 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,483 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:55:15,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,483 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:15,484 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,484 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,484 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,484 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:55:15,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,485 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:15,485 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,485 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,485 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,486 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:55:15,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,487 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:15,487 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,487 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,487 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,487 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:55:15,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,488 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:15,488 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,488 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,488 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,489 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:55:15,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,490 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:15,490 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,490 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,490 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,490 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:55:15,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,491 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:15,491 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,491 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,491 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,492 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:55:15,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,493 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:15,493 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,493 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,493 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,493 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:55:15,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,494 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:15,494 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,494 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,494 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,495 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:55:15,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,496 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:15,496 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:55:15,496 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,498 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:15,498 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:15,498 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:55:15,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,498 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:15,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,499 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:15,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,499 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:15,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,499 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:15,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,499 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:15,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,500 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:15,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,500 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:15,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,500 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:15,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,501 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:15,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,501 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:15,501 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:55:15,501 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:55:15,501 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:55:15,501 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,502 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:55:15,502 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,27) method ... +01/30/13 11:55:15,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,502 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,27) method ... +01/30/13 11:55:15,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,503 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:15,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,503 [1520] DEBUG index - Entering getEmailParentsList(Contacts,27) method ... +01/30/13 11:55:15,504 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,504 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:55:15,504 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:55:15,507 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:55:15,507 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:55:15,507 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:15,511 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,511 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,511 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,511 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,512 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,513 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,514 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:55:15,514 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:15,520 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,520 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,521 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:55:15,521 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:55:15,540 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:15,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,541 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:55:15,541 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:55:15,541 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:15,543 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:55:15,543 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:15,543 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:15,544 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:55:15,544 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:15,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,545 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:55:15,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,545 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:55:15,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,546 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:55:15,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,547 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:15,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,547 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:55:15,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,548 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:15,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,548 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,549 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:55:15,550 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:15,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,554 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:55:15,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,555 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:15,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,555 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:15,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,555 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:15,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,556 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:15,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,556 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:15,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,556 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:15,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,557 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:15,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,557 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:15,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,557 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:15,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,558 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:15,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,558 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:15,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,558 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:15,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,559 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:15,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,559 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:15,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,559 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:15,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,560 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:15,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,560 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:15,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,560 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:15,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,561 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:15,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,561 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:15,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,562 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:15,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,562 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:15,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,562 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:15,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,563 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:55:15,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,563 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:15,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,563 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:15,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,564 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:15,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,564 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:15,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,564 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:15,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,565 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:15,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,565 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:15,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,565 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:15,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,565 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:15,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,566 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:15,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,566 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:15,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,566 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:15,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,567 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:15,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,567 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:15,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,567 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:15,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,568 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:15,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,568 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:15,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,568 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:55:15,569 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:55:15,569 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:55:15,569 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,27) method ... +01/30/13 11:55:15,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,570 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,570 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:55:15,570 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:15,573 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:15,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,574 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:15,574 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:15,575 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:55:15,575 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,577 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:55:15,577 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:15,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,577 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:15,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,578 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:55:15,578 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:55:15,578 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,578 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,578 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:55:15,578 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:55:15,588 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:15,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,588 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:15,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,588 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,589 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:15,589 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:55:15,589 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:55:15,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,590 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:15,590 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:55:15,590 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:15,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,591 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:15,591 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:15,592 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:55:15,592 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:15,593 [1520] DEBUG index - Entering when status=0 +01/30/13 11:55:15,593 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:55:15,594 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:55:15,595 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:55:15,595 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:55:15,27,1] +01/30/13 11:55:15,599 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,599 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:55:15,599 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:55:15,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,607 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,608 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:15,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,608 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:15,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,608 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,609 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,609 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,609 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,610 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,610 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:15,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,611 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:15,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,611 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:15,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,611 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:15,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,612 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:55:15,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,612 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:15,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,612 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:15,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,613 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:15,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,613 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:55:15,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,613 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:55:15,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,614 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:15,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,614 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:55:15,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,614 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:15,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,615 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:15,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,615 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:15,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,615 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:15,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,615 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:15,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,616 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:55:15,658 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:15,658 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:15,689 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:15,689 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:15,692 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:15,692 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:15,731 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,731 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,731 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,731 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,731 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:55:15,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:15,734 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:15,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,734 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:15,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,735 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:55:15,735 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,735 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,735 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,735 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,736 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:55:15,736 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:55:15,738 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:55:15,738 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:55:15,738 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:55:15,739 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:15,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,739 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:15,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,739 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:15,739 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:55:15,747 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:15,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,747 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,747 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:55:15,748 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,748 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,748 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,748 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,748 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:15,748 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:55:15,749 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:15,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,749 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:15,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,749 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:15,749 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:55:15,758 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:15,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,758 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,759 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,759 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,759 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,759 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,759 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:55:15,759 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:55:15,759 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:15,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,760 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:15,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,760 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:15,760 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:55:15,765 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:15,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,765 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,766 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,767 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,767 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,767 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,769 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:15,769 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:15,769 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:15,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,769 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:15,770 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:55:15,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:15,770 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:55:15,770 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:55:15,790 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:15,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,791 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:55:15,791 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:15,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:15,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,791 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:55:15,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:15,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:15,791 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:15,792 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:55:15,792 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:15,793 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:28,916 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:29,049 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:29,049 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:29,050 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:29,050 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:29,050 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:55:29,050 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:55:29,051 [1520] DEBUG index - in CalendarAjax +01/30/13 11:55:29,051 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:55:29,051 [1520] INFO index - current module is Calendar +01/30/13 11:55:29,086 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:29,086 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:29,086 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:29,086 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:29,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:29,087 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:29,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:29,087 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:29,087 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:29,098 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:29,098 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:29,098 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:29,098 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:29,098 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:29,099 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:29,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,100 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:29,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,100 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:29,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,101 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:29,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,101 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:29,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,102 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:29,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,102 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:29,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,103 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:29,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,103 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:29,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,104 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:29,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,104 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:29,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,105 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:29,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,105 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:29,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,106 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:29,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,106 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:29,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,107 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:29,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,107 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:29,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,108 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:29,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,108 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:29,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,109 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:29,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,109 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:29,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,110 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:29,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,110 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,111 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:29,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,112 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:29,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,112 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:29,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,113 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:29,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,113 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:29,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,114 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:29,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,114 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:29,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,115 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:29,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,115 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:29,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,116 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:29,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,117 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:29,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,117 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:29,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,118 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:29,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,118 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:29,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,118 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:29,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,119 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:29,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,119 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:29,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,120 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:29,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,120 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:29,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,121 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:29,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,121 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:29,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,122 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:29,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:29,122 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:29,123 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:29,123 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:29,123 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:29,123 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:29,125 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:29,125 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:29,127 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:29,127 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:29,129 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:29,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:29,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:29,129 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:29,130 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:29,130 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:29,130 [1520] DEBUG index - skipping headers +01/30/13 11:55:29,131 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:55:29,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:29,136 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:29,136 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:55:29,136 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:55:29,136 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:55:29,142 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:56')) +01/30/13 11:55:29,145 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:55:33,301 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:33,424 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:33,424 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:33,424 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:33,425 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:33,425 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'EditView', + 'return_action' => 'DetailView', + 'parenttab' => 'Marketing', +) +01/30/13 11:55:33,425 [1520] INFO index - About to take action EditView +01/30/13 11:55:33,425 [1520] DEBUG index - in EditView +01/30/13 11:55:33,425 [1520] INFO index - current page is modules/Contacts/EditView.php +01/30/13 11:55:33,426 [1520] INFO index - current module is Contacts +01/30/13 11:55:33,459 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:33,459 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:33,459 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:33,460 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:33,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,460 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:33,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,460 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:33,460 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:33,473 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:33,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,474 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:33,474 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:33,474 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:33,475 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:33,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,475 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:33,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,476 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:33,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,476 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:33,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,477 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:33,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,477 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:33,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,478 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:33,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,478 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:33,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,479 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:33,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,479 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:33,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,480 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:33,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,480 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:33,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,481 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:33,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,481 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:33,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,482 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:33,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,482 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:33,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,483 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:33,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,483 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:33,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,484 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:33,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,484 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:33,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,485 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:33,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,485 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:33,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,486 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:33,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,486 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:33,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,486 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:33,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,487 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:33,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,487 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:33,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,488 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:33,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,488 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:33,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,489 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:33,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,489 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:33,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,489 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:33,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,490 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:33,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,490 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:33,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,491 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:33,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,491 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:33,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,492 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:33,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,492 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:33,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,493 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:33,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,493 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:33,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,494 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:33,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,494 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:33,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,495 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:33,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,495 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:33,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,496 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:33,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,496 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:33,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,497 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:33,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,497 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:33,500 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:33,500 [1520] DEBUG index - Prepared sql query parameters : [428,1,Contacts,EditView,,2013-01-30 11:55:33] +01/30/13 11:55:33,503 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:33,503 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:33,503 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:33,503 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:33,505 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:33,505 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:33,507 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:33,507 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:33,509 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:33,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,509 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:33,510 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:33,510 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:33,510 [1520] DEBUG index - including headers +01/30/13 11:55:33,510 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:55:33,510 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:55:33,514 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:33,514 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:33,516 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:55:33,517 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:55:33,517 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,517 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:55:33,517 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,518 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:55:33,518 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,518 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:55:33,518 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,518 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:55:33,519 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,519 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:55:33,519 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,519 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:55:33,520 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:55:33,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:33,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,527 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:55:33,527 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:33,528 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:33,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,528 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:55:33,528 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:55:33,529 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:33,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,530 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:55:33,530 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:55:33,531 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:33,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,532 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:55:33,532 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:55:33,533 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,533 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:33,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,533 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:55:33,534 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:55:33,534 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,534 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:55:33,534 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:33,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:33,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,536 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:55:33,536 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:33,536 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:55:33,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,537 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:55:33,537 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:55:33,537 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,538 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:33,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,538 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:55:33,538 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:33,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:33,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,540 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:55:33,540 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:33,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,540 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:33,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,541 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:55:33,541 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:33,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,542 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:33,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,542 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:55:33,542 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:55:33,543 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:33,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,543 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:55:33,543 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:33,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:33,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,545 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:55:33,545 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:55:33,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,545 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:33,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,546 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:55:33,546 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:55:33,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,547 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:33,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,547 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:55:33,547 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:55:33,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,548 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:33,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,549 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:55:33,549 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:55:33,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:33,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,550 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:55:33,550 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:55:33,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:33,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,551 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:55:33,551 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:55:33,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,552 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:55:33,552 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:33) method ... +01/30/13 11:55:33,552 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:33,552 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:55:33) method ... +01/30/13 11:55:33,553 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:55:33,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:33,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:33,554 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:55:33,554 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:55:33,554 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:55:33,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,560 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,561 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,562 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,563 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,564 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,565 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,566 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,567 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,567 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,567 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,567 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:55:33,571 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:55:33,571 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,571 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:55:33,571 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:33,573 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:55:33,573 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:55:33,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,575 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:55:33,575 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,575 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:33,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,575 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:55:33,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,576 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:55:33,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,576 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:55:33,577 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,577 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:55:33,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,577 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:55:33,577 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,578 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:55:33,579 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,579 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:55:33,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,579 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:55:33,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,580 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:55:33,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,580 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:55:33,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,581 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:55:33,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,581 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:55:33,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,582 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:55:33,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,582 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:55:33,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,583 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:55:33,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,584 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:55:33,584 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,584 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:55:33,585 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,585 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:55:33,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,585 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:55:33,585 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,586 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:33,586 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:55:33,586 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:55:33,589 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:55:33,590 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,590 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:55:33,590 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,591 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:55:33,591 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,591 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:55:33,592 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,592 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:55:33,592 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,593 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:33,593 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:55:33,596 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:55:33,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,596 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:55:33,596 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:55:33,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:55:33,605 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,605 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,605 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:55:33,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,606 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:55:33,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:55:33,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,607 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:55:33,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:33,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,607 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:55:33,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,607 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:55:33,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,607 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:55:33,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:55:33,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,608 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:55:33,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:55:33,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,608 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:55:33,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:55:33,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,609 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:55:33,609 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:55:33,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,609 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:55:33,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:55:33,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,610 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:55:33,612 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:55:33,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,613 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:55:33,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:55:33,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,613 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:55:33,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:55:33,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,614 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:55:33,614 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:55:33,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,615 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:55:33,615 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:55:33,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,615 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:55:33,615 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:55:33,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,615 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:55:33,615 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:55:33,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,616 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:55:33,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:55:33,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,617 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:55:33,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:55:33,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,618 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:55:33,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:55:33,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,618 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:55:33,618 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:55:33,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,618 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:55:33,618 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:55:33,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,618 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:55:33,619 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:55:33,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,619 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:55:33,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:55:33,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,619 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:55:33,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:55:33,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,620 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:55:33,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:55:33,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,620 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:55:33,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:55:33,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,620 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:55:33,620 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:55:33,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,621 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:55:33,621 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:55:33,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,621 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:55:33,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:55:33,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,622 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:55:33,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:55:33,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,622 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:55:33,622 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:55:33,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,623 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:55:33,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:55:33,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,624 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:55:33,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,624 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:55:33,624 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:33,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,627 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:55:33,628 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:55:33,628 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,628 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:33,628 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:33,638 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,638 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Entering setObjectValuesFromRequest(Contacts) method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Entering getBlocks(Contacts,create_view,,Array,) method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,639 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:55:33,640 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:33,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,642 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:33,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,642 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:55:33,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,643 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:33,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,643 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:33,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,643 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:33,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,644 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:33,644 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:55:33,644 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:55:33,655 [1520] DEBUG index - Entering getBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1, +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0, +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1, +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1, +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1, +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1, +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1, +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1, +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1, +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1, +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1, +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1, +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1, +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1, +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1, +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0, +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1, +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1, +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1, +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1, +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1, +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1, +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1, +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0, +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1, +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1, +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1, +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1, +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1, +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1, +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1, +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1, +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1, +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1, +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1, +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1, +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1, +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1, +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1, +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0, +,Array,4,Array) method ... +01/30/13 11:55:33,655 [1520] DEBUG index - Entering getOutputHtml(55,firstname,First Name,100,Array,1,Contacts) method ... +01/30/13 11:55:33,656 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,salutationtype) method ... +01/30/13 11:55:33,656 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,656 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:33,656 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:55:33,657 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:33,657 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:55:33,657 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:55:33,657 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:55:33,659 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:55:33,659 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:55:33,659 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:55:33,661 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:33,661 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:55:33,661 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,661 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:55:33,664 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 428 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #470 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #470 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:55:33,665 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:33,665 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:33,667 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,667 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:55:33,667 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,667 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:55:33,672 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,673 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:55:33,673 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,673 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:55:33,676 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,676 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:55:33,676 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:55:33,676 [1520] DEBUG index - Prepared sql query parameters : [salutationtype] +01/30/13 11:55:33,680 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct salutationtype FROM vtiger_salutationtype inner join vtiger_role2picklist on vtiger_salutationtype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:55:33,680 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:55:33,688 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:55:33,688 [1520] DEBUG index - function getTranslatedString(Mr.) - translated to (先生) +01/30/13 11:55:33,688 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:55:33,688 [1520] DEBUG index - function getTranslatedString(Mrs.) - translated to (女士) +01/30/13 11:55:33,688 [1520] DEBUG index - function getTranslatedString(Dr.) - translated to (博士) +01/30/13 11:55:33,689 [1520] DEBUG index - function getTranslatedString(Prof.) - translated to (专家) +01/30/13 11:55:33,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,689 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:33,689 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,689 [1520] DEBUG index - Entering getOutputHtml(4,contact_no,Contact Id,100,Array,1,Contacts) method ... +01/30/13 11:55:33,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,690 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:33,690 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,691 [1520] DEBUG index - Entering getOutputHtml(255,lastname,Last Name,100,Array,1,Contacts) method ... +01/30/13 11:55:33,691 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:33,691 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,692 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:33,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,692 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:33,692 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,693 [1520] DEBUG index - Entering getOutputHtml(11,phone,Office Phone,100,Array,1,Contacts) method ... +01/30/13 11:55:33,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,693 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:33,693 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,694 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Account Name,100,Array,1,Contacts) method ... +01/30/13 11:55:33,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,695 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:33,695 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,695 [1520] DEBUG index - Entering getOutputHtml(11,mobile,Mobile,100,Array,1,Contacts) method ... +01/30/13 11:55:33,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,696 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:33,696 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,696 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Contacts) method ... +01/30/13 11:55:33,697 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:55:33,697 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:55:33,697 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:55:33,697 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:55:33,697 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,697 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:55:33,701 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 428 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #489 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #489 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:55:33,702 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:33,702 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:33,704 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,704 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:55:33,704 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,705 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:55:33,708 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,708 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:55:33,708 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:55:33,708 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:55:33,712 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:55:33,712 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:55:33,712 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:55:33,712 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:55:33,714 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:55:33,714 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:55:33,725 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:55:33,726 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:55:33,727 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:55:33,727 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:55:33,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,727 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:33,727 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,728 [1520] DEBUG index - Entering getOutputHtml(11,homephone,Home Phone,100,Array,1,Contacts) method ... +01/30/13 11:55:33,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,728 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:33,728 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,729 [1520] DEBUG index - Entering getOutputHtml(1,title,Title,100,Array,1,Contacts) method ... +01/30/13 11:55:33,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,730 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:33,730 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,730 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Contacts) method ... +01/30/13 11:55:33,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,731 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:33,731 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,731 [1520] DEBUG index - Entering getOutputHtml(1,department,Department,100,Array,1,Contacts) method ... +01/30/13 11:55:33,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,732 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:33,732 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,733 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Contacts) method ... +01/30/13 11:55:33,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,734 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:33,734 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,734 [1520] DEBUG index - Entering getOutputHtml(13,email,Email,100,Array,1,Contacts) method ... +01/30/13 11:55:33,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,735 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:33,735 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,735 [1520] DEBUG index - Entering getOutputHtml(5,birthday,Birthdate,100,Array,1,Contacts) method ... +01/30/13 11:55:33,736 [1520] INFO index - uitype is 5 +01/30/13 11:55:33,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,736 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:33,736 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:33,736 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:33,736 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,737 [1520] DEBUG index - Entering getOutputHtml(1,assistant,Assistant,100,Array,1,Contacts) method ... +01/30/13 11:55:33,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,738 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:33,738 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,738 [1520] DEBUG index - Entering getOutputHtml(57,contact_id,Reports To,100,Array,1,Contacts) method ... +01/30/13 11:55:33,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,739 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:33,739 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,739 [1520] DEBUG index - Entering getOutputHtml(11,assistantphone,Assistant Phone,100,Array,1,Contacts) method ... +01/30/13 11:55:33,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,740 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:33,740 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,741 [1520] DEBUG index - Entering getOutputHtml(13,secondaryemail,Secondary Email,100,Array,1,Contacts) method ... +01/30/13 11:55:33,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,741 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:33,742 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,742 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Contacts) method ... +01/30/13 11:55:33,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,743 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:33,743 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,743 [1520] DEBUG index - Entering getOutputHtml(56,donotcall,Do Not Call,100,Array,1,Contacts) method ... +01/30/13 11:55:33,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,744 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:33,744 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,744 [1520] DEBUG index - Entering getOutputHtml(56,reference,Reference,10,Array,1,Contacts) method ... +01/30/13 11:55:33,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,745 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:33,745 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,746 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Contacts) method ... +01/30/13 11:55:33,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,746 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:33,747 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:55:33,747 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:55:33,748 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:55:33,748 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:33,749 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:33,749 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:55:33,749 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:55:33,751 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:33,751 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:33,753 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:33,753 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:55:33,755 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:33,755 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:33,755 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:33,755 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:33,755 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:33,755 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:33,756 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:55:33,756 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:55:33,756 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:55:33,758 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:55:33,758 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:55:33,758 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:55:33,758 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:55:33,758 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:55:33,758 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:55:33,758 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,759 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Contacts) method ... +01/30/13 11:55:33,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,760 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:33,760 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,760 [1520] DEBUG index - Entering getOutputHtml(56,portal,Portal User,100,Array,1,Contacts) method ... +01/30/13 11:55:33,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,761 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:33,761 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,762 [1520] DEBUG index - Entering getOutputHtml(5,support_start_date,Support Start Date,100,Array,1,Contacts) method ... +01/30/13 11:55:33,762 [1520] INFO index - uitype is 5 +01/30/13 11:55:33,762 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,762 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:55:33,762 [1520] INFO index - in getNewDisplayDate +01/30/13 11:55:33,763 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:33) method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,763 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:33,763 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:33,763 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,764 [1520] DEBUG index - Entering getOutputHtml(5,support_end_date,Support End Date,100,Array,1,Contacts) method ... +01/30/13 11:55:33,764 [1520] INFO index - uitype is 5 +01/30/13 11:55:33,765 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:55:33,765 [1520] INFO index - in getNewDisplayDate +01/30/13 11:55:33,765 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:55:33) method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,766 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:33,766 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:33,766 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:33,766 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,766 [1520] DEBUG index - Entering getOutputHtml(21,mailingstreet,Mailing Street,100,Array,1,Contacts) method ... +01/30/13 11:55:33,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,767 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:33,767 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,767 [1520] DEBUG index - Entering getOutputHtml(21,otherstreet,Other Street,100,Array,1,Contacts) method ... +01/30/13 11:55:33,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,768 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:33,768 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,769 [1520] DEBUG index - Entering getOutputHtml(1,mailingpobox,Mailing Po Box,100,Array,1,Contacts) method ... +01/30/13 11:55:33,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,769 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:33,770 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,770 [1520] DEBUG index - Entering getOutputHtml(1,otherpobox,Other Po Box,100,Array,1,Contacts) method ... +01/30/13 11:55:33,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,771 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:33,771 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,771 [1520] DEBUG index - Entering getOutputHtml(1,mailingcity,Mailing City,100,Array,1,Contacts) method ... +01/30/13 11:55:33,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,772 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:33,772 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,773 [1520] DEBUG index - Entering getOutputHtml(1,othercity,Other City,100,Array,1,Contacts) method ... +01/30/13 11:55:33,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,773 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:33,773 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,774 [1520] DEBUG index - Entering getOutputHtml(1,mailingstate,Mailing State,100,Array,1,Contacts) method ... +01/30/13 11:55:33,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,775 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:33,775 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,775 [1520] DEBUG index - Entering getOutputHtml(1,otherstate,Other State,100,Array,1,Contacts) method ... +01/30/13 11:55:33,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,776 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:33,776 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,776 [1520] DEBUG index - Entering getOutputHtml(1,mailingzip,Mailing Zip,100,Array,1,Contacts) method ... +01/30/13 11:55:33,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,777 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:33,777 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,778 [1520] DEBUG index - Entering getOutputHtml(1,otherzip,Other Zip,100,Array,1,Contacts) method ... +01/30/13 11:55:33,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,778 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:33,778 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,779 [1520] DEBUG index - Entering getOutputHtml(1,mailingcountry,Mailing Country,100,Array,1,Contacts) method ... +01/30/13 11:55:33,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,780 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:33,780 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,780 [1520] DEBUG index - Entering getOutputHtml(1,othercountry,Other Country,100,Array,1,Contacts) method ... +01/30/13 11:55:33,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,781 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:33,781 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,781 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Contacts) method ... +01/30/13 11:55:33,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,782 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:33,782 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,783 [1520] DEBUG index - Entering getOutputHtml(69,imagename,Contact Image,100,Array,1,Contacts) method ... +01/30/13 11:55:33,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,783 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:33,783 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:55:33,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,784 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:33,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,784 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:55:33,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,784 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:33,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,785 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:55:33,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,785 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:33,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,785 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:55:33,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,785 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:33,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,786 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:55:33,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,786 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:33,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,786 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:55:33,786 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:55:33,786 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:55:33,786 [1520] INFO index - Contact detail view +01/30/13 11:55:33,787 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:55:33,787 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,787 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,787 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:55:33,788 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:55:33,788 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:55:33,789 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,789 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,789 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:33,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:33,789 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:55:33,789 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:33,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,794 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:55:33,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,794 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:55:33,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,795 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:55:33,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,795 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:55:33,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,795 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:55:33,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,796 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:55:33,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,796 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:33,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,796 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:55:33,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,797 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:55:33,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,797 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:55:33,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,797 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:55:33,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,798 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:55:33,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,798 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:55:33,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,798 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:55:33,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,799 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:55:33,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,799 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:55:33,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,799 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:55:33,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,799 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:55:33,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,800 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:55:33,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,800 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:55:33,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,801 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:55:33,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,801 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:33,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,801 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:55:33,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,802 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:55:33,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,802 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:55:33,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,802 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:55:33,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,803 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:55:33,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,803 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:55:33,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,803 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:55:33,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,804 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:55:33,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,804 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:55:33,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,804 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:55:33,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,805 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:55:33,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,805 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:55:33,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,805 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:55:33,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,806 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:55:33,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,806 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:55:33,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,806 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:55:33,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,806 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:55:33,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,807 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:55:33,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,807 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:55:33,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,807 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:55:33,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,808 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:55:33,808 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:55:33,808 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:55:33,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:33,808 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:33,809 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:55:33,810 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:55:33,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,810 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:55:33,811 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,811 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:55:33,811 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,811 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:55:33,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,812 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:55:33,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,813 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:55:33,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,813 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:33,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,814 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:55:33,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:33,814 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:55:33,815 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:55:33,815 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,816 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:55:33,816 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:55:33,816 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:55:33,816 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:55:33,818 [1520] DEBUG index - Prepared sql query being executed : select contact_no from vtiger_contactdetails where contact_no = ? +01/30/13 11:55:33,818 [1520] DEBUG index - Prepared sql query parameters : [CON13] +01/30/13 11:55:33,820 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:55:33,847 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,848 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:55:33,848 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:33,852 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:55:33,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:33,852 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:55:33,852 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:55:33,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,860 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,860 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:33,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,861 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:33,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,861 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,862 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,862 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,862 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,863 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,863 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:55:33,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,863 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:33,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:55:33,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:33,865 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:55:34,055 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:55:34,056 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:55:34,056 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:49,531 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:55:49,653 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:55:49,653 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:55:49,653 [1520] DEBUG index - ****Starting for new session +01/30/13 11:55:49,654 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:55:49,654 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_contact_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '', +) +01/30/13 11:55:49,654 [1520] INFO index - About to take action Popup +01/30/13 11:55:49,654 [1520] DEBUG index - in Popup +01/30/13 11:55:49,654 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:55:49,654 [1520] INFO index - current module is Accounts +01/30/13 11:55:49,688 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:55:49,688 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:55:49,688 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:55:49,688 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:49,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,689 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:49,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,689 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:49,689 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:55:49,700 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:55:49,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,700 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:49,700 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:55:49,701 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:55:49,701 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:55:49,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,702 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:55:49,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,702 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:55:49,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,703 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:55:49,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,704 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:55:49,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,704 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:55:49,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,705 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:55:49,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,705 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:55:49,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,706 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:55:49,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,706 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:55:49,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,707 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:55:49,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,707 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:55:49,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,708 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:55:49,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,708 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:55:49,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,709 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:55:49,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,709 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:55:49,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,710 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:55:49,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,710 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:55:49,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,711 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:55:49,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,711 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:55:49,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,711 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:55:49,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,712 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:55:49,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,712 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:55:49,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,713 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:55:49,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,713 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:55:49,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,714 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:55:49,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,714 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:55:49,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,714 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:55:49,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,715 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:55:49,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,715 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:55:49,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,716 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:55:49,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,716 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:55:49,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,717 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:55:49,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,717 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:55:49,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,718 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:55:49,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,718 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:55:49,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,719 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:55:49,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,719 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:55:49,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,720 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:55:49,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,720 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:55:49,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,721 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:55:49,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,721 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:55:49,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,722 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:55:49,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,722 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:55:49,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,723 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:55:49,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,723 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:55:49,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,723 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:55:49,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:55:49,724 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:55:49,727 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:55:49,727 [1520] DEBUG index - Prepared sql query parameters : [429,1,Accounts,Popup,,2013-01-30 11:55:49] +01/30/13 11:55:49,730 [1520] DEBUG index - Current user is: admin +01/30/13 11:55:49,730 [1520] DEBUG index - Current theme is: softed +01/30/13 11:55:49,730 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:55:49,730 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:55:49,732 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:55:49,732 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:55:49,734 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:55:49,734 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:55:49,736 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:55:49,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:55:49,736 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:55:49,737 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:55:49,737 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:55:49,737 [1520] DEBUG index - skipping headers +01/30/13 11:55:49,737 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:55:49,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:55:49,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:55:49,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:55:49,745 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,746 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,748 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,748 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:55:49,748 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,748 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,749 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:55:49,749 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:55:49,757 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,757 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:55:49,757 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:55:49,757 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_contact_account_address,,,,,) method ... +01/30/13 11:55:49,758 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:55:49,758 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:55:49,759 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,759 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,759 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,759 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,761 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,761 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,761 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,761 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,761 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,762 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,762 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,763 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,764 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,764 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,764 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:49,764 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:55:49,764 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:55:49,764 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:55:49,764 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:49,764 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:55:49,764 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:55:49,765 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:55:49,765 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:55:49,765 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:55:49,765 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:55:49,768 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:55:49,772 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:55:49,772 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,772 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,772 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:55:49,772 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:55:49,778 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:55:49,778 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=specific_contact_account_address,ASC,) method ... +01/30/13 11:55:49,778 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,778 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,779 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,779 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,779 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,779 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,779 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:55:49,780 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,780 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,780 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,780 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,780 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:55:49,780 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,780 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,781 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,781 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,781 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:55:49,781 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:55:49,782 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,Array) method ... +01/30/13 11:55:49,782 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,782 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,783 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:55:49,783 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:55:49,786 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,786 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,786 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,786 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,787 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,787 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,787 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,787 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,787 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,788 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,788 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,788 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,788 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,788 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,788 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,788 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:55:49,790 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,790 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:55:49,793 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,793 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:55:49,795 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,795 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:55:49,797 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,797 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:55:49,798 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,798 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,800 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,800 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,800 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,801 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,802 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,803 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,804 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,805 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,805 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,806 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,806 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,806 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,807 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,808 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,808 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,808 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,808 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,809 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,809 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,809 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,809 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,810 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,810 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,810 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,810 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,810 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,810 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,813 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,813 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,816 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,816 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,817 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,817 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,817 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,818 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,819 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,819 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,819 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,819 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,819 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:55:49,821 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,821 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:55:49,826 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,826 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:55:49,829 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,829 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:55:49,831 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,831 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:55:49,834 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,834 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,836 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,836 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:49,836 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,837 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,838 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,839 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,840 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,841 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,841 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,842 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,842 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,842 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,842 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,843 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,843 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,843 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,843 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,844 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,844 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,844 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,844 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,845 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,845 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,846 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,846 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,846 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,850 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,850 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,852 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,852 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,853 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,853 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,853 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,853 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,853 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,854 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,854 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,855 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,855 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:55:49,856 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,857 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:55:49,859 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,859 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:55:49,861 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,861 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:55:49,862 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,862 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:55:49,864 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,864 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,865 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,865 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:55:49,865 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,865 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:49,865 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,865 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,866 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,867 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,868 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,869 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,870 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,870 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,870 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,871 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,871 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,871 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,871 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,872 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,872 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,872 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,872 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,872 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,873 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,873 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,873 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,873 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,874 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,875 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,875 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,875 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,875 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,877 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,877 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,878 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,879 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,879 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,879 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,879 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,880 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,880 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,880 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,880 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,881 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,881 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,881 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:55:49,883 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,883 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:55:49,885 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,886 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:55:49,887 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,887 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:55:49,889 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,889 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:55:49,891 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,891 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,892 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,892 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:55:49,892 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,893 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,894 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:49,895 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,896 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,897 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,898 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,898 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,898 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,898 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,899 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,900 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,900 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,900 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,900 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,901 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,901 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,901 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,902 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,902 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,902 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,903 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,903 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,903 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,903 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,905 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,905 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,906 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,907 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,907 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,907 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,908 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,908 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,908 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,908 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,909 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,909 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,910 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:55:49,911 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,911 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:55:49,914 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,914 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:55:49,918 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,918 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:55:49,920 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,920 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:55:49,922 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,922 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,923 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,923 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:49,924 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,925 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,926 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,927 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,928 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,929 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,929 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,929 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,930 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,931 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,931 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,931 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,931 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,932 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,932 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,932 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,932 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,932 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,933 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,933 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,933 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,933 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,933 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,935 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,935 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,936 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,937 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,937 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,937 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,937 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,938 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,938 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,938 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,938 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,939 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,939 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,939 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:55:49,941 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,941 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:55:49,944 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,944 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:55:49,945 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,946 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:55:49,947 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,947 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:55:49,949 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,949 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,950 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,950 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:55:49,950 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,950 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,951 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,952 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,953 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,954 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,955 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,955 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,955 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,955 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,956 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,956 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,956 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,956 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,957 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,957 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,957 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,957 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,957 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,958 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,958 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,958 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,958 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,959 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,959 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,959 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,960 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,960 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,961 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,962 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,963 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,964 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,964 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,964 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,964 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,965 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,965 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,965 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,965 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,965 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,966 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,966 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,966 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,966 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,966 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,966 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,966 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:55:49,968 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,968 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:55:49,971 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,971 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:55:49,973 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:49,973 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:55:49,974 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:49,975 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:55:49,976 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,976 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,977 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:49,978 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:55:49,978 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,979 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,980 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:49,981 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:49,982 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,983 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,983 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,983 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,983 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,984 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,984 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,984 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,984 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,984 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,985 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,985 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,985 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,986 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,986 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,986 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,986 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,986 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,987 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,987 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,987 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:49,987 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:49,987 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:49,987 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:49,987 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:49,989 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:49,989 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:49,991 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:49,991 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:49,991 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:49,991 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:49,992 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:49,992 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:49,992 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,992 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:49,993 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:49,993 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:49,994 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:55:49,995 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:49,995 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:55:49,998 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:49,998 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:55:50,001 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:50,001 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:55:50,003 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:50,003 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:55:50,004 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,004 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,006 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:50,006 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,006 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:50,007 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,008 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,009 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,010 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,011 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,011 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,011 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,011 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,012 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,012 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,012 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,012 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,012 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,013 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,013 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,013 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,013 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,014 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,014 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,014 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,014 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,014 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,015 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,015 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:50,015 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:50,015 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:50,015 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:50,015 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:50,019 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:50,019 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:50,021 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,022 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,022 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,022 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,022 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:50,023 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:50,024 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,024 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,024 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:50,024 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:50,024 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:55:50,026 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:50,026 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:55:50,030 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:50,031 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:55:50,032 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:50,032 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:55:50,034 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:50,034 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:55:50,035 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,035 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,037 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:50,037 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:55:50,037 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,038 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,039 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,040 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,041 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,042 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,042 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,042 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,042 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,043 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,044 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,044 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,044 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,044 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,045 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:50,046 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:50,046 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:50,046 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:50,046 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:50,048 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:50,048 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:50,049 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,049 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,050 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,050 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,050 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:50,051 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:50,051 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,052 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,052 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:50,052 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:50,052 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:55:50,056 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:50,056 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:55:50,059 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:50,059 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:55:50,060 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:50,061 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:55:50,062 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:50,062 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:55:50,064 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,064 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,065 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:50,065 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:55:50,065 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,065 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:50,066 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,067 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,068 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,069 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,070 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,070 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,070 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,070 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,070 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,071 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,071 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,071 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,071 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,071 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,072 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,072 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,072 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,072 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,072 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,073 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,073 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,073 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:55:50,074 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:55:50,074 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:50,074 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:50,074 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:50,076 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:50,077 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:55:50,078 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,078 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,079 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,079 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,079 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:50,080 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,080 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,081 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:50,081 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:50,081 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:55:50,083 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:50,083 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:55:50,085 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:50,085 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:55:50,087 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:50,087 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:55:50,090 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:50,090 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:55:50,092 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,092 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,093 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:50,094 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ,1) method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:50,094 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,095 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,096 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,098 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,099 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,099 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,099 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,100 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,101 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,101 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,101 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:55:50,102 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:55:50,102 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:50,102 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:50,103 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:50,104 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:50,104 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:55:50,106 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,106 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,107 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,107 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,107 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,107 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:55:50,108 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,108 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,109 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:55:50,109 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:55:50,109 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:55:50,111 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:55:50,111 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:55:50,116 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:55:50,116 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:55:50,118 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:55:50,118 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:55:50,120 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:55:50,120 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:55:50,121 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,121 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,123 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:55:50,123 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ 1,1) method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:55:50,123 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,124 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:55:50,125 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,126 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,127 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,128 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,128 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,128 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,129 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:55:50,130 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,130 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,130 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:55:50,131 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:55:50,131 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:55:50,131 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:55:50,132 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:55:50,135 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:55:50,135 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:55:50,137 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:55:50,137 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:55:50,137 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:55:50,137 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:55:50,137 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:55:50,138 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,660 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:56:10,783 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:56:10,783 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:56:10,783 [1520] DEBUG index - ****Starting for new session +01/30/13 11:56:10,784 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:56:10,784 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_contact_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '', +) +01/30/13 11:56:10,784 [1520] INFO index - About to take action Popup +01/30/13 11:56:10,784 [1520] DEBUG index - in Popup +01/30/13 11:56:10,784 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:56:10,784 [1520] INFO index - current module is Accounts +01/30/13 11:56:10,819 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:56:10,819 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:56:10,819 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:56:10,819 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:10,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,820 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:10,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,820 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:10,820 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:56:10,831 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:10,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,832 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:10,832 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:56:10,832 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:56:10,833 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:56:10,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,833 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:56:10,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,834 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:56:10,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,834 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:56:10,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,835 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:56:10,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,835 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:56:10,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,836 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:56:10,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,836 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:56:10,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,837 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:56:10,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,837 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:56:10,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,838 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:56:10,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,838 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:56:10,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,839 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:56:10,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,839 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:56:10,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,840 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:56:10,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,840 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:56:10,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,841 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:56:10,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,841 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:56:10,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,842 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:56:10,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,842 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:56:10,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,843 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:56:10,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,843 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:56:10,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,844 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:56:10,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,844 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:56:10,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,844 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:56:10,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,845 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:56:10,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,845 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:56:10,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,846 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:56:10,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,846 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:56:10,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,847 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:56:10,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,847 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:56:10,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,848 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:56:10,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,848 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:56:10,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,849 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:56:10,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,849 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:56:10,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,850 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:56:10,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,850 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:56:10,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,850 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:56:10,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,851 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:56:10,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,851 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:56:10,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,852 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:56:10,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,852 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:56:10,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,853 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:56:10,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,853 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:56:10,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,854 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:56:10,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,854 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:56:10,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,855 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:56:10,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:10,855 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:56:10,858 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:56:10,858 [1520] DEBUG index - Prepared sql query parameters : [430,1,Accounts,Popup,,2013-01-30 11:56:10] +01/30/13 11:56:10,861 [1520] DEBUG index - Current user is: admin +01/30/13 11:56:10,861 [1520] DEBUG index - Current theme is: softed +01/30/13 11:56:10,861 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:56:10,861 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:56:10,863 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:56:10,863 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:56:10,865 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:56:10,865 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:56:10,867 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:56:10,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:56:10,867 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:56:10,868 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:56:10,868 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:56:10,868 [1520] DEBUG index - skipping headers +01/30/13 11:56:10,868 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:56:10,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:56:10,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:56:10,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:56:10,875 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,875 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,877 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,878 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:56:10,878 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,878 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,878 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:10,878 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:56:10,886 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:10,887 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:10,887 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_contact_account_address,,,,,) method ... +01/30/13 11:56:10,887 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:56:10,888 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:56:10,888 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,888 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,889 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:10,889 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:10,890 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,891 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:10,891 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,891 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,891 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:10,892 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,892 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,893 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,894 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,894 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,894 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:10,894 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:10,894 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:56:10,894 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:56:10,894 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:10,894 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:56:10,894 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:56:10,895 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:56:10,895 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:56:10,895 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:56:10,895 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:56:10,898 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:56:10,902 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:56:10,902 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,902 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,902 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:56:10,903 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:56:10,905 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:56:10,905 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=specific_contact_account_address,ASC,) method ... +01/30/13 11:56:10,906 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,906 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,906 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,906 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,906 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:10,907 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,907 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:10,908 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,908 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,908 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,908 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,908 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:10,908 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:56:10,909 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,Array) method ... +01/30/13 11:56:10,909 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,910 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,910 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:56:10,910 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:56:10,913 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,913 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,914 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,914 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,914 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,914 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:10,915 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,915 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:10,916 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:10,916 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:10,918 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:10,918 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:10,923 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:10,923 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:10,925 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:10,925 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:10,927 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:10,927 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:10,928 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,929 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,930 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:10,930 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:56:10,930 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,930 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:10,930 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,930 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,932 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,933 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,934 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,935 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,935 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,936 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,936 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,936 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,937 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,938 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,938 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,938 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,938 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,939 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,939 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,939 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,939 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,939 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,940 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:10,940 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:10,940 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:10,940 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:10,940 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:10,944 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:10,944 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:10,945 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,946 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,946 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,947 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,947 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,947 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,947 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,947 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:10,948 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:10,948 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:10,949 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:10,951 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:10,951 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:10,953 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:10,953 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:10,955 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:10,955 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:10,956 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:10,956 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:10,958 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,958 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,959 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:10,959 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:56:10,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,959 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,960 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,961 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,962 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,963 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,964 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,964 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,964 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,964 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,964 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,965 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,965 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,965 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,966 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,967 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,967 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,967 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,967 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,968 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,968 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,968 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,968 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,968 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,969 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:10,969 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:10,969 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:10,969 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:10,969 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:10,972 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:10,972 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:10,974 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,975 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,975 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,975 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,975 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,976 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,976 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,976 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,976 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,976 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,977 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:10,977 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:10,977 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,977 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,977 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:10,977 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:10,977 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:10,979 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:10,979 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:10,981 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:10,981 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:10,983 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:10,983 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:10,984 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:10,985 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:10,986 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,986 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,987 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:10,987 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:56:10,987 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,987 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:10,987 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,988 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:10,989 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,990 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:10,991 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:10,992 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:10,992 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,992 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,993 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,993 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,993 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,994 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:10,995 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:10,995 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:10,995 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:10,995 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:10,996 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:10,996 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:10,996 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:10,996 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:10,996 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:10,997 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:10,997 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:10,997 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:10,997 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:10,997 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:10,999 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:10,999 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,000 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,001 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,001 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,001 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,001 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,002 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,002 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,002 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,002 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,002 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,003 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,003 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,003 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,003 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,003 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,003 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,003 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:11,005 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,005 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:11,007 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,007 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:11,011 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,011 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:11,013 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,013 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:11,014 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,014 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,016 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,016 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,016 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,017 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,018 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,019 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,020 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,021 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,021 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,021 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,021 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,022 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,022 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,022 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,022 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,022 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,023 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,023 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,023 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,024 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,024 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,024 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,024 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,024 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,025 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,025 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,025 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,025 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,025 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,025 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,025 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,027 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,027 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,029 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,030 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,030 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,030 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,030 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,031 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,031 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,031 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,031 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,031 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,032 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,032 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,032 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,032 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,032 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,032 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,032 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:11,034 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,034 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:11,036 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,037 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:11,038 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,038 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:11,040 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,040 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:11,041 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,041 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,043 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,043 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,043 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,044 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:11,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,046 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,047 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,048 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,048 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,049 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,049 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,049 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,049 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,049 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,050 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,050 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,050 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,050 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,050 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,051 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,051 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,051 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,052 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,052 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,052 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,053 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,053 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,054 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,055 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,056 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,057 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,057 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,057 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,057 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,058 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,058 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,058 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,058 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,058 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,059 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,059 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,059 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,059 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,059 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,059 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,059 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:11,061 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,061 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:11,064 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,064 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:11,066 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,066 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:11,067 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,067 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:11,069 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,069 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,070 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,070 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:56:11,070 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,070 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,070 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,071 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,072 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,073 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,075 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,075 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,075 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,076 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,076 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,076 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,076 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,077 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,078 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,078 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,078 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,079 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,079 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,079 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,080 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,080 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,081 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,081 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,083 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,084 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,084 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,084 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,084 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,085 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,086 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,086 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,086 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,086 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,086 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:11,088 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,088 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:11,090 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,090 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:11,092 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,092 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:11,093 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,093 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:11,095 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,095 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,096 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,096 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:56:11,096 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,096 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:11,096 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,096 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,097 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,098 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,099 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,100 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,101 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,101 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,101 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,101 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,102 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,102 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,102 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,102 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,103 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,103 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,103 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,103 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,104 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,104 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,104 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,104 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,105 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,105 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,105 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,105 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,107 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,107 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,109 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,109 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,110 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,110 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,110 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,111 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,112 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,112 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,112 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,112 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,112 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,112 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:11,115 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,115 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:11,117 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,117 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:11,119 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,119 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:11,121 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,121 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:11,124 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,124 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,125 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,125 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:56:11,125 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,125 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,126 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,127 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,128 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,129 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,130 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,130 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,130 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,130 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,130 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,131 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,131 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,131 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,131 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,132 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,133 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,133 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,133 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,134 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,134 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,134 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,135 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,137 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,137 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,138 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,139 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,139 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,139 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,139 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,140 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,140 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,140 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,140 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,140 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,141 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,141 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,141 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,141 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,141 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,141 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,141 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:11,143 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,143 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:11,145 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,146 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:11,149 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,149 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:11,151 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,151 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:11,153 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,153 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,154 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,154 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:56:11,154 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,154 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,155 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,156 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,157 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,158 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,159 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,159 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,159 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,159 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,159 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,160 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,160 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,160 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,160 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,161 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,161 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,161 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,161 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,161 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,162 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,162 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,162 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,162 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,163 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,163 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,163 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,163 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,165 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,165 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,167 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,168 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,168 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,168 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,168 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,169 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,169 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,169 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,169 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,169 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,170 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,170 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,170 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,170 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,170 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,170 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,170 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:11,172 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,172 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:11,175 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,175 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:11,176 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,177 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:11,178 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,178 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:11,180 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,180 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,181 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,181 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:56:11,181 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,181 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:11,181 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,182 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,183 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,184 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,185 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,186 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,186 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,186 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,186 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,186 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,187 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,187 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,187 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,187 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,187 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,188 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,188 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,188 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,188 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,188 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,189 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,189 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,189 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,189 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,190 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,190 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,190 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:11,190 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:11,190 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,190 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,190 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,192 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,192 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:11,194 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,194 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,195 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,195 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,195 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,195 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,195 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,196 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,196 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,197 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,197 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:11,199 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,199 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:11,201 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,201 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:11,203 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,203 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:11,205 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,205 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:11,206 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,206 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,208 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,208 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ,1) method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,208 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,209 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,210 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,211 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,212 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,213 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,213 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,213 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,213 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,214 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,215 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,215 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,215 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,215 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,216 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:11,216 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:11,216 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,217 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,217 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,218 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,219 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:11,220 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,221 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,221 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,221 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,221 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,222 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,222 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,222 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,222 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,222 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,223 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:11,223 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:11,223 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,223 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,223 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:11,223 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:11,223 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:11,227 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:11,227 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:11,229 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:11,229 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:11,232 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:11,232 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:11,234 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:11,234 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:11,235 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,235 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,237 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:11,237 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ 1,1) method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,237 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:11,238 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,239 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:11,240 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:11,241 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,242 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,242 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,242 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,242 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,243 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,244 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:11,244 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,244 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,244 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,245 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:11,245 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:11,245 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:11,245 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:11,245 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:11,246 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:11,246 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:11,246 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:11,246 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:11,246 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:11,248 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:11,248 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:11,252 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:11,252 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:56:11,252 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:11,252 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:11,252 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:11,253 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,649 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:56:25,774 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:56:25,774 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:56:25,774 [1520] DEBUG index - ****Starting for new session +01/30/13 11:56:25,775 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:56:25,775 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_contact_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '', +) +01/30/13 11:56:25,775 [1520] INFO index - About to take action Popup +01/30/13 11:56:25,775 [1520] DEBUG index - in Popup +01/30/13 11:56:25,775 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:56:25,775 [1520] INFO index - current module is Accounts +01/30/13 11:56:25,808 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:56:25,809 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:56:25,809 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:56:25,809 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:25,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,809 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:25,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,809 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:25,810 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:56:25,821 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:25,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,822 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:25,822 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:56:25,822 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:56:25,823 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:56:25,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,823 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:56:25,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,824 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:56:25,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,824 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:56:25,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,825 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:56:25,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,825 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:56:25,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,826 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:56:25,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,826 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:56:25,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,827 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:56:25,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,827 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:56:25,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,827 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:56:25,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,828 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:56:25,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,828 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:56:25,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,829 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:56:25,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,829 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:56:25,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,830 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:56:25,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,830 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:56:25,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,831 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:56:25,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,831 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:56:25,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,832 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:56:25,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,832 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:56:25,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,833 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:56:25,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,833 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,834 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:56:25,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,835 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:56:25,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,835 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:56:25,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,836 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:56:25,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,836 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:56:25,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,837 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:56:25,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,837 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:56:25,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,838 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:56:25,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,838 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:56:25,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,839 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:56:25,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,839 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:56:25,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,840 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:56:25,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,840 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:56:25,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,841 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:56:25,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,841 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:56:25,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,842 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:56:25,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,842 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:56:25,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,843 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:56:25,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,843 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:56:25,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,844 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:56:25,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,844 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:56:25,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,845 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:56:25,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:25,845 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:56:25,849 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:56:25,849 [1520] DEBUG index - Prepared sql query parameters : [431,1,Accounts,Popup,,2013-01-30 11:56:25] +01/30/13 11:56:25,852 [1520] DEBUG index - Current user is: admin +01/30/13 11:56:25,852 [1520] DEBUG index - Current theme is: softed +01/30/13 11:56:25,852 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:56:25,852 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:56:25,854 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:56:25,854 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:56:25,856 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:56:25,856 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:56:25,858 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:56:25,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:56:25,859 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:56:25,859 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:56:25,859 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:56:25,859 [1520] DEBUG index - skipping headers +01/30/13 11:56:25,859 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:56:25,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:56:25,866 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:56:25,866 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:56:25,866 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,867 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,868 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,869 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:56:25,869 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,869 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,869 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,869 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,869 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:25,869 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:56:25,879 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:25,879 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:25,879 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_contact_account_address,,,,,) method ... +01/30/13 11:56:25,879 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:56:25,880 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:56:25,880 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,881 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,881 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:25,881 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:25,883 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,883 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:25,883 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,883 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,883 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:25,884 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,884 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,885 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,886 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,886 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,886 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:25,886 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:25,886 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:56:25,886 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:56:25,886 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:25,886 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:56:25,886 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:56:25,887 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:56:25,887 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:56:25,887 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:56:25,887 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:56:25,893 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:56:25,898 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:56:25,898 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,898 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,899 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:56:25,899 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:56:25,902 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:56:25,902 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=specific_contact_account_address,ASC,) method ... +01/30/13 11:56:25,902 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,902 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,903 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,903 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,903 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,903 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,903 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:25,904 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,904 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,904 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,904 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,904 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:25,904 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,904 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,905 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,905 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,905 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:25,905 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:56:25,906 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,Array) method ... +01/30/13 11:56:25,906 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,906 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,907 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:56:25,907 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:56:25,911 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,911 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,911 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,911 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,912 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,912 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,912 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,912 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,912 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,913 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,913 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:25,913 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,913 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,913 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:25,913 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:25,913 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:25,915 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:25,915 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:25,918 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:25,918 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:25,922 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:25,922 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:25,924 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:25,924 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:25,926 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,926 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,928 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:25,928 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,928 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,929 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:25,930 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,931 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,932 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,933 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,934 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,934 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,934 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,934 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,934 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,935 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,935 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,935 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,935 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,936 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,936 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,936 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,936 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,937 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:25,937 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:25,938 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:25,938 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:25,938 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:25,940 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:25,940 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:25,942 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,943 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,943 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,943 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,943 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,944 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,944 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,944 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,944 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,944 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,945 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,945 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:25,945 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,945 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,945 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:25,945 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:25,945 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:25,947 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:25,947 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:25,950 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:25,950 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:25,952 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:25,952 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:25,954 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:25,954 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:25,956 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,956 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,957 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:25,957 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,958 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:25,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,961 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,962 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,963 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,963 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,963 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,963 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,964 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,965 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,966 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,966 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,966 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,967 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:25,967 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:25,967 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:25,968 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:25,968 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:25,973 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:25,973 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:25,975 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,975 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,976 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,976 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,976 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,977 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:25,978 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:25,978 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,978 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,978 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:25,978 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:25,978 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:25,980 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:25,980 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:25,983 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:25,983 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:25,985 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:25,985 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:25,988 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:25,988 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:25,989 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,989 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,991 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:25,991 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,991 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,992 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,993 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,994 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:25,995 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,996 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,996 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,996 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,996 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,997 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,997 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,997 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,997 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,997 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,998 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:25,998 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:25,999 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:25,999 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:25,999 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:25,999 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:25,999 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:25,1000 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:25,1000 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:25,1000 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:25,1000 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,000 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,000 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,000 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,000 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,002 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,002 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,004 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,005 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,005 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,005 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,005 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,006 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,007 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,007 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,007 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,007 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,007 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,007 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:26,009 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,009 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:26,012 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,012 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:26,014 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,014 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:26,016 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,017 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:26,018 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,019 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,020 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,020 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:56:26,020 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,020 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,020 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,020 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,020 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,021 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,022 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,023 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,024 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,025 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,025 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,026 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,026 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,026 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,026 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,027 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,027 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,027 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,027 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,027 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,028 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,028 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,028 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,029 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,029 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,030 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,030 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,030 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,031 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,031 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,033 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,034 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,034 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,035 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,035 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,035 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,035 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,035 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,036 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,036 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,037 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:26,039 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,039 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:26,042 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,042 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:26,044 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,044 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:26,046 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,046 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:26,048 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,048 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,049 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,049 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:56:26,049 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,049 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,049 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,050 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,051 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,052 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,053 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,054 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,054 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,054 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,055 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,055 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,055 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,055 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,055 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,056 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,056 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,056 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,056 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,057 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,057 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,057 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,057 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,058 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,058 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,058 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,059 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,059 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,061 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,061 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,064 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,065 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,065 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,065 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,065 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,066 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,066 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,066 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,066 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,067 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,067 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,067 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:26,070 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,070 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:26,075 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,075 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:26,077 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,077 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:26,079 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,079 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:26,081 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,081 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,082 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,082 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,083 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,084 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:26,085 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,086 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,087 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,088 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,088 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,088 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,089 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,090 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,090 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,090 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,090 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,091 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,091 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,091 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,091 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,091 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,092 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,092 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,092 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,092 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,092 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,094 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,094 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,098 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,098 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,099 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,099 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,099 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,100 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,100 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,101 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,101 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,101 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,101 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:26,103 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,103 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:26,106 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,106 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:26,108 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,108 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:26,110 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,110 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:26,111 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,111 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,113 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,113 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:26,113 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,114 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:26,115 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,116 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,117 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,118 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,118 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,118 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,118 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,119 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,120 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,120 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,120 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,120 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,121 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,121 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,121 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,121 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,122 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,122 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,122 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,122 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,122 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,122 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,124 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,124 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,126 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,126 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,126 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,127 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,127 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,127 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,127 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,128 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,128 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,129 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:26,130 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,131 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:26,133 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,133 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:26,135 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,135 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:26,137 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,137 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:26,138 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,138 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,140 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,140 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:26,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,141 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:26,142 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,143 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,144 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,145 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,145 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,145 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,145 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,146 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,147 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,147 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,147 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,147 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,148 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,148 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,148 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,148 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,148 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,149 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,149 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,149 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,149 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,149 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,151 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,151 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,152 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,153 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,153 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,153 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,153 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,154 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,154 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,154 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,154 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,154 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,155 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,155 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,155 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,155 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,155 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,155 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,155 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:26,157 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,157 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:26,163 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,163 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:26,167 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,167 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:26,169 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,169 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:26,170 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,171 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,172 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,172 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:56:26,172 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,172 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:26,172 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,172 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:26,172 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,173 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:26,174 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,175 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,176 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,177 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,177 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,177 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,177 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,178 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,178 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,178 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,178 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,178 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,179 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,179 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,179 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,179 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,180 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,180 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,180 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,180 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,180 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,181 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,181 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,181 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,181 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,181 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,181 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,183 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,183 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,185 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,185 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,185 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,185 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,186 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,186 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,186 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,186 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,186 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,187 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,187 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,187 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:26,189 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,189 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:26,192 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,192 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:26,194 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,194 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:26,195 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,195 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:26,197 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,197 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,198 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,198 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:56:26,198 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,200 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:26,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,202 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,203 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,204 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,204 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,204 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,205 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,206 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,206 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,206 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,207 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:26,207 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:26,207 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,208 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,208 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,209 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,210 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:26,211 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,211 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,212 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,212 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,212 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,213 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,214 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,214 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,214 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,214 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,214 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:26,216 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,216 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:26,218 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,218 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:26,220 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,220 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:26,222 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,222 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:26,223 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,223 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,224 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,224 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ,1) method ... +01/30/13 11:56:26,224 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,225 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,226 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,227 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,228 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,229 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,230 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,230 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,230 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,230 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,231 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,231 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,231 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,231 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,231 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,232 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,232 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,232 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,232 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,232 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,233 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,233 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,233 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,233 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:26,233 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:26,233 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,233 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,233 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,235 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,235 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:26,237 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,237 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,238 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,238 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,238 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:26,239 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:26,239 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,240 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,240 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:26,240 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:26,240 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:26,242 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:26,242 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:26,244 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:26,244 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:26,246 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:26,246 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:26,248 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:26,248 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:26,249 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,249 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,250 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ 1,1) method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,251 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,252 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,253 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,254 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,255 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,256 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,256 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,256 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,257 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:26,258 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,258 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,258 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:26,259 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:26,259 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:26,259 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:26,260 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:26,262 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:26,262 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:26,263 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:26,264 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:56:26,264 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:26,264 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:26,264 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:26,265 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:29,179 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:56:29,302 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:56:29,302 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:56:29,302 [1520] DEBUG index - ****Starting for new session +01/30/13 11:56:29,303 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:56:29,303 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:56:29,303 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:56:29,303 [1520] DEBUG index - in CalendarAjax +01/30/13 11:56:29,303 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:56:29,303 [1520] INFO index - current module is Calendar +01/30/13 11:56:29,337 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:56:29,337 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:56:29,337 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:56:29,337 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:29,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:29,338 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:29,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:29,338 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:29,338 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:56:29,349 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:29,349 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:29,349 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:29,350 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:56:29,350 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:56:29,350 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:56:29,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,351 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:56:29,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,351 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:56:29,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,352 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:56:29,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,352 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:56:29,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,353 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:56:29,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,353 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:56:29,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,354 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:56:29,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,354 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:56:29,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,355 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:56:29,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,355 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:56:29,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,356 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:56:29,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,356 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:56:29,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,357 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:56:29,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,357 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:56:29,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,358 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:56:29,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,358 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:56:29,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,358 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:56:29,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,359 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:56:29,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,359 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:56:29,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,360 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:56:29,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,360 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,361 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:56:29,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,362 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:56:29,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,362 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:56:29,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,363 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:56:29,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,363 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:56:29,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,364 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:56:29,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,364 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:56:29,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,365 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:56:29,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,365 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:56:29,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,366 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:56:29,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,366 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:56:29,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,367 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:56:29,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,367 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:56:29,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,368 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:56:29,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,368 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:56:29,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,368 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:56:29,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,369 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:56:29,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,369 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:56:29,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,370 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:56:29,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,370 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:56:29,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,371 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:56:29,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,371 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:56:29,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,372 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:56:29,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:29,372 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:56:29,373 [1520] DEBUG index - Current user is: admin +01/30/13 11:56:29,373 [1520] DEBUG index - Current theme is: softed +01/30/13 11:56:29,373 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:56:29,373 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:56:29,375 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:56:29,375 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:56:29,377 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:56:29,377 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:56:29,379 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:56:29,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:56:29,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:56:29,380 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:56:29,380 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:56:29,380 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:56:29,380 [1520] DEBUG index - skipping headers +01/30/13 11:56:29,381 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:56:29,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:56:29,386 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:56:29,386 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:56:29,386 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:56:29,387 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:56:29,391 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:57')) +01/30/13 11:56:29,394 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:56:36,757 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:56:36,886 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:56:36,886 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:56:36,886 [1520] DEBUG index - ****Starting for new session +01/30/13 11:56:36,886 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:56:36,887 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_contact_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '', +) +01/30/13 11:56:36,887 [1520] INFO index - About to take action Popup +01/30/13 11:56:36,887 [1520] DEBUG index - in Popup +01/30/13 11:56:36,887 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:56:36,887 [1520] INFO index - current module is Accounts +01/30/13 11:56:36,920 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:56:36,920 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:56:36,920 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:56:36,920 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:36,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,921 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:36,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,921 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:36,921 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:56:36,934 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:56:36,934 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,934 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:36,934 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:56:36,934 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:56:36,935 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:56:36,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,935 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:56:36,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,936 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:56:36,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,936 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:56:36,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,937 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:56:36,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,937 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:56:36,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,938 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:56:36,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,938 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:56:36,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,939 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:56:36,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,939 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:56:36,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,940 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:56:36,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,940 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:56:36,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,941 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:56:36,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,941 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:56:36,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,942 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:56:36,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,942 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:56:36,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,943 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:56:36,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,943 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:56:36,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,944 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:56:36,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,944 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:56:36,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,944 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:56:36,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,945 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:56:36,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,945 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:56:36,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,946 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:56:36,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,946 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:56:36,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,947 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:56:36,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,947 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:56:36,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,948 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:56:36,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,948 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:56:36,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,949 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:56:36,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,949 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:56:36,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,950 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:56:36,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,950 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:56:36,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,951 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:56:36,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,951 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:56:36,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,951 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:56:36,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,952 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:56:36,952 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,952 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:56:36,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,953 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:56:36,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,953 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:56:36,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,954 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:56:36,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,954 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:56:36,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,955 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:56:36,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,955 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:56:36,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,956 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:56:36,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,956 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:56:36,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,957 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:56:36,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:56:36,957 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:56:36,962 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:56:36,962 [1520] DEBUG index - Prepared sql query parameters : [432,1,Accounts,Popup,,2013-01-30 11:56:36] +01/30/13 11:56:36,965 [1520] DEBUG index - Current user is: admin +01/30/13 11:56:36,965 [1520] DEBUG index - Current theme is: softed +01/30/13 11:56:36,965 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:56:36,965 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:56:36,967 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:56:36,967 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:56:36,969 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:56:36,969 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:56:36,971 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:56:36,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:36,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:56:36,972 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:56:36,972 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:56:36,972 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:56:36,972 [1520] DEBUG index - skipping headers +01/30/13 11:56:36,972 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:56:36,973 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:56:36,979 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:56:36,979 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:56:36,979 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:36,980 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:56:36,982 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:36,982 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:56:36,982 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,982 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,982 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,983 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:56:36,983 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:56:36,993 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:56:36,993 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:56:36,993 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_contact_account_address,,,,,) method ... +01/30/13 11:56:36,993 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:56:36,994 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:56:36,995 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,995 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:36,995 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:36,995 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:36,997 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:36,997 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:36,997 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,997 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:36,998 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:36,998 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,998 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:36,998 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:36,998 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:36,998 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,999 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:36,1000 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:36,1000 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,000 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:37,000 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:37,000 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:56:37,000 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:56:37,000 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:37,001 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:56:37,001 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:56:37,001 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:56:37,001 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:56:37,001 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:56:37,001 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:56:37,006 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:56:37,011 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:56:37,011 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,011 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,011 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:56:37,011 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:56:37,015 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:56:37,015 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=specific_contact_account_address,ASC,) method ... +01/30/13 11:56:37,015 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,015 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,015 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,015 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,016 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,016 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,016 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:56:37,016 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,016 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,016 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:56:37,017 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,017 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:56:37,017 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:56:37,019 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,Array) method ... +01/30/13 11:56:37,020 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,020 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,020 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:56:37,020 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:56:37,024 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,024 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,024 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,025 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,025 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,025 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,026 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,026 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,027 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,027 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,027 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:37,031 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,032 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:37,035 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,035 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:37,037 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,037 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:37,039 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,039 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:56:37,040 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,040 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,042 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,042 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,042 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,044 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,045 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,046 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,047 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,047 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,047 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,048 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,048 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,048 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,048 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,048 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,049 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,049 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,049 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,2,0,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,050 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,050 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,050 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,051 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,051 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,051 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,052 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,052 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,055 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,055 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,057 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,058 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,059 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,059 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,059 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,059 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,060 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,060 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,061 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,061 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:37,063 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,063 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:37,066 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,066 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:37,068 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,068 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:37,070 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,070 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:56:37,072 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,072 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,073 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,073 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:56:37,073 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,073 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,073 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,074 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,076 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,077 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,078 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,078 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,078 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,079 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,079 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,079 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,079 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,080 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,080 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,080 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,080 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,080 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,081 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,4,1,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,081 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,081 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,081 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,082 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,082 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,083 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,083 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,083 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,085 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,085 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,087 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,088 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,088 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,088 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,088 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,089 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,089 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,089 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,089 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,089 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,090 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,090 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,090 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,090 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,090 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,090 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,090 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:37,093 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,093 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:37,096 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,096 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:37,098 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,098 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:37,099 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,100 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:56:37,101 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,101 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,103 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,103 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,103 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,104 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,105 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,106 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,107 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,108 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,108 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,108 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,108 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,109 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,109 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,109 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,109 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,109 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,110 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,110 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,6,2,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,111 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,111 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,111 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,111 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,112 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,112 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,112 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,112 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,114 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,114 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,116 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,117 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,117 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,117 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,117 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,118 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,119 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,119 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,119 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,119 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,119 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,119 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:37,121 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,121 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:37,129 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,129 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:37,131 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,131 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:37,133 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,134 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:56:37,135 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,135 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,137 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,137 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,137 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,138 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,139 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,140 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,141 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,142 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,142 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,142 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,142 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,143 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,144 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,8,3,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,144 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,144 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,144 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,145 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,145 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,145 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,145 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,145 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,146 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,146 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,146 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,146 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,146 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,148 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,148 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,150 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,151 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,151 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,151 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,152 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,152 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,152 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,152 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,152 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,153 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,153 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,153 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:37,158 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,158 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:37,160 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,160 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:37,162 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,162 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:37,164 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,164 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:56:37,166 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,166 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,167 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,168 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,169 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:56:37,170 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,171 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,172 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,173 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,173 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,173 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,174 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,175 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,10,4,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,175 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,175 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,175 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,176 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,177 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,177 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,177 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,177 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,179 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,179 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,181 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,182 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,182 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,182 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,182 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,183 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,183 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,183 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,183 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,183 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,184 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,184 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,184 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,184 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,184 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,184 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,184 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:37,187 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,187 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:37,190 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,190 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:37,192 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,192 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:37,194 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,194 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:56:37,196 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,196 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,197 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,197 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:56:37,197 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,198 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,199 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,200 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,201 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,202 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,203 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,203 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,203 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,204 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,205 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,12,5,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,205 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,205 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,205 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,206 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,206 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,206 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,206 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,206 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,207 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,207 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,207 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,207 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,207 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,209 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,209 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,212 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,212 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,212 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,212 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,213 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,213 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,213 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,213 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,214 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,214 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,214 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:37,218 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,218 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:37,221 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,221 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:37,223 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,223 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:37,227 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,227 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:56:37,229 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,229 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,230 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,230 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,231 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,232 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,233 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,234 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,235 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,236 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,236 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,236 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,236 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,237 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,238 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,14,6,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,238 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,238 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,238 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,239 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,239 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,239 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,239 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,239 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,240 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,240 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,240 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,240 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,240 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,242 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,242 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,244 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,245 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,245 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,245 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,245 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,246 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,246 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,246 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,246 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,246 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,247 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,247 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,247 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,247 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,247 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,247 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,247 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:37,249 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,249 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:37,253 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,253 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:37,255 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,255 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:37,256 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,256 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:56:37,260 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,260 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,261 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,261 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,264 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,265 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,266 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,266 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,266 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,266 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,266 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,267 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,267 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,267 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,268 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,269 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,16,7,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,269 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,269 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,269 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,270 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,270 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,270 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,271 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,273 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,273 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,275 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,276 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,276 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,276 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,276 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,277 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,277 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,277 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,277 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,277 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,278 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,278 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,278 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,278 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,278 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,278 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,278 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:37,280 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,281 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:37,284 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,284 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:37,286 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,286 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:37,288 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,288 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:56:37,290 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,290 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,292 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,292 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,292 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,293 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:56:37,294 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,295 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,296 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,297 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,297 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,297 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,298 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,299 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,18,8,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,299 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,299 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,299 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,300 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,300 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,300 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,301 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,301 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,303 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,303 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,305 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,306 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,306 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,306 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,306 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,307 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,307 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,307 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,307 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,307 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,308 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,308 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,308 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,308 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,308 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,308 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,308 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:37,310 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,310 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:37,313 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,313 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:37,315 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,315 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:37,317 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,317 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:56:37,318 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,318 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,320 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,320 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:56:37,320 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,321 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,322 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,323 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,324 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,325 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,325 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,325 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,325 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,326 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,327 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +138,5,OSSEZ,,,,,San Mateo,138 +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,20,9,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,327 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,327 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,327 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,328 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:56:37,329 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:56:37,329 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,329 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,329 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,331 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,331 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:56:37,333 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,334 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,accountname,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,334 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,334 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,334 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,335 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,335 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,335 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,335 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,335 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,336 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,336 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,336 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,336 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,336 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,336 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,336 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:37,339 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,339 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:37,342 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,343 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:37,345 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,345 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:37,347 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,347 [1520] DEBUG account_list - Prepared sql query parameters : [138] +01/30/13 11:56:37,349 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,349 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,350 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,350 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ,1) method ... +01/30/13 11:56:37,350 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,350 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,350 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,351 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,352 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,353 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,354 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,355 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,355 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,bill_city,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,355 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,355 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,355 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,356 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,356 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,356 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,356 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,357 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,357 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,357 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +139,5,OSSEZ 1,,,,,San Mateo,139 +,assigned_user_id,Accounts,Accounts,138,10,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,357 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,357 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,358 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,358 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,358 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,358 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,358 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,359 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,359 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:37,359 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:37,359 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,359 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,359 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,362 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,362 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:37,366 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,366 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,367 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,367 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,367 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,367 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:56:37,368 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,368 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,369 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:56:37,369 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:56:37,369 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:37,371 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:56:37,371 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:37,374 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:56:37,374 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:37,376 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:56:37,376 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:37,378 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:56:37,378 [1520] DEBUG account_list - Prepared sql query parameters : [139] +01/30/13 11:56:37,381 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,381 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,382 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:56:37,382 [1520] DEBUG account_list - Entering popup_from_html(OSSEZ 1,1) method ... +01/30/13 11:56:37,382 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,382 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,382 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:56:37,383 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,384 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,385 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:56:37,386 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,387 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,387 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,387 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,387 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,388 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,389 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,139,11,search,specific_contact_account_address,TasksEditView,) method ... +01/30/13 11:56:37,389 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,389 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,389 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:56:37,390 [1520] DEBUG account_list - Entering getOwnerName(5) method ... +01/30/13 11:56:37,390 [1520] INFO account_list - in getOwnerName 5 +01/30/13 11:56:37,391 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:56:37,391 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:56:37,391 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:56:37,393 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:56:37,393 [1520] DEBUG account_list - Prepared sql query parameters : [5] +01/30/13 11:56:37,395 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:56:37,395 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:56:37,395 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:56:37,395 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:56:37,395 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:56:37,396 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:57:09,509 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:09,636 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:09,636 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:09,637 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:09,637 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:09,637 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:57:09,637 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:57:09,637 [1520] DEBUG index - in CalendarAjax +01/30/13 11:57:09,638 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:57:09,638 [1520] INFO index - current module is Calendar +01/30/13 11:57:09,672 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:09,672 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:09,672 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:09,672 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:09,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:09,673 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:09,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:09,673 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:09,673 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:09,682 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:09,682 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:09,682 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:09,682 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:09,683 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:09,683 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:09,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,684 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:09,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,684 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:09,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,685 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:09,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,685 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:09,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,686 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:09,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,686 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:09,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,687 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:09,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,687 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:09,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,688 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:09,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,688 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:09,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,689 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:09,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,689 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:09,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,690 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:09,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,690 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:09,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,691 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:09,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,691 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:09,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,692 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:09,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,692 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:09,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,693 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:09,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,693 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:09,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,694 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:09,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,694 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,695 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:09,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,696 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:09,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,696 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:09,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,697 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:09,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,697 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:09,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,698 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:09,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,698 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:09,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,699 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:09,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,699 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:09,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,700 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:09,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,700 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:09,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,701 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:09,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,701 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:09,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,702 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:09,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,702 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:09,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,703 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:09,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,703 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:09,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,703 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:09,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,704 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:09,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,704 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:09,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,705 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:09,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,705 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:09,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:09,706 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:09,706 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:09,706 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:09,706 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:09,706 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:09,708 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:09,708 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:09,710 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:09,710 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:09,712 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:09,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:09,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:09,713 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:09,713 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:09,713 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:09,713 [1520] DEBUG index - skipping headers +01/30/13 11:57:09,714 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:57:09,714 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:09,719 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:09,719 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:57:09,719 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:57:09,720 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:57:09,724 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:58')) +01/30/13 11:57:09,727 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:57:17,026 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:17,149 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:17,149 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:17,150 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:17,150 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:17,150 [1520] DEBUG index - array ( + 'activity_mode' => '', + 'opportunity_id' => '', + 'contact_role' => '', + 'case_id' => '', + 'MAX_FILE_SIZE' => '800000', + 'campaignid' => '', + 'pagenumber' => '', + 'module' => 'Contacts', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => '', + 'return_id' => '', + 'return_action' => 'DetailView', + 'return_viewname' => '', + 'createmode' => '', + 'salutationtype' => 'Ms.', + 'firstname' => '', + 'contact_no' => '自动生成编号', + 'lastname' => 'OSSEZ A', + 'phone' => '', + 'account_name' => 'OSSEZ', + 'account_id' => '138', + 'mobile' => '', + 'leadsource' => '--None--', + 'homephone' => '', + 'title' => '', + 'otherphone' => '', + 'department' => '', + 'fax' => '', + 'email' => '', + 'birthday' => '', + 'assistant' => '', + 'contact_name' => '', + 'contact_id' => '', + 'assistantphone' => '', + 'secondaryemail' => '', + 'assigntype' => 'U', + 'assigned_user_id' => '1', + 'assigned_group_id' => '3', + 'existing_portal' => '', + 'support_start_date' => '2013-01-30', + 'support_end_date' => '2014-01-30', + 'cpy' => 'on', + 'mailingstreet' => '123 Anywhere Street D', + 'otherstreet' => '123 Anywhere Street D', + 'mailingpobox' => '', + 'otherpobox' => '', + 'mailingcity' => 'San Mateo', + 'othercity' => 'San Mateo', + 'mailingstate' => 'CA', + 'otherstate' => 'CA', + 'mailingzip' => '82589', + 'otherzip' => '82589', + 'mailingcountry' => 'USA', + 'othercountry' => 'USA', + 'description' => 'UI', + 'imagename_hidden' => '', + 'id' => '', + 'button' => ' 保存 ', + 'search_url' => '', +) +01/30/13 11:57:17,150 [1520] INFO index - About to take action Save +01/30/13 11:57:17,151 [1520] DEBUG index - in Save +01/30/13 11:57:17,151 [1520] INFO index - current page is modules/Contacts/Save.php +01/30/13 11:57:17,151 [1520] INFO index - current module is Contacts +01/30/13 11:57:17,184 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:17,185 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:17,185 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:17,185 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,185 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,185 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:17,186 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:17,197 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,198 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,198 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:17,198 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:17,199 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:17,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,199 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:17,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,200 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:17,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,200 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:17,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,201 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:17,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,201 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:17,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,202 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:17,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,202 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:17,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,203 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:17,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,203 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:17,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,204 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:17,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,204 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:17,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,205 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:17,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,205 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:17,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,206 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:17,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,206 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:17,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,207 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:17,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,207 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:17,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,208 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:17,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,208 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:17,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,208 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:17,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,209 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:17,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,209 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:17,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,210 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:17,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,210 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:17,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,211 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:17,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,211 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:17,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,212 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:17,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,212 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:17,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,212 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:17,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,213 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:17,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,213 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:17,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,214 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:17,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,214 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:17,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,215 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:17,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,215 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:17,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,216 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:17,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,216 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:17,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,217 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:17,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,217 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:17,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,218 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:17,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,218 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:17,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,219 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:17,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,219 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:17,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,220 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:17,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,220 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:17,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,220 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:17,221 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,221 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:17,226 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:17,226 [1520] DEBUG index - Prepared sql query parameters : [433,1,Contacts,Save,,2013-01-30 11:57:17] +01/30/13 11:57:17,237 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:17,237 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:17,237 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:17,237 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:17,239 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:17,239 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:17,241 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:17,241 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:17,242 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:17,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:17,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,243 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:17,243 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:17,243 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:17,244 [1520] DEBUG index - skipping headers +01/30/13 11:57:17,244 [1520] DEBUG index - Entering isPermitted(Contacts,Save,) method ... +01/30/13 11:57:17,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:17,256 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:17,256 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:17,256 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,256 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,256 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:17,256 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:17,268 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,268 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,269 [1520] DEBUG index - Entering setObjectValuesFromRequest(Contacts) method ... +01/30/13 11:57:17,269 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:57:17,269 [1520] DEBUG index - module name is Contacts +01/30/13 11:57:17,269 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:57:17,281 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:57:17,281 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,286 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Contacts +01/30/13 11:57:17,286 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:57:17,286 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:57:17,286 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,292 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:57:17,292 [1520] DEBUG index - Prepared sql query parameters : [142,1,1,Contacts,UI,1,2013-01-30 11:57:17,2013-01-30 11:57:17] +01/30/13 11:57:17,297 [1520] INFO index - function insertIntoEntityTable Contacts vtiger_table name vtiger_contactdetails +01/30/13 11:57:17,297 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,298 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:57:17,298 [1520] DEBUG index - Prepared sql query parameters : [4,vtiger_contactdetails] +01/30/13 11:57:17,303 [1520] DEBUG index - Entering function get_column_value (firstname, , firstname, 55, V='') +01/30/13 11:57:17,303 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,303 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:57:17,303 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,307 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:57:17,307 [1520] DEBUG index - Prepared sql query parameters : [14,13,Contacts] +01/30/13 11:57:17,312 [1520] DEBUG index - Entering function get_column_value (phone, , phone, 11, V='') +01/30/13 11:57:17,312 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,312 [1520] DEBUG index - Entering function get_column_value (mobile, , mobile, 11, V='') +01/30/13 11:57:17,313 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,313 [1520] DEBUG index - Entering function get_column_value (title, , title, 1, V='') +01/30/13 11:57:17,313 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,313 [1520] DEBUG index - Entering function get_column_value (fax, , fax, 11, V='') +01/30/13 11:57:17,314 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,314 [1520] DEBUG index - Entering function get_column_value (department, , department, 1, V='') +01/30/13 11:57:17,314 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,314 [1520] DEBUG index - Entering function get_column_value (email, , email, 13, E='') +01/30/13 11:57:17,314 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,315 [1520] DEBUG index - Entering function get_column_value (reportsto, , contact_id, 57, V='') +01/30/13 11:57:17,315 [1520] DEBUG index - Entering function get_column_value (secondaryemail, , secondaryemail, 13, E='') +01/30/13 11:57:17,315 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,316 [1520] DEBUG index - Entering function get_column_value (imagename, , imagename, 69, V='') +01/30/13 11:57:17,316 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,316 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_contactdetails(contactid,salutation,firstname,contact_no,phone,lastname,mobile,accountid,title,fax,department,email,reportsto,secondaryemail,donotcall,emailoptout,reference,notify_owner,imagename) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:57:17,316 [1520] DEBUG index - Prepared sql query parameters : [142,Ms.,,CON13,,OSSEZ A,,138,,,,,0,,0,0,0,0,] +01/30/13 11:57:17,336 [1520] INFO index - function insertIntoEntityTable Contacts vtiger_table name vtiger_contactaddress +01/30/13 11:57:17,336 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,336 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,336 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:57:17,337 [1520] DEBUG index - Prepared sql query parameters : [4,vtiger_contactaddress] +01/30/13 11:57:17,343 [1520] DEBUG index - Entering function get_column_value (mailingpobox, , mailingpobox, 1, V='') +01/30/13 11:57:17,344 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,344 [1520] DEBUG index - Entering function get_column_value (otherpobox, , otherpobox, 1, V='') +01/30/13 11:57:17,344 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,344 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_contactaddress(contactaddressid,mailingstreet,otherstreet,mailingcity,othercity,mailingstate,otherstate,mailingzip,otherzip,mailingcountry,othercountry,mailingpobox,otherpobox) values(?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:57:17,344 [1520] DEBUG index - Prepared sql query parameters : [142,123 Anywhere Street D,123 Anywhere Street D,San Mateo,San Mateo,CA,CA,82589,82589,USA,USA,,] +01/30/13 11:57:17,348 [1520] INFO index - function insertIntoEntityTable Contacts vtiger_table name vtiger_contactsubdetails +01/30/13 11:57:17,348 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,348 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:57:17,348 [1520] DEBUG index - Prepared sql query parameters : [4,vtiger_contactsubdetails] +01/30/13 11:57:17,353 [1520] DEBUG index - Entering function get_column_value (homephone, , homephone, 11, V='') +01/30/13 11:57:17,353 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,353 [1520] DEBUG index - Entering function get_column_value (otherphone, , otherphone, 11, V='') +01/30/13 11:57:17,353 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,354 [1520] DEBUG index - Entering getValidDBInsertDateValue() method ... +01/30/13 11:57:17,354 [1520] DEBUG index - Entering function get_column_value (birthday, , birthday, 5, D='') +01/30/13 11:57:17,354 [1520] DEBUG index - Entering function get_column_value (assistant, , assistant, 1, V='') +01/30/13 11:57:17,354 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,354 [1520] DEBUG index - Entering function get_column_value (assistantphone, , assistantphone, 11, V='') +01/30/13 11:57:17,355 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:57:17,355 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_contactsubdetails(contactsubscriptionid,homephone,leadsource,otherphone,birthday,assistant,assistantphone) values(?,?,?,?,?,?,?) +01/30/13 11:57:17,355 [1520] DEBUG index - Prepared sql query parameters : [142,,--None--,,,,] +01/30/13 11:57:17,358 [1520] INFO index - function insertIntoEntityTable Contacts vtiger_table name vtiger_contactscf +01/30/13 11:57:17,358 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,358 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:57:17,358 [1520] DEBUG index - Prepared sql query parameters : [4,vtiger_contactscf] +01/30/13 11:57:17,362 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_contactscf(contactid) values(?) +01/30/13 11:57:17,362 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,366 [1520] INFO index - function insertIntoEntityTable Contacts vtiger_table name vtiger_customerdetails +01/30/13 11:57:17,366 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,366 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,366 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:57:17,366 [1520] DEBUG index - Prepared sql query parameters : [4,vtiger_customerdetails] +01/30/13 11:57:17,370 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:57:17,370 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:57:17,370 [1520] DEBUG index - Entering getValidDBInsertDateValue(2014-01-30) method ... +01/30/13 11:57:17,370 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:57:17,370 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_customerdetails(customerid,portal,support_start_date,support_end_date) values(?,?,?,?) +01/30/13 11:57:17,370 [1520] DEBUG index - Prepared sql query parameters : [142,0,2013-01-30,2014-01-30] +01/30/13 11:57:17,375 [1520] DEBUG index - Entering into insertIntoAttachment(142,Contacts) method. +01/30/13 11:57:17,375 [1520] DEBUG index - Prepared sql query being executed : select vtiger_crmentity.crmid from vtiger_seattachmentsrel inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_seattachmentsrel.attachmentsid where vtiger_seattachmentsrel.crmid=? +01/30/13 11:57:17,375 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,377 [1520] DEBUG index - Exiting from insertIntoAttachment(142,Contacts) method. +01/30/13 11:57:17,377 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:57:17,377 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:57:17,378 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:57:17,379 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:57:17,379 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,381 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:17,381 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:17,381 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,381 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:17,381 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:57:17,384 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:57:17,386 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,389 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:57:17,389 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,390 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:57:17,390 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,392 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:57:17,392 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,393 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,395 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:57:17,401 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:57:17,402 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:17,402 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:17,402 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:17,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,403 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,403 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:17,403 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,403 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,405 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:57:17,406 [1520] DEBUG index - Prepared sql query parameters : [12x142] +01/30/13 11:57:17,408 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:17,408 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:17,408 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,408 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,409 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,409 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,409 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:57:17,409 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,411 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:17,411 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:17,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:17,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:17,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:17,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,416 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,417 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,418 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:17,419 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:57:17,422 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:17,423 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,423 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:57:17,426 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:57:17,426 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:57:17,467 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,467 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:57:17,470 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,470 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:57:17,472 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,472 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:57:17,474 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,474 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:57:17,479 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:57:17,479 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:57:17,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,526 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:57:17,529 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,529 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:57:17,534 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,534 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:57:17,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,537 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:57:17,539 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,539 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:57:17,541 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,541 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:57:17,543 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,544 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:57:17,548 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,548 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:57:17,550 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,550 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:57:17,553 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:57:17,553 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:57:17,584 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,585 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:57:17,587 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,587 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:57:17,589 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,589 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:57:17,592 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,592 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:57:17,595 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:57:17,595 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:17,597 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,597 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:57:17,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,599 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:57:17,602 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:57:17,603 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:57:17,635 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,636 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:57:17,638 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,638 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:57:17,641 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,641 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:57:17,643 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,643 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:57:17,645 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,645 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:57:17,647 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,647 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:57:17,649 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,650 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:57:17,651 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,651 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:57:17,653 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,653 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:57:17,656 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,656 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:57:17,658 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,658 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:57:17,660 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:57:17,661 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:57:17,662 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:17,667 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:17,667 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:17,670 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:17,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:17,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,673 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:17,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:17,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,673 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:57:17,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:17,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,674 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:57:17,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:17,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,674 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:57:17,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:17,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,675 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:57:17,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:17,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,675 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:57:17,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:17,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,676 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:17,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:17,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,676 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:57:17,677 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:17,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,677 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:17,677 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:17,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,678 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:17,678 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:17,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,678 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:57:17,678 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:17,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,679 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:57:17,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:17,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,679 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:17,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:17,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,680 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:57:17,680 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:17,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,680 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:57:17,680 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:17,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,681 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:57:17,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:17,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,682 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:57:17,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:17,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,682 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:57:17,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:17,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,683 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:57:17,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:17,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:57:17,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:17,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,684 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:17,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:17,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,684 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:57:17,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:17,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,684 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:17,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:17,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,685 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:57:17,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:17,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,685 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:17,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:17,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,686 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:57:17,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:17,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,687 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:17,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:17,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,687 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:57:17,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:17,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,688 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:17,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:17,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,688 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:57:17,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:17,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,689 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:17,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:17,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,689 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:57:17,689 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:17,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,690 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:17,690 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:17,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,690 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:57:17,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:17,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,690 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:57:17,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:17,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,691 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:57:17,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:57:17,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,692 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:57:17,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:57:17,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,692 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:57:17,693 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:17,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,693 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:57:17,693 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:17,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,693 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:57:17,694 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:17,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,695 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:57:17,695 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:17,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,695 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:57:17,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:17,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,696 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:17,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:17,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:57:17,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:17,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,697 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:17,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:17,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:57:17,697 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:17,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,697 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:57:17,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:17,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,698 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:57:17,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:17,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,698 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:57:17,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:17,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,699 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:57:17,699 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:17,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,699 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:57:17,699 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:17,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,700 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:57:17,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:17,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,700 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:57:17,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:17,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,701 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:57:17,701 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:17,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,701 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:57:17,701 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:17,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,702 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:57:17,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:17,703 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,703 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,703 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:17,703 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,704 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:17,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,705 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:57:17,705 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,713 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:57:17,713 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:57:17,733 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:17,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:17,734 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Contacts' +01/30/13 11:57:17,734 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,737 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:17,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:17,737 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:17,737 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:17,737 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,738 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,738 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:57:17,738 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:17,738 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,740 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:57:17,740 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,743 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:57:17,743 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,746 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:57:17,746 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,748 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:57:17,748 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,750 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:57:17,750 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:17,751 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:17,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,753 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:57:17,753 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:57:17,753 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:57:17,753 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:57:17,872 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:57:17,872 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:57:17,874 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:17,874 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:17,874 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:57:17,875 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:57:17,879 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:17,879 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:17,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:57:17,880 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:57:17,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:17,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:17,882 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,883 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:57:17,885 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:17,885 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:17,886 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:17,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,886 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:17,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,886 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:17,887 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:17,901 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:17,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,901 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,901 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:17,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,902 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:57:17,902 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:17,904 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:17,905 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:17,907 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:17,908 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:17,908 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:17,908 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,909 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:17,909 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:17,909 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:17,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:17,910 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? and deleted=0 and status='Active' +01/30/13 11:57:17,910 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:17,915 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:57:17,915 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:17,917 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:57:17,917 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:17,921 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:57:17,921 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:57:17,923 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:57:17,970 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:57:17,970 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:17,974 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflow_activatedonce + WHERE entity_id=? and workflow_id=? +01/30/13 11:57:17,974 [1520] DEBUG index - Prepared sql query parameters : [142,3] +01/30/13 11:57:17,977 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflowtasks + INNER JOIN com_vtiger_workflowtask_queue + ON com_vtiger_workflowtasks.task_id= com_vtiger_workflowtask_queue.task_id + WHERE workflow_id=? AND entity_id=? +01/30/13 11:57:17,977 [1520] DEBUG index - Prepared sql query parameters : [3,142] +01/30/13 11:57:17,982 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflow_activatedonce + WHERE entity_id=? and workflow_id=? +01/30/13 11:57:17,982 [1520] DEBUG index - Prepared sql query parameters : [142,4] +01/30/13 11:57:17,984 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflowtasks + INNER JOIN com_vtiger_workflowtask_queue + ON com_vtiger_workflowtasks.task_id= com_vtiger_workflowtask_queue.task_id + WHERE workflow_id=? AND entity_id=? +01/30/13 11:57:17,984 [1520] DEBUG index - Prepared sql query parameters : [4,142] +01/30/13 11:57:17,990 [1520] DEBUG index - Prepared sql query being executed : select task from com_vtiger_workflowtasks + where workflow_id=? +01/30/13 11:57:17,990 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:18,024 [1520] DEBUG index - Prepared sql query being executed : select function_path, function_name from com_vtiger_workflowtasks_entitymethod where module_name=? and method_name=? +01/30/13 11:57:18,024 [1520] DEBUG index - Prepared sql query parameters : [Contacts,SendPortalLoginDetails] +01/30/13 11:57:18,066 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_portalinfo SET user_name=?,isactive=0 WHERE id=? +01/30/13 11:57:18,066 [1520] DEBUG index - Prepared sql query parameters : [,142] +01/30/13 11:57:18,129 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,129 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:57:18,129 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:18,133 [1520] DEBUG index - Saved record with id of 142 +01/30/13 11:57:18,133 [1520] INFO index - This Page is redirected to : Contacts / DetailView& return id =142 +01/30/13 11:57:18,134 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:18,134 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:18,137 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:57:18,138 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:18,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,224 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:18,353 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:18,353 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:18,354 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:18,354 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:18,354 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Contacts', + 'parenttab' => 'Marketing', + 'record' => '142', + 'activity_mode' => '', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:57:18,354 [1520] INFO index - About to take action DetailView +01/30/13 11:57:18,354 [1520] DEBUG index - in DetailView +01/30/13 11:57:18,355 [1520] INFO index - current page is modules/Contacts/DetailView.php +01/30/13 11:57:18,355 [1520] INFO index - current module is Contacts +01/30/13 11:57:18,389 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:18,389 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:18,389 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:18,389 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:18,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,390 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:18,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,390 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:18,390 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:18,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:18,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,402 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,402 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:18,402 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:18,403 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:18,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,404 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:18,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,404 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:18,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,405 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:18,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,405 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:18,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,405 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:18,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,406 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:18,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,406 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:18,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,407 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:18,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,407 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:18,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,408 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:18,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,408 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:18,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,409 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:18,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,409 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:18,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,410 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:18,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,410 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:18,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,411 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:18,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,411 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:18,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,412 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:18,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,412 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:18,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,413 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:18,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,413 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:18,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,413 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:18,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,414 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:18,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,414 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:18,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,415 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:18,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,415 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:18,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,416 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:18,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,416 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:18,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,417 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:18,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,417 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:18,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,418 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:18,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,418 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:18,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,419 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:18,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,419 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:18,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,419 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:18,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,420 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:18,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,420 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:18,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,421 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:18,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,421 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:18,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,422 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:18,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,422 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:18,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,423 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:18,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,423 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:18,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,424 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:18,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,424 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:18,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,425 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:18,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,425 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:18,429 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:18,430 [1520] DEBUG index - Prepared sql query parameters : [434,1,Contacts,DetailView,142,2013-01-30 11:57:18] +01/30/13 11:57:18,433 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:18,433 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:18,433 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:18,433 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:18,435 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:18,435 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:18,437 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:18,437 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:18,439 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:18,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:18,440 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:18,440 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,440 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:18,440 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:18,452 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,452 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,452 [1520] DEBUG contact - About to call vtiger_tracker (user_id, module_name, item_id)(1, Contacts, ) +01/30/13 11:57:18,452 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:57:18,452 [1520] DEBUG index - Prepared sql query parameters : [1,142] +01/30/13 11:57:18,454 [1520] INFO index - in track view method Contacts +01/30/13 11:57:18,454 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,454 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:18,457 [1520] DEBUG index - Prepared sql query being executed : select concat(firstname,' ',lastname) as entityname from vtiger_contactdetails where contactid = ? +01/30/13 11:57:18,457 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,459 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:18,459 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:18,459 [1520] DEBUG index - Prepared sql query parameters : [1,Contacts,142, OSSEZ A] +01/30/13 11:57:18,461 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:18,462 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:18,463 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:57:18,464 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:57:18,464 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:57:18,465 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:57:18,465 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:57:18,465 [1520] DEBUG index - Prepared sql query parameters : [103] +01/30/13 11:57:18,469 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:18,469 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:18,469 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:18,469 [1520] DEBUG index - including headers +01/30/13 11:57:18,469 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:57:18,470 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:18,473 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,473 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,475 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:57:18,475 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:57:18,475 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,477 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:57:18,477 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:57:18,478 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:57:18,479 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,479 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:57:18,479 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,479 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:57:18,479 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,480 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:57:18,480 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,480 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:57:18,480 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,480 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:57:18,481 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,481 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:57:18,481 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,481 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:57:18,482 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:18,482 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:57:18,482 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:57:18,482 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:57:18,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:18,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,491 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:57:18,491 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:18,492 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:18,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,492 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:57:18,492 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:57:18,493 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:18,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,494 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:57:18,494 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:57:18,494 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:18,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,496 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:57:18,496 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:57:18,496 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,496 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:18,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,497 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:57:18,497 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:57:18,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,498 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:57:18,498 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:18,498 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:18,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,499 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:57:18,499 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:18,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:57:18,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,500 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:57:18,500 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:57:18,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,501 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:18,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,502 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:57:18,502 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:18,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:18,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,503 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:57:18,503 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:18,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:18,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,504 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:57:18,504 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:18,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,505 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:18,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,505 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:57:18,506 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:57:18,506 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:18,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:57:18,507 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:18,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:18,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,508 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:57:18,508 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:57:18,509 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,509 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:18,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,509 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:57:18,509 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:57:18,510 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,510 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:18,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,511 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:57:18,511 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:57:18,511 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,511 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:18,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,512 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:57:18,512 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:57:18,513 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:18,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,514 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:57:18,514 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:57:18,514 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:18,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,515 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:57:18,515 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:57:18,515 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:18) method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:18) method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:18,516 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:18,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:18,518 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:57:18,518 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:57:18,518 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:57:18,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,531 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:57:18,535 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:18,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,536 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:18,536 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,538 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,538 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,538 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,539 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:18,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,540 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:18,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,540 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:18,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,541 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:18,541 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,541 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:18,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:18,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,543 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:57:18,543 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,543 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:18,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,543 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:18,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,544 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:57:18,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,544 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,545 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:18,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,546 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:57:18,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,546 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:57:18,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,547 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:57:18,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,547 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,548 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:57:18,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,549 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:18,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,549 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:57:18,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,550 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:18,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,550 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:57:18,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,551 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:18,551 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:18,551 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,555 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:18,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,556 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:57:18,556 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,556 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:57:18,557 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,557 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:57:18,558 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,558 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:18,558 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,559 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:18,559 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:57:18,562 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:57:18,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,562 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:57:18,562 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:57:18,565 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:57:18,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,572 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:18,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,573 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:57:18,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:18,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,573 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:57:18,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:18,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,573 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:18,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,574 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:18,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,574 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:18,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:18,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,574 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:18,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:18,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,575 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:18,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:18,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,575 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:18,575 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:18,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,576 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:18,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:57:18,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,576 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:57:18,579 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:18,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,579 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:57:18,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:57:18,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,580 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:57:18,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:57:18,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,580 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:57:18,581 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:57:18,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,581 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:57:18,581 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:18,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,582 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:57:18,582 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:18,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,582 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:57:18,582 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:57:18,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,583 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:57:18,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:57:18,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,583 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:57:18,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:57:18,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,584 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:57:18,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:18,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,585 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:18,585 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:18,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,585 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:18,585 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:18,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,585 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:57:18,585 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:18,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,585 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:57:18,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:18,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,586 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:57:18,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:18,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,586 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:57:18,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:18,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,587 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:18,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:18,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,587 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:18,587 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:18,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,588 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:18,588 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:18,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,588 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:57:18,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:18,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,588 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:57:18,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:18,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,589 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:18,589 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:18,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,590 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:57:18,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:18,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,591 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:18,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,591 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:57:18,591 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:18,592 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,595 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:18,595 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:18,595 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,596 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,596 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:18,596 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,600 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/30/13 11:57:18,600 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,606 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/30/13 11:57:18,606 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,608 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/30/13 11:57:18,608 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,610 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/30/13 11:57:18,610 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,612 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/30/13 11:57:18,612 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,614 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,616 [1520] INFO VT - PearDatabase ->There is no entry for this entity 142 (Contacts) in the table vtiger_campaignrelstatus +01/30/13 11:57:18,616 [1520] INFO index - Entity info successfully retrieved for Contact DetailView. +01/30/13 11:57:18,616 [1520] INFO index - Contact detail view +01/30/13 11:57:18,616 [1520] DEBUG index - Entering updateInfo(142) method ... +01/30/13 11:57:18,616 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:57:18,617 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,618 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:18,618 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:18,619 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:18,619 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,619 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,621 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:18,621 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,623 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:18,623 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:18,624 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:57:18,624 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:57:18,624 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,625 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:57:18,625 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,626 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:18,626 [1520] INFO index - Detail Block Informations successfully retrieved. +01/30/13 11:57:18,626 [1520] DEBUG index - Entering getBlocks(Contacts,detail_view,,Array,) method ... +01/30/13 11:57:18,626 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,626 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:57:18,626 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:18,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,629 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:18,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,630 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:57:18,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,630 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:18,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,631 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:18,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,631 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:18,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,631 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:18,632 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:57:18,632 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:57:18,643 [1520] DEBUG index - Entering getDetailBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1,,0 +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0,,0 +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1,,0 +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1,,0 +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1,,0 +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1,,0 +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1,,0 +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1,,0 +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1,,0 +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1,,0 +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1,,0 +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1,,0 +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1,,0 +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1,,0 +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1,,0 +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0,,0 +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1,,0 +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1,,0 +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1,,0 +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1,,0 +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1,,0 +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1,,0 +4,90,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,25,4,2,DT~O,3,,BAS,0,,0 +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1,,0 +4,91,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,27,4,2,DT~O,3,,BAS,0,,0 +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0,,0 +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1,,0 +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1,,0 +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1,,0 +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1,,0 +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1,,0 +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1,,0 +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1,,0 +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1,,0 +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1,,0 +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1,,0 +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1,,0 +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1,,0 +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1,,0 +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1,,0 +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1,,0 +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0,,0 +,Array,4,Array) method ... +01/30/13 11:57:18,644 [1520] DEBUG index - Entering getDetailViewOutputHtml(55,firstname,First Name,Array,1,4) method ... +01/30/13 11:57:18,644 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:57:18,644 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,646 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:57:18,647 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:18,647 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:57:18,647 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:57:18,647 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:57:18,649 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:57:18,649 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:57:18,649 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:57:18,651 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:18,651 [1520] DEBUG index - Prepared sql query being executed : select salutationtype from vtiger_salutationtype order by salutationtype +01/30/13 11:57:18,654 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:57:18,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,654 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,654 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,contact_no,Contact Id,Array,1,4) method ... +01/30/13 11:57:18,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,655 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:57:18,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,655 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,656 [1520] DEBUG index - Entering getDetailViewOutputHtml(255,lastname,Last Name,Array,1,4) method ... +01/30/13 11:57:18,657 [1520] DEBUG index - Prepared sql query being executed : select vtiger_contactdetails.imagename from vtiger_contactdetails where contactid=? +01/30/13 11:57:18,657 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,659 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:57:18,659 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:57:18,659 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,659 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:18,660 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,660 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,660 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,660 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Office Phone,Array,1,4) method ... +01/30/13 11:57:18,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,661 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:57:18,661 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,661 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,661 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,662 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Account Name,Array,1,4) method ... +01/30/13 11:57:18,662 [1520] DEBUG index - Entering getAccountName(138) method ... +01/30/13 11:57:18,662 [1520] INFO index - in getAccountName 138 +01/30/13 11:57:18,662 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:57:18,662 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:18,664 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:57:18,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,665 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:18,665 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,665 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,665 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,665 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,mobile,Mobile,Array,1,4) method ... +01/30/13 11:57:18,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,666 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:57:18,666 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,666 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,666 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,667 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,4) method ... +01/30/13 11:57:18,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,668 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:57:18,668 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:57:18,668 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:18,668 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:18,668 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:57:18,668 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:18,668 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:57:18,672 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 434 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:57:18,673 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,673 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,675 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:18,675 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:57:18,675 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:18,675 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:57:18,679 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:18,679 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:57:18,679 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:18,679 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:57:18,683 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:18,683 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:57:18,683 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:57:18,683 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:57:18,685 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:57:18,685 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:57:18,702 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:57:18,703 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:57:18,703 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:57:18,703 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:57:18,703 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:57:18,703 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,703 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,703 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,704 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,homephone,Home Phone,Array,1,4) method ... +01/30/13 11:57:18,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,704 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:57:18,704 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,705 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,705 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,705 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,title,Title,Array,1,4) method ... +01/30/13 11:57:18,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,706 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:57:18,706 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,706 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,706 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,707 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,4) method ... +01/30/13 11:57:18,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,707 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:57:18,707 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,708 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,708 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,708 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,department,Department,Array,1,4) method ... +01/30/13 11:57:18,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,709 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:57:18,709 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,709 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,709 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,710 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,4) method ... +01/30/13 11:57:18,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,710 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:18,710 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,711 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,711 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,711 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email,Email,Array,1,4) method ... +01/30/13 11:57:18,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,712 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:57:18,712 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,712 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,712 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,713 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,birthday,Birthdate,Array,1,4) method ... +01/30/13 11:57:18,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,713 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:57:18,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,714 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,714 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,714 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,assistant,Assistant,Array,1,4) method ... +01/30/13 11:57:18,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,715 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:57:18,715 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,715 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,715 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,716 [1520] DEBUG index - Entering getDetailViewOutputHtml(57,contact_id,Reports To,Array,1,4) method ... +01/30/13 11:57:18,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,716 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:57:18,716 [1520] DEBUG index - Entering getEntityName(Contacts) method ... +01/30/13 11:57:18,717 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,717 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:18,718 [1520] DEBUG index - Prepared sql query being executed : SELECT firstname,lastname,contactid FROM vtiger_contactdetails WHERE contactid IN (?) +01/30/13 11:57:18,718 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:57:18,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,720 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,720 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,assistantphone,Assistant Phone,Array,1,4) method ... +01/30/13 11:57:18,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,721 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:57:18,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,721 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,722 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,secondaryemail,Secondary Email,Array,1,4) method ... +01/30/13 11:57:18,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,723 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:57:18,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,723 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,723 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,4) method ... +01/30/13 11:57:18,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,724 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:57:18,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,724 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,725 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,donotcall,Do Not Call,Array,1,4) method ... +01/30/13 11:57:18,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,726 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:57:18,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,726 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,726 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,reference,Reference,Array,1,4) method ... +01/30/13 11:57:18,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,727 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:57:18,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,727 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,728 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,4) method ... +01/30/13 11:57:18,728 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:57:18,728 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,731 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:18,731 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:18,731 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:18,731 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,731 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,734 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:18,734 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,736 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:18,736 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,736 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,736 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:57:18,736 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:57:18,738 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:57:18,738 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:18,739 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:18,739 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:57:18,739 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:57:18,741 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,741 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,743 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:18,743 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:18,745 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:18,745 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:18,745 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:57:18,746 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:18,746 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:57:18,746 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:18,746 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:18,746 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:18,746 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:57:18,748 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:18,748 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:18,748 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,749 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,750 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,4) method ... +01/30/13 11:57:18,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,750 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:57:18,750 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:17) method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,751 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,752 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,4) method ... +01/30/13 11:57:18,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,753 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:18,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,753 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,753 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,4) method ... +01/30/13 11:57:18,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,754 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:57:18,754 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:17) method ... +01/30/13 11:57:18,754 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:18,754 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:17) method ... +01/30/13 11:57:18,755 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:18,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,755 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,756 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,portal,Portal User,Array,1,4) method ... +01/30/13 11:57:18,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,756 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:57:18,756 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,756 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,756 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,757 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_start_date,Support Start Date,Array,1,4) method ... +01/30/13 11:57:18,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,758 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:57:18,758 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,758 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,758 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,758 [1520] DEBUG index - Entering getDetailViewOutputHtml(5,support_end_date,Support End Date,Array,1,4) method ... +01/30/13 11:57:18,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,759 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:57:18,759 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,759 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,759 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,760 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,mailingstreet,Mailing Street,Array,1,4) method ... +01/30/13 11:57:18,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,761 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:57:18,761 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,761 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,761 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,761 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,otherstreet,Other Street,Array,1,4) method ... +01/30/13 11:57:18,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,762 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:57:18,762 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,762 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,762 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,763 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingpobox,Mailing Po Box,Array,1,4) method ... +01/30/13 11:57:18,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,764 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:57:18,764 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,764 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,764 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,764 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherpobox,Other Po Box,Array,1,4) method ... +01/30/13 11:57:18,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,765 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:57:18,765 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,765 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,765 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,766 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcity,Mailing City,Array,1,4) method ... +01/30/13 11:57:18,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,767 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:57:18,767 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,767 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,767 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,767 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercity,Other City,Array,1,4) method ... +01/30/13 11:57:18,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,768 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:57:18,768 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,768 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,768 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,769 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingstate,Mailing State,Array,1,4) method ... +01/30/13 11:57:18,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,770 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:57:18,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,770 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,770 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherstate,Other State,Array,1,4) method ... +01/30/13 11:57:18,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,771 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:57:18,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,771 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,772 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingzip,Mailing Zip,Array,1,4) method ... +01/30/13 11:57:18,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,773 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:57:18,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,773 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,773 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,otherzip,Other Zip,Array,1,4) method ... +01/30/13 11:57:18,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,774 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:57:18,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,774 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,775 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,mailingcountry,Mailing Country,Array,1,4) method ... +01/30/13 11:57:18,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,776 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:57:18,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,776 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,776 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,othercountry,Other Country,Array,1,4) method ... +01/30/13 11:57:18,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,777 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:57:18,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,777 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,778 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,4) method ... +01/30/13 11:57:18,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,779 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:18,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,779 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,779 [1520] DEBUG index - Entering getDetailViewOutputHtml(69,imagename,Contact Image,Array,1,4) method ... +01/30/13 11:57:18,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,780 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:57:18,780 [1520] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/30/13 11:57:18,780 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:18,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:18,783 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:18,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,783 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:18,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,784 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:57:18,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,784 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:18,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,784 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:57:18,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,784 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:18,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,785 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:18,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,785 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:18,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,785 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:57:18,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,785 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:18,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,786 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:57:18,786 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:57:18,786 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:57:18,786 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:57:18,786 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,786 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,786 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:57:18,786 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,142) method ... +01/30/13 11:57:18,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,787 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,142) method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Entering getEmailParentsList(Contacts,142) method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,788 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid = ? and fieldname= ? and vtiger_field.presence in (0,2) +01/30/13 11:57:18,789 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:57:18,792 [1520] DEBUG index - Exiting getEmailParentsList method ... +01/30/13 11:57:18,792 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:18,792 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:18,795 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:18,795 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:18,795 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,795 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:18,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,797 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:57:18,797 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:18,804 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,804 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:57:18,804 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:57:18,825 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:57:18,826 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,826 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:57:18,826 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:57:18,826 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:57:18,828 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:57:18,828 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:18,828 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:18,830 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:57:18,830 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:18,830 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,830 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:57:18,831 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,831 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:57:18,832 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,832 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:57:18,832 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,832 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:57:18,833 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,833 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:57:18,833 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,833 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:18,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,834 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,835 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:57:18,835 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:18,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,839 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:57:18,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,839 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:57:18,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,840 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:57:18,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,840 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:57:18,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,840 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:57:18,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,841 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:57:18,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,841 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:18,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,841 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:57:18,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,842 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:57:18,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,842 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:57:18,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,842 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:57:18,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,843 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:18,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,843 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:57:18,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,843 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:57:18,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,843 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:57:18,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,844 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:57:18,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,844 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:57:18,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,844 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:57:18,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,845 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:57:18,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,845 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:57:18,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,845 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:57:18,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,846 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:18,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,846 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:57:18,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,846 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:18,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,847 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:57:18,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,847 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:57:18,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,847 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:57:18,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,848 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:57:18,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,848 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:57:18,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,848 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:57:18,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,849 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:57:18,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,849 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:57:18,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,849 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:57:18,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,850 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:57:18,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,850 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:57:18,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,850 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:57:18,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,851 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:57:18,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,851 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:57:18,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,851 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:57:18,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,851 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:57:18,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,852 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:57:18,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,852 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:18,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,852 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:57:18,853 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:57:18,853 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:57:18,853 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,142) method ... +01/30/13 11:57:18,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,854 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,854 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:57:18,854 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:18,858 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:18,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:18,859 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:18,859 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:18,861 [1520] DEBUG index - Prepared sql query being executed : select accountid from vtiger_contactdetails where contactid=? +01/30/13 11:57:18,861 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:18,863 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:57:18,863 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:18,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,863 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:18,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:18,864 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:57:18,864 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:57:18,864 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:18,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,864 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:18,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,864 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:57:18,864 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:57:18,875 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:18,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,875 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:18,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,875 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,876 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:18,876 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:57:18,876 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:18,876 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,876 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:18,877 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:57:18,877 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:18,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,877 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:18,878 [1520] DEBUG index - Entering isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:57:18,879 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:57:18,879 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:57:18,881 [1520] DEBUG index - Entering when status=0 +01/30/13 11:57:18,881 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:57:18,881 [1520] DEBUG index - Exiting isPermittedCustomView(7,DetailView,Contacts) method.... +01/30/13 11:57:18,882 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:18,883 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:18,883 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,883 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,883 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:18,883 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,884 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 35 +01/30/13 11:57:18,891 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:57:18,891 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:57:18,142,1] +01/30/13 11:57:18,896 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:18,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:18,896 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:57:18,896 [1520] DEBUG index - Prepared sql query parameters : [4,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:57:18,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,905 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,905 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:18,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,906 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:18,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,906 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,906 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,907 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,907 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,908 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,908 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:18,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,908 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:18,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,909 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:18,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,909 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:18,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,909 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:57:18,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,910 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:18,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,910 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:18,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,910 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:18,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,911 [1520] DEBUG index - function getTranslatedString(Purchase Order) - translated to (采购订单) +01/30/13 11:57:18,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,911 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:57:18,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,911 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:18,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,911 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:57:18,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,912 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:18,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,912 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:18,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,912 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:18,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,913 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:18,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,913 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:18,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:18,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:18,913 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:57:18,957 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:18,957 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:18,988 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:18,988 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:18,991 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:57:18,991 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:57:19,029 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,030 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,030 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,030 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,030 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:57:19,031 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:19,033 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:19,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:19,033 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:19,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:19,033 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:57:19,034 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,034 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,034 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,034 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,034 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,034 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:57:19,034 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:57:19,038 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:57:19,038 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:57:19,038 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:57:19,038 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:19,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,038 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:19,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,038 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:19,038 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:57:19,046 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:19,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,047 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,047 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:57:19,047 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,047 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,047 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,047 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,047 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,048 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:19,048 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:19,048 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:19,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,048 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:19,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,048 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:19,048 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:19,057 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:19,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,057 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,058 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,058 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,058 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,058 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,058 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:57:19,058 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:57:19,058 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:19,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,059 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:19,059 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,059 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:19,059 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:57:19,064 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:19,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,065 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,066 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,066 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,066 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,067 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,070 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:19,070 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:19,070 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:19,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,071 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:19,071 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:57:19,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:19,072 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:57:19,072 [1520] DEBUG index - Prepared sql query parameters : [142] +01/30/13 11:57:19,095 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:19,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:19,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:19,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:19,095 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:57:19,095 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:19,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:19,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:19,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:19,096 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:57:19,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:19,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:19,096 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:57:19,097 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:57:19,097 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:19,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:25,773 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:25,902 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:25,903 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:25,903 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:25,903 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:25,904 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'record' => '138', +) +01/30/13 11:57:25,904 [1520] INFO index - About to take action DetailView +01/30/13 11:57:25,904 [1520] DEBUG index - in DetailView +01/30/13 11:57:25,904 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:57:25,904 [1520] INFO index - current module is Accounts +01/30/13 11:57:25,938 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:25,938 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:25,938 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:25,938 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:25,939 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:25,939 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:25,939 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:25,939 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:25,939 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:25,951 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:25,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:25,951 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:25,951 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:25,952 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:25,952 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:25,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,953 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:25,953 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,953 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:25,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,954 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:25,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,954 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:25,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,955 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:25,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,955 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:25,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,956 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:25,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,956 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:25,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,957 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:25,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,957 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:25,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,958 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:25,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,958 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:25,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,958 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:25,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,959 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:25,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,959 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:25,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,960 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:25,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,960 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:25,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,961 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:25,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,961 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:25,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,962 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:25,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,962 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,963 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:25,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,964 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:25,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,964 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:25,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,965 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:25,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,965 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:25,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,966 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:25,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,966 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:25,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,967 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:25,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,967 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:25,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,968 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:25,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,968 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:25,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,969 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:25,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,969 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:25,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,970 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:25,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,970 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:25,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,971 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:25,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,971 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:25,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,972 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:25,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,972 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:25,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,973 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:25,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,973 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:25,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,974 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:25,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,974 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:25,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:25,975 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:25,980 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:25,980 [1520] DEBUG index - Prepared sql query parameters : [435,1,Accounts,DetailView,138,2013-01-30 11:57:25] +01/30/13 11:57:25,997 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:25,997 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:25,997 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:25,997 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:25,999 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:25,999 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:26,001 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:26,001 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:26,003 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:26,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,004 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,004 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,004 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,004 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,004 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:26,004 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:26,014 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,015 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,015 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:57:26,015 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:57:26,015 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:57:26,019 [1520] INFO index - in track view method Accounts +01/30/13 11:57:26,019 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,020 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:57:26,021 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:57:26,021 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,023 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:26,023 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:57:26,023 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:57:26,026 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:26,026 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:57:26,028 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:57:26,028 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:26,028 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:26,028 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:26,028 [1520] DEBUG index - including headers +01/30/13 11:57:26,028 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:57:26,029 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:26,032 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,032 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,034 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:57:26,034 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:57:26,034 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,036 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:57:26,036 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:57:26,037 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:57:26,037 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,037 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:57:26,038 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,038 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:57:26,038 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,038 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:57:26,039 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,039 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:57:26,039 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,039 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:57:26,039 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,040 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:57:26,040 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,040 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:57:26,040 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:26,040 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:57:26,041 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:57:26,041 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:57:26,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,049 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:57:26,049 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:26,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:26,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,050 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:57:26,051 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:57:26,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:26,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,052 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:57:26,052 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:57:26,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:26,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,054 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:57:26,054 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:57:26,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,055 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:26,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,055 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:57:26,055 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:57:26,056 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:26,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,056 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:57:26,057 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:26,057 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:26,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,058 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:57:26,058 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:26,058 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:57:26,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,059 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:57:26,059 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:57:26,059 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,060 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:26,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,060 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:57:26,060 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:26,061 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:26,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,062 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:57:26,062 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:26,062 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:26,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,063 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:57:26,063 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:26,063 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,064 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:26,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,064 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:57:26,064 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:57:26,065 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:26,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,065 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:57:26,065 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:26,066 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:26,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,067 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:57:26,067 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:57:26,067 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,067 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:26,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,068 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:57:26,068 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:57:26,068 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,069 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:26,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,069 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:57:26,069 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:57:26,070 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,070 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:26,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,071 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:57:26,071 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:57:26,071 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:26,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,072 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:57:26,072 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:57:26,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:26,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,073 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:57:26,073 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:57:26,074 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,074 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:57:26,074 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:57:26) method ... +01/30/13 11:57:26,074 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:26,075 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:57:26) method ... +01/30/13 11:57:26,075 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:26,075 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:26,075 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:26,075 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:57:26,076 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:26,076 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:57:26,076 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:57:26,076 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:57:26,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,082 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,082 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,084 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,087 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,088 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,089 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,091 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:57:26,095 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:26,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,096 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:26,096 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,098 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,098 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:26,098 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,098 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:26,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,099 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:26,099 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,099 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:57:26,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,100 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,100 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,100 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:26,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:26,101 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,102 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:57:26,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,102 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:26,102 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,102 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:57:26,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,103 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:26,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,103 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:57:26,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,104 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:57:26,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,104 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:26,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,105 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:57:26,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,105 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:26,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,105 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:26,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,106 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:57:26,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,106 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:57:26,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,107 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:57:26,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,107 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:26,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,108 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:57:26,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,108 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:26,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,108 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:57:26,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,109 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:26,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,109 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:57:26,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,110 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:26,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,110 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:57:26,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,111 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:26,111 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:57:26,111 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,114 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:26,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,115 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,142) method ... +01/30/13 11:57:26,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,116 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,27) method ... +01/30/13 11:57:26,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,116 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,28) method ... +01/30/13 11:57:26,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,117 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,22) method ... +01/30/13 11:57:26,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,118 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:26,118 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:57:26,121 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:57:26,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,122 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:57:26,122 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:57:26,124 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:57:26,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,130 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:26,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,131 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:57:26,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:57:26,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,131 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:57:26,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,131 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:26,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,132 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:26,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:57:26,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,132 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:26,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:57:26,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,132 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:26,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:26,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,133 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:26,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:57:26,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,133 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:26,134 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:26,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,134 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:26,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:57:26,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,134 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:57:26,136 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:57:26,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,137 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:57:26,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:57:26,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,138 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:57:26,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:57:26,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,138 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:57:26,138 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:57:26,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,139 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:57:26,139 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:57:26,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,140 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:57:26,140 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:26,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,140 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:57:26,140 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:57:26,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,141 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:57:26,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:57:26,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,141 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:57:26,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:57:26,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,142 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:57:26,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:26,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,142 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:26,142 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:57:26,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,142 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:26,142 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:57:26,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,143 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:57:26,143 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:57:26,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,143 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:57:26,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:57:26,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,143 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:57:26,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:57:26,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,144 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:57:26,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:57:26,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,144 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:26,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:26,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,144 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:26,144 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:57:26,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,145 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:57:26,145 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:57:26,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,145 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:57:26,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:57:26,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,146 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:57:26,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:57:26,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,146 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:26,146 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:57:26,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,147 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:57:26,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:57:26,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,148 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:26,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,148 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:57:26,148 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:57:26,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,151 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,151 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,151 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,151 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:57:26,151 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,155 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:57:26,155 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,157 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:57:26,158 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,159 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:57:26,159 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,161 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:57:26,161 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,162 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,164 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:57:26,164 [1520] DEBUG index - id is 138 +01/30/13 11:57:26,164 [1520] DEBUG index - name is OSSEZ +01/30/13 11:57:26,164 [1520] INFO index - Account detail view +01/30/13 11:57:26,164 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:57:26,164 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,164 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:57:26,164 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:26,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,166 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:57:26,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,167 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:57:26,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,167 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:26,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,167 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:57:26,168 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:57:26,168 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:57:26,177 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:57:26,178 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:57:26,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,178 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:26,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,179 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,179 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:57:26,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,180 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:57:26,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,180 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,181 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:57:26,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,181 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:57:26,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,182 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,182 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:57:26,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,183 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:57:26,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,183 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,184 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:57:26,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,184 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:57:26,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,185 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,185 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:57:26,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,186 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:26,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,186 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,187 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:57:26,187 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:57:26,187 [1520] INFO index - in getAccountName 8 +01/30/13 11:57:26,187 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:57:26,187 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:57:26,189 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:57:26,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,189 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:57:26,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,189 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,190 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:57:26,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,191 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:57:26,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,191 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,191 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:57:26,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,192 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:57:26,192 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,192 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,192 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,193 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:57:26,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,194 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:57:26,194 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,194 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,194 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,194 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:57:26,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,195 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:57:26,195 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,195 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,195 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,196 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:57:26,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,197 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:57:26,197 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,197 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,197 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,197 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:57:26,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,198 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:57:26,198 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:57:26,198 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:26,198 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:57:26,198 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:57:26,199 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:57:26,201 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:57:26,201 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:57:26,201 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:57:26,203 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:26,203 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:57:26,203 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,203 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:57:26,209 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 435 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #504 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #504 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:57:26,209 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,210 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,211 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,211 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:57:26,211 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,212 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:57:26,215 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,215 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:57:26,215 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,215 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:57:26,218 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,218 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:57:26,218 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:57:26,218 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:57:26,220 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:57:26,220 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:57:26,242 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:57:26,243 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:57:26,244 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:57:26,245 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:57:26,245 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:57:26,245 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:57:26,245 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:57:26,245 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:57:26,245 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,245 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,245 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,246 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:57:26,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,247 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:57:26,247 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:57:26,247 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:26,247 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:26,247 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:57:26,247 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,247 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:57:26,251 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 435 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #512 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #512 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:57:26,251 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,252 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,253 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,253 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:57:26,253 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,254 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:57:26,257 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,257 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:57:26,257 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,257 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:57:26,260 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,260 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:57:26,260 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:57:26,260 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:57:26,262 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:57:26,262 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:57:26,270 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:57:26,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,270 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,270 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,271 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,272 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:57:26,272 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:57:26,272 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,272 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:57:26,277 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 435 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #520 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #520 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:57:26,278 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,278 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,280 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,280 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:57:26,280 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,281 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:57:26,286 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,286 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:57:26,286 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:57:26,287 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:57:26,290 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:57:26,291 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:57:26,291 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:57:26,291 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:57:26,292 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:57:26,293 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:57:26,304 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:57:26,305 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:57:26,305 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:57:26,305 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:57:26,305 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,305 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,305 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,306 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:57:26,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,306 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:57:26,306 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,307 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,307 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,307 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:57:26,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,308 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:57:26,308 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,308 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,308 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,309 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:57:26,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,310 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:57:26,310 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:57:26,310 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:57:26,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:57:26,310 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:57:26,312 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:57:26,312 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:57:26,312 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:57:26,312 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:57:26,312 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,312 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,313 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,313 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:57:26,314 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:57:26,314 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:57:26,315 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:57:26,315 [1520] INFO index - in getOwnerName 5 +01/30/13 11:57:26,315 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:26,315 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,316 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,317 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:26,317 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:57:26,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,319 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:26,319 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,320 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,320 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:57:26,320 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:57:26,321 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:57:26,321 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:26,322 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:26,322 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:57:26,322 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:57:26,324 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,324 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,326 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,326 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,328 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:26,328 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:26,328 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:57:26,329 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:26,329 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:57:26,329 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:26,329 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:57:26,329 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:57:26,330 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:57:26,331 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:57:26,331 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:57:26,331 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,332 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:57:26,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,333 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:26,333 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,333 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,333 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,334 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:57:26,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,335 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:57:26,335 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:57:26,335 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:26,335 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:57) method ... +01/30/13 11:57:26,335 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:26,336 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,336 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,336 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,337 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:57:26,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,337 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:57:26,337 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,338 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,339 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:57:26,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,340 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:57:26,340 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,340 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,340 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,341 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:57:26,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,341 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:57:26,341 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,342 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,342 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,342 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:57:26,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,343 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:57:26,343 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,343 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,343 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,344 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:57:26,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,344 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:57:26,345 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,345 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,345 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,345 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:57:26,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,346 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:57:26,346 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,346 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,346 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,347 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:57:26,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,347 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:57:26,347 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,348 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,348 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,348 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:57:26,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,349 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:57:26,349 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,349 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,349 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,350 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:57:26,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,350 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:57:26,350 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,351 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,351 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,351 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:57:26,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,352 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:57:26,352 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,352 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,352 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,353 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:57:26,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,353 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:57:26,353 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,354 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,354 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,354 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:57:26,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,355 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:57:26,355 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,355 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,355 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,356 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:57:26,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,356 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:57:26,356 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,357 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,357 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,358 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:26,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,359 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:57:26,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,359 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:57:26,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,359 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:26,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,359 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:57:26,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,360 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:57:26,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,360 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:57:26,360 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:57:26,360 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:57:26,360 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:57:26,360 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:57:26,360 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,362 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:57:26,362 [1520] INFO index - in getOwnerName 1 +01/30/13 11:57:26,362 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:57:26,362 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:26,362 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:26,364 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:57:26,364 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,366 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:57:26,366 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:57:26,366 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:57:26,367 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:57:26,367 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,367 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:57:26,367 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:57:26,367 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:57:26,367 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:57:26,368 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:26,368 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:57:26,368 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,370 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:57:26,370 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,370 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:57:26,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,371 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:57:26,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:57:26,372 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:57:26,373 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,373 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,374 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,374 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,375 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,376 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:57:26,376 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:57:26,380 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,380 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:57:26,380 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:57:26,397 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:57:26,398 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,398 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:57:26,398 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:57:26,398 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:57:26,400 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:57:26,400 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,400 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:26,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:26,400 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:57:26,400 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:26,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,403 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:57:26,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,403 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:57:26,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,403 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:57:26,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,404 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:57:26,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,404 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:57:26,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,404 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:57:26,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,405 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:57:26,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,405 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:57:26,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,405 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:57:26,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,406 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:57:26,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,406 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:57:26,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,406 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:57:26,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,407 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:57:26,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,407 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:57:26,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,407 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:57:26,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,408 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:57:26,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,408 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:57:26,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,408 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:57:26,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,409 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:57:26,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,409 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:57:26,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,409 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:57:26,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,410 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:57:26,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,410 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:57:26,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,410 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:57:26,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,410 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:57:26,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,411 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:57:26,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,411 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:57:26,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,411 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:57:26,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,412 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:57:26,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,412 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:57:26,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,412 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:57:26,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,413 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:57:26,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,413 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:57:26,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,413 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:57:26,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,414 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:57:26,414 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:57:26,414 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:57:26,414 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:57:26,414 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:26,415 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,415 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:57:26,415 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,415 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:57:26,416 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,416 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:57:26,416 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,417 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:57:26,417 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,417 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:57:26,418 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,418 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:26,418 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,418 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:57:26,419 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,419 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:57:26,419 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:57:26,420 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,420 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,420 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,420 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:57:26,420 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:57:26,424 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:57:26,424 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,424 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:57:26,424 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:57:26,426 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:57:26,426 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:26,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:57:26,427 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:57:26,427 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,427 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:57:26,427 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:57:26,437 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:57:26,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,438 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:26,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,438 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,438 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:26,439 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:57:26,439 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:57:26,439 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,439 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:57:26,439 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:57:26,439 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:57:26,138,1] +01/30/13 11:57:26,442 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,442 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:57:26,442 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:57:26,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,451 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,451 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:57:26,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,452 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:57:26,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,452 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,452 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,453 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,453 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,453 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,454 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:57:26,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,454 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:57:26,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,455 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:57:26,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,455 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:57:26,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,455 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:57:26,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,456 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:57:26,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,456 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:57:26,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,456 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:57:26,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,457 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:57:26,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,457 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:57:26,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,457 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:57:26,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,457 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:57:26,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,458 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:57:26,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,458 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:57:26,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,458 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:57:26,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,459 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:57:26,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,459 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:57:26,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,459 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:57:26,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,460 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:57:26,554 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,554 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,555 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,555 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,555 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:57:26,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:26,558 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:26,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,558 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:26,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,558 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:57:26,559 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,559 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,559 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,559 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,559 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:57:26,559 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:57:26,562 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:57:26,562 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:57:26,562 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:57:26,562 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:26,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,563 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:26,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,563 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:26,563 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:57:26,570 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:57:26,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,570 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,571 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:57:26,571 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:57:26,571 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:57:26,571 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:26,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,571 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:26,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,571 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:26,571 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:57:26,581 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:57:26,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,581 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,582 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,582 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,582 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,582 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,582 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,582 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,582 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:57:26,583 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:57:26,583 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,583 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:26,583 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:57:26,588 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:57:26,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,589 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,590 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,590 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,590 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,590 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,592 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:57:26,592 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:57:26,592 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:57:26,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,592 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:26,593 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:57:26,593 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:26,593 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:57:26,593 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:57:26,610 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,610 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:57:26,610 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,611 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:57:26,611 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:26,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:26,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,611 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:57:26,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:26,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:26,611 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:57:26,612 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:57:26,612 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:57:26,613 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,565 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:57:30,700 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:57:30,700 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:57:30,700 [1520] DEBUG index - ****Starting for new session +01/30/13 11:57:30,701 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:57:30,701 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '138', + 'parenttab' => 'Marketing', +) +01/30/13 11:57:30,701 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:57:30,701 [1520] DEBUG index - in CallRelatedList +01/30/13 11:57:30,701 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:57:30,701 [1520] INFO index - current module is Accounts +01/30/13 11:57:30,740 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:57:30,740 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:57:30,740 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:57:30,740 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:30,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,741 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:30,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,741 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:57:30,741 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:57:30,753 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:57:30,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:57:30,753 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:57:30,754 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:57:30,754 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:57:30,755 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:57:30,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,755 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:57:30,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,756 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:57:30,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,756 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:57:30,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,756 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:57:30,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,757 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:57:30,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,757 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:57:30,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,758 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:57:30,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,758 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:57:30,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,759 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:57:30,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,759 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:57:30,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,760 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:57:30,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,760 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:57:30,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,761 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:57:30,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,761 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:57:30,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,762 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:57:30,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,762 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:57:30,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,763 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:57:30,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,763 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:57:30,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,763 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:57:30,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,764 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:57:30,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,764 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:57:30,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,765 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:57:30,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,765 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:57:30,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,766 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:57:30,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,766 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:57:30,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,767 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:57:30,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,767 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:57:30,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,767 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:57:30,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,768 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:57:30,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,768 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:57:30,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,769 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:57:30,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,769 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:57:30,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,770 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:57:30,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,770 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:57:30,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,771 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:57:30,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,771 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:57:30,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,772 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:57:30,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,772 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:57:30,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,773 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:57:30,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,773 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:57:30,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,774 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:57:30,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,774 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:57:30,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,775 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:57:30,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,775 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:57:30,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,776 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:57:30,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,776 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:57:30,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:57:30,777 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:57:30,784 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:57:30,784 [1520] DEBUG index - Prepared sql query parameters : [436,1,Accounts,CallRelatedList,138,2013-01-30 11:57:30] +01/30/13 11:57:30,789 [1520] DEBUG index - Current user is: admin +01/30/13 11:57:30,789 [1520] DEBUG index - Current theme is: softed +01/30/13 11:57:30,789 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:57:30,790 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:57:30,791 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:57:30,791 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:57:30,793 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:57:30,793 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:57:30,795 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:57:30,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,796 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:57:30,796 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:57:30,796 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:57:30,796 [1520] DEBUG index - including headers +01/30/13 11:57:30,796 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:57:30,797 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:57:30,800 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:57:30,800 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:57:30,802 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:57:30,803 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:57:30,803 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,803 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:57:30,804 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,804 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:57:30,804 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,804 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,805 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:57:30,806 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:57:30,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:57:30,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,815 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:57:30,815 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:57:30,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:57:30,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,816 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:57:30,816 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:57:30,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:57:30,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,818 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:57:30,818 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:57:30,818 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:57:30,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,820 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:57:30,820 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:57:30,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,820 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:57:30,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,821 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:57:30,821 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:57:30,821 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:57:30,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,822 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:57:30,822 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:57:30,823 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:57:30,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,824 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:57:30,824 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:57:30,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:57:30,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,825 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:57:30,825 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:57:30,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:57:30,825 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:57:30,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:57:30,826 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) diff --git a/logs/vtigercrm.log.2 b/logs/vtigercrm.log.2 new file mode 100644 index 0000000..62ce499 --- /dev/null +++ b/logs/vtigercrm.log.2 @@ -0,0 +1,30729 @@ +01/30/13 11:46:26,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,127 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:26,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,127 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:26,127 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,127 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:26,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,128 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:46:26,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,128 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,129 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:26,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,130 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:26,130 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,130 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:26,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,131 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:26,131 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,131 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:46:26,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,132 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:46:26,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,132 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:46:26,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,133 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:26,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,135 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:46:26,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,135 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:26,135 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:26,135 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,139 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:26,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,139 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:46:26,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,140 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:46:26,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,141 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:46:26,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,141 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:46:26,141 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,142 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:26,142 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:46:26,144 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:46:26,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,144 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:46:26,144 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:46:26,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:46:26,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,155 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:26,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,156 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:46:26,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:26,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,156 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:46:26,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,156 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:26,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,157 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:26,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:26,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,157 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:26,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:26,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,157 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:26,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:26,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,158 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:26,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:26,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,158 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:26,159 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:26,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,159 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:26,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:46:26,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,159 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:46:26,161 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:46:26,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,162 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:46:26,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:46:26,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,162 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:46:26,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:46:26,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,163 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:46:26,163 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:46:26,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,164 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:46:26,164 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:46:26,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,164 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:46:26,164 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:26,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,165 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:46:26,165 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:46:26,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,165 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:46:26,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:46:26,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,166 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:46:26,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:46:26,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,167 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:46:26,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:26,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,167 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:26,167 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:26,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,167 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:26,167 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:26,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,167 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:46:26,168 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:26,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,168 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:46:26,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:26,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,168 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:46:26,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:46:26,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,169 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:46:26,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:26,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,169 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:26,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:26,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,169 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:26,169 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:46:26,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,170 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:46:26,170 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:26,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,170 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:46:26,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:26,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,171 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:46:26,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:26,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,171 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:26,172 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:26,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,172 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:26,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:26,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,173 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:26,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,174 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:46:26,174 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:26,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,176 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,176 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,176 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,177 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,177 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,177 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:46:26,177 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:46:26,179 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,182 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:46:26,182 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,184 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:46:26,184 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:46:26,186 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,187 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,187 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,189 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:46:26,189 [1520] DEBUG index - id is 138 +01/30/13 11:46:26,189 [1520] DEBUG index - name is OSSEZ +01/30/13 11:46:26,189 [1520] INFO index - Account detail view +01/30/13 11:46:26,189 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:46:26,189 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,190 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:46:26,190 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:26,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,192 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:46:26,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,192 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:46:26,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,192 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:26,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,193 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:46:26,193 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:46:26,193 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:46:26,202 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:46:26,203 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:46:26,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,204 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:26,204 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,204 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,204 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,204 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:46:26,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,205 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:46:26,205 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,205 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,205 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,206 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:46:26,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,206 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:46:26,207 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,207 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,207 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,207 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:46:26,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,208 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:46:26,208 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,208 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,208 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,209 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:46:26,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,209 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:46:26,209 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,209 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,209 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,210 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:46:26,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,211 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:46:26,211 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,211 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,211 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,211 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:46:26,212 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:46:26,212 [1520] INFO index - in getAccountName 8 +01/30/13 11:46:26,212 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:46:26,212 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:26,214 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:46:26,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,214 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:46:26,214 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,214 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,214 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,215 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:46:26,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,215 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:46:26,215 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,215 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,215 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,216 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:46:26,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,217 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:46:26,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,217 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,217 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:46:26,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,218 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:26,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,218 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,219 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:46:26,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,219 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:46:26,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,220 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,220 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:46:26,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,221 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:46:26,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,221 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,221 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:46:26,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,222 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:46:26,222 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:26,222 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:26,222 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:46:26,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:46:26,222 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:46:26,225 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:46:26,225 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:46:26,225 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:46:26,227 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:26,227 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:26,227 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,227 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:26,230 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 368 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #505 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #505 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:26,231 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,231 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,233 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,233 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:26,233 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,233 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:26,236 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,237 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:26,237 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,237 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:26,240 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,241 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:26,241 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:26,241 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:46:26,242 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:26,242 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:46:26,260 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:46:26,261 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:46:26,262 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:46:26,262 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,262 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,262 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,263 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:46:26,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,264 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:46:26,264 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:26,264 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:26,264 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:26,264 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:26,264 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,264 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:26,267 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 368 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #513 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #513 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:26,268 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,269 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,272 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,272 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:26,272 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,272 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:26,275 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,275 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:26,275 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,275 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:26,279 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,279 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:26,279 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:26,279 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:46:26,281 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:26,281 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:46:26,289 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:46:26,289 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,289 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,289 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,290 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:46:26,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,291 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:26,291 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:26,291 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:26,291 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:26,291 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:26,291 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,291 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:26,295 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 368 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #521 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #521 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:26,296 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,296 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,298 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,298 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:26,298 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,298 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:26,301 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,301 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:26,301 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:26,302 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:26,305 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:26,305 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:26,305 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:26,305 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:46:26,307 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:26,307 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:46:26,320 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:46:26,321 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:46:26,321 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:46:26,321 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:46:26,321 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:46:26,321 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,321 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,321 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,322 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:46:26,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,322 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:46:26,322 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,322 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,323 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,323 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:46:26,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,324 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:46:26,324 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,324 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,324 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,324 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:46:26,325 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,325 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:46:26,325 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:46:26,325 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:46:26,325 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:46:26,325 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:26,327 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,328 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,329 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:46:26,329 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:46:26,329 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:46:26,331 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:46:26,331 [1520] INFO index - in getOwnerName 5 +01/30/13 11:46:26,331 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:46:26,331 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,331 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,333 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:46:26,333 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:46:26,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,335 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:26,335 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,335 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,335 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:46:26,335 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:46:26,337 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:46:26,338 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:26,338 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:26,338 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:46:26,338 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:46:26,340 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,340 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,342 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,342 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,345 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:26,345 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:26,345 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:46:26,345 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:26,345 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:46:26,345 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:26,345 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:26,346 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:26,346 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:46:26,347 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:26,348 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,348 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,349 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:46:26,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,349 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:46:26,349 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,350 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,350 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,350 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:46:26,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,351 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:46:26,351 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:46:26,351 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:26,351 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:57) method ... +01/30/13 11:46:26,351 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:26,352 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,352 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,352 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,352 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:46:26,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,353 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:46:26,353 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:46:26,353 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:26,353 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:46:26,354 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:26,354 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,354 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,354 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,354 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:46:26,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,355 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:46:26,355 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,355 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,355 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,356 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:46:26,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,357 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:46:26,357 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,357 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,357 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:46:26,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,358 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:46:26,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,358 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,358 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,359 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:46:26,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,359 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:46:26,359 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,360 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,360 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,360 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:46:26,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,361 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:46:26,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,361 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,361 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:46:26,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,362 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:46:26,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,362 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,363 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:46:26,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,363 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:46:26,363 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,364 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,364 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:46:26,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,365 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:46:26,365 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,365 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,365 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,366 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:46:26,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,366 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:46:26,366 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,366 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,366 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,367 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:46:26,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,367 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:46:26,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,368 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,368 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:46:26,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,369 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:46:26,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,369 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,370 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:46:26,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,370 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:46:26,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,370 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,371 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:46:26,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,372 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:26,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,372 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,372 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:26,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,372 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:46:26,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,373 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:46:26,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,373 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:26,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,373 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:26,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,373 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:46:26,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,374 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:46:26,374 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:46:26,374 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:46:26,374 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:46:26,374 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:46:26,374 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,376 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:46:26,376 [1520] INFO index - in getOwnerName 1 +01/30/13 11:46:26,376 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:46:26,376 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,376 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,379 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:46:26,379 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,381 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:46:26,381 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:26,381 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:46:26,381 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:46:26,381 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,382 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:46:26,382 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:26,382 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:26,382 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:46:26,382 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:26,383 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:46:26,383 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,384 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:46:26,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,385 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:46:26,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,385 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:26,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:46:26,386 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:26,388 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,388 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,388 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,389 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:46:26,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,391 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:26,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,391 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:26,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,391 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:46:26,391 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:26,395 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,396 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:46:26,396 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:46:26,414 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:46:26,414 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,414 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:46:26,414 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:46:26,414 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:26,416 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:46:26,416 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,417 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:26,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,417 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:46:26,417 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:26,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,421 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:26,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,421 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:46:26,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,421 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:46:26,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,422 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:46:26,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,422 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:46:26,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,422 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:46:26,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,423 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:46:26,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,423 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:46:26,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,423 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:26,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,424 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:46:26,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,424 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:46:26,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,424 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:46:26,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,424 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:46:26,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,425 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:46:26,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,425 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:46:26,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,425 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:26,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,426 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:46:26,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,426 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:46:26,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,426 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:46:26,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,427 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:26,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,427 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:46:26,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,427 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:46:26,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,428 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:46:26,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,428 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:46:26,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,428 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:46:26,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,429 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:46:26,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,429 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:46:26,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,429 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:46:26,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,430 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:46:26,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,430 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:46:26,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,430 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:46:26,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,431 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:46:26,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,431 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:46:26,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,431 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:26,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,432 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:46:26,432 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:46:26,432 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:46:26,432 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:46:26,432 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:26,432 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,433 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:46:26,433 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,433 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:46:26,433 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,433 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:46:26,434 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,434 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:46:26,434 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,434 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:46:26,435 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,435 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:26,435 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,435 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:46:26,436 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,436 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:46:26,436 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:46:26,436 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,437 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:46:26,438 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:46:26,438 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:26,440 [1520] DEBUG index - Entering when status=0 +01/30/13 11:46:26,440 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:46:26,440 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:46:26,442 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,442 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:46:26,442 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:26,446 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:46:26,446 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,447 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:46:26,447 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,449 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:46:26,449 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:26,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,449 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:26,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,449 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:26,449 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:26,449 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:26,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,450 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:26,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,450 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:46:26,450 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:46:26,463 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:26,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,463 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:26,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,464 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,464 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:26,464 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:46:26,464 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:26,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,465 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:26,465 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:46:26,465 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:46:26,138,1] +01/30/13 11:46:26,468 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,468 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,468 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:46:26,468 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:46:26,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,478 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,479 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:46:26,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,479 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:46:26,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,479 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,479 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,480 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,480 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,480 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,480 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,480 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,481 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,481 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:26,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,481 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:46:26,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,481 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:46:26,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,482 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:26,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,482 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:26,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,483 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:26,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,483 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:46:26,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,483 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:26,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,483 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:46:26,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,484 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:26,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,484 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:46:26,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,484 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:26,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,485 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:26,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,485 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:26,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,485 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:26,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,485 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:26,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,486 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:26,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,486 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:26,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,486 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:46:26,575 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,575 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,575 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,575 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,575 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:46:26,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,578 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:26,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,578 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:26,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,578 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:46:26,579 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,579 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,579 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,579 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,579 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:46:26,579 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:46:26,583 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:46:26,583 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:46:26,583 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:46:26,583 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:26,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,583 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:26,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,583 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:26,584 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:46:26,591 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,592 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:46:26,592 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:46:26,592 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:26,592 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,593 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:26,593 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:26,603 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:26,603 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,603 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,604 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,604 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,604 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,604 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,604 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,604 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,604 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,604 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:26,605 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:26,605 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,605 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:26,606 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:26,611 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:26,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,613 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,613 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,613 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,613 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,614 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,614 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,615 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,615 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,615 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:46:26,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,615 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:46:26,616 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,640 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:26,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,641 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:46:26,641 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,641 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:46:26,641 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:26,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,642 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:46:26,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,642 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:46:26,642 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:46:26,643 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:26,643 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:36,901 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,037 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:37,037 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:37,037 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:37,038 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:37,038 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '138', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:37,038 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:46:37,038 [1520] DEBUG index - in CallRelatedList +01/30/13 11:46:37,038 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:46:37,038 [1520] INFO index - current module is Accounts +01/30/13 11:46:37,087 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:37,087 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:37,087 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:37,087 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,088 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,088 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:37,088 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:37,100 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,100 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,100 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:37,100 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:37,101 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:37,101 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:37,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,102 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:37,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,102 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:37,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,102 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:37,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,103 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:37,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,103 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:37,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,104 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:37,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,104 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:37,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,105 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:37,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,105 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,106 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:37,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,107 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:37,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,107 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:37,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,108 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:37,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,108 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:37,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,109 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:37,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,109 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:37,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,110 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:37,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,110 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:37,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,110 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,111 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:37,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,112 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:37,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,112 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:37,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,113 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:37,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,113 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,114 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:37,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,115 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:37,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,115 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:37,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,116 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:37,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,116 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,117 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:37,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,118 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:37,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,118 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:37,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,119 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:37,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,119 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:37,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,120 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:37,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,120 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:37,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,121 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:37,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,121 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:37,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,121 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:37,125 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:37,125 [1520] DEBUG index - Prepared sql query parameters : [369,1,Accounts,CallRelatedList,138,2013-01-30 11:46:37] +01/30/13 11:46:37,151 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:37,151 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:37,151 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:37,152 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:37,153 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:37,153 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:37,155 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:37,156 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:37,157 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:37,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,158 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:37,158 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:37,158 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:37,158 [1520] DEBUG index - including headers +01/30/13 11:46:37,158 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:46:37,159 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:37,162 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:37,162 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:37,165 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:46:37,165 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:46:37,166 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,166 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:46:37,166 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,166 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:46:37,167 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,167 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:46:37,167 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,167 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:46:37,168 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,168 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:46:37,168 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,168 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:46:37,168 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,169 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:46:37,169 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:37,169 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:46:37,169 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:46:37,169 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:46:37,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,178 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:46:37,178 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:37,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:37,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,179 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:46:37,179 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:46:37,179 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:37,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,180 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:46:37,180 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:37,181 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:37,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,182 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:46:37,182 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:37,182 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,183 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:37,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,183 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:46:37,183 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:46:37,184 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:37,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,184 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:46:37,184 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:37,185 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:37,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,185 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:46:37,186 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:37,186 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:46:37,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,186 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:46:37,187 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:46:37,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,187 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:37,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,188 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:46:37,188 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:37,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:37,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,189 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:46:37,189 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:37,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:37,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,190 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:46:37,190 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:37,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,191 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:37,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,191 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:46:37,191 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:46:37,192 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:37,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,193 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:46:37,193 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:37,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:37,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,194 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:46:37,194 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:46:37,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,194 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:37,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,195 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:46:37,195 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:46:37,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,196 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:37,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,196 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:46:37,196 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:46:37,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,197 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:37,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,198 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:37,198 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:37,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:37,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,199 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:46:37,199 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:37,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:37,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,200 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:46:37,200 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:46:37,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,200 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:46:37) method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:46:37) method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:37,201 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:37,203 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:46:37,203 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:46:37,203 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:46:37,209 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,209 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,209 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,209 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,209 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,209 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,210 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,211 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,212 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,213 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,214 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,215 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,216 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,218 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:46:37,222 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:46:37,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:46:37,222 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:37,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:37,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:37,227 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:37,227 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,227 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,228 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,229 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:46:37,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,231 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:46:37,231 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,231 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:37,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,231 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:37,232 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,233 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:37,233 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,233 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:37,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,233 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:46:37,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,234 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:46:37,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,234 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,235 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,236 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:46:37,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,237 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:37,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,237 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:46:37,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,237 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:37,237 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:37,238 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:37,241 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:37,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,242 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:46:37,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,242 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:46:37,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,243 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:46:37,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,244 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:46:37,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,244 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:37,244 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:46:37,247 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:46:37,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,247 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:46:37,247 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:46:37,250 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:46:37,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,256 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:37,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,256 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:46:37,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:37,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,256 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:46:37,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,257 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:37,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,257 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:37,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:37,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,257 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:37,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:37,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,258 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:37,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:37,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,258 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:37,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:37,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,259 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:37,259 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:37,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,259 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:37,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:46:37,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,259 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:46:37,261 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:46:37,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,262 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:46:37,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:46:37,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,262 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:46:37,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:46:37,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,263 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:46:37,263 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:46:37,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,263 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:46:37,263 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:46:37,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,264 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:46:37,264 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:37,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,264 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:46:37,264 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:46:37,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,264 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:46:37,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:46:37,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,265 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:46:37,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:46:37,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,266 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:46:37,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:37,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,266 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:37,266 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:37,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,267 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:37,267 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:37,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,267 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:46:37,267 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:37,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,267 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:46:37,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:37,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,267 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:46:37,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:46:37,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,268 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:46:37,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:37,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,268 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:37,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:37,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,269 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:37,269 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:46:37,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,269 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:46:37,269 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:37,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,270 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:46:37,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:37,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,270 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:46:37,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:37,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,270 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:37,271 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:37,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,271 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:37,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:37,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,272 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:37,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,272 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:46:37,273 [1520] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,138) method ... +01/30/13 11:46:37,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,276 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:37,276 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:37,277 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:37,277 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:37,277 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,277 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,277 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,278 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,278 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:37,278 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:37,287 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,287 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:37,287 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:46:37,287 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:46:37,289 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,292 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:46:37,292 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,294 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:46:37,295 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,297 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:46:37,297 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,298 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,300 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:46:37,300 [1520] DEBUG index - id is 138 +01/30/13 11:46:37,300 [1520] DEBUG index - name is OSSEZ +01/30/13 11:46:37,300 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:46:37,300 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,300 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:37,301 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,301 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:37,302 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,302 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:46:37,302 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:46:37,312 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:37,313 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:46:37,314 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:37,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,314 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:37,314 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:46:37,314 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:46:37,314 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:37,316 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:46:37,316 [1520] INFO index - in getOwnerName 1 +01/30/13 11:46:37,316 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:46:37,316 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:37,317 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:37,319 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:46:37,319 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:37,321 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:46:37,321 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:37,321 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:46:37,321 [1520] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/30/13 11:46:37,322 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,322 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:46:37,322 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:37,328 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:46:37,329 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,329 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,329 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:46:37,329 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:37,333 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:46:37,333 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:37,333 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,333 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:46:37,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,334 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:46:37,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,334 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:46:37,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,335 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:46:37,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,335 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:46:37,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,336 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:37,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,336 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:46:37,337 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,337 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:46:37,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,339 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,339 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:46:37,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,339 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:46:37,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,340 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,340 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,340 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,341 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,341 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,341 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:37,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:37,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,344 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:37,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:37,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,345 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:37,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:37,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,345 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:37,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:46:37,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,345 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:46:37,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:37,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,346 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:37,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:46:37,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,347 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:46:37,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:37,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,347 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:37,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:46:37,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,348 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:46:37,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:37,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,348 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:37,348 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:37,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,348 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:37,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:37,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,349 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:37,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:37,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,349 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:37,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:46:37,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,350 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:37,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:37,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,350 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:37,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:37,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,350 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:37,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:46:37,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,351 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:46:37,351 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:46:37,352 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:37,352 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,748 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,748 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,751 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,752 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,757 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,789 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:37,902 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:37,902 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:37,902 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:37,903 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:37,903 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:37,903 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:37,903 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:37,903 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:37,903 [1520] INFO index - current module is Accounts +01/30/13 11:46:37,942 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:37,942 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:37,942 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:37,942 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,943 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,943 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:37,943 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:37,951 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:37,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,952 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:37,952 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:37,952 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:37,953 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:37,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,954 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:37,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,954 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:37,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,955 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:37,955 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,955 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:37,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,956 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:37,956 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,956 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:37,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,957 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:37,957 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,957 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:37,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,958 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:37,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,958 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:37,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,959 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:37,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,959 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:37,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,960 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:37,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,960 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:37,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,961 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:37,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,961 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:37,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,962 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:37,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,962 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:37,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,963 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:37,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,963 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:37,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,964 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:37,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,964 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:37,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,965 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:37,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,965 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:37,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,966 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:37,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,966 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:37,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,967 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:37,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,967 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:37,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,968 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:37,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,968 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:37,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,969 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:37,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,970 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:37,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,970 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:37,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,971 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:37,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,971 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:37,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,972 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:37,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,972 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:37,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,973 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:37,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,973 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:37,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,974 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:37,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,974 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:37,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,975 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:37,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,975 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:37,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,976 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:37,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,976 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:37,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,977 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:37,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:37,977 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:37,982 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:37,982 [1520] DEBUG index - Prepared sql query parameters : [370,1,Accounts,AccountsAjax,138,2013-01-30 11:46:37] +01/30/13 11:46:37,985 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:37,985 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:37,985 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:37,986 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:37,987 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:37,988 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:37,989 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:37,990 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:37,991 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:37,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:37,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:37,992 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:37,992 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:37,992 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:37,992 [1520] DEBUG index - skipping headers +01/30/13 11:46:37,992 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:37,993 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:37,995 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:37,995 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:37,995 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,995 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:37,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:37,995 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:37,995 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,003 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,003 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,006 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,006 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,009 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,009 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,009 [1520] DEBUG index - Entering get_activities(138) method ... +01/30/13 11:46:38,009 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,009 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:46:38,011 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:38,011 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:38,011 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,011 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,012 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:46:38,012 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:46:38,020 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,020 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:38,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,021 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,021 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,021 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,022 [1520] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/30/13 11:46:38,023 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,023 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:46:38,023 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,023 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,024 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:46:38,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,024 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:38,025 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,025 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:38,025 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:46:38,025 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:38,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,025 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,026 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:46:38,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,026 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:38,026 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,026 [1520] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/30/13 11:46:38,026 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,026 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,028 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,031 [1520] DEBUG index - Entering function initSortByField (Calendar) +01/30/13 11:46:38,031 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,032 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,032 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,032 [1520] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,036 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,036 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:38,036 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:38,036 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,036 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:38,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,037 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:38,037 [1520] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/30/13 11:46:38,040 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:38,040 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 138 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/30/13 11:46:38,045 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/30/13 11:46:38,051 [1520] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,138,) method ... +01/30/13 11:46:38,051 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:46:38,052 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:38,052 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,052 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,052 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,053 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,054 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:46:38,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,055 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:38,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,057 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:38,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,059 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:38,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,059 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:46:38,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,061 [1520] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/30/13 11:46:38,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,061 [1520] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/30/13 11:46:38,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,063 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:46:38,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,065 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:46:38,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,065 [1520] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/30/13 11:46:38,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,067 [1520] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/30/13 11:46:38,068 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,068 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:38,070 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:38,070 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,070 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:46:38,071 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:38,072 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,072 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:38,074 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:38,074 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,074 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,075 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,075 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:46:38,076 [1520] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/30/13 11:46:38,080 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:38,080 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:38,080 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:38,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,080 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,081 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:38,081 [1520] DEBUG index - Prepared sql query parameters : [6,9] +01/30/13 11:46:38,083 [1520] INFO index - getNextRow +01/30/13 11:46:38,084 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:38,084 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:38,084 [1520] DEBUG index - Exiting get_activities method ... +01/30/13 11:46:38,089 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:38,089 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:38,089 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:38,090 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:38,090 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:38,090 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:38,090 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:38,090 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:38,090 [1520] INFO index - current module is Accounts +01/30/13 11:46:38,136 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:38,137 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:38,137 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:38,137 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,137 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,138 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,138 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:38,146 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,146 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,147 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:38,147 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:38,148 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:38,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,148 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,149 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:38,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,149 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,150 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:38,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,150 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:38,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,151 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:38,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,151 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,152 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:38,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,152 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:38,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,153 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:38,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,154 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:38,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,154 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:38,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,155 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:38,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,155 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,156 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:38,155 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:38,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,156 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,157 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,157 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:38,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,158 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:38,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,158 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:38,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,159 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:38,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,159 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:38,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,160 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:38,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,160 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:38,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,161 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:38,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,161 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:38,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,162 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:38,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,162 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:38,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,163 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:38,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,163 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:38,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,164 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:38,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,164 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:38,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,165 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:38,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,166 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:38,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,166 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:38,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,167 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:38,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,167 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:38,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,168 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:38,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,168 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:38,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,169 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:38,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,169 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:38,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,170 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:38,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,171 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:38,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,171 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:38,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,172 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:38,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,172 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:38,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,173 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:38,177 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:38,178 [1520] DEBUG index - Prepared sql query parameters : [371,1,Accounts,AccountsAjax,138,2013-01-30 11:46:38] +01/30/13 11:46:38,181 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:38,181 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:38,181 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:38,181 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:38,183 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:38,183 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:38,185 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:38,185 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:38,187 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:38,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,187 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:38,188 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:38,188 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:38,188 [1520] DEBUG index - skipping headers +01/30/13 11:46:38,188 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:38,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,190 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,190 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,191 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,191 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,191 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,191 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,199 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,199 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,202 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,203 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:46:38,205 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,205 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,205 [1520] DEBUG index - Entering get_invoices(138) method ... +01/30/13 11:46:38,205 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,205 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:46:38,208 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:46:38,209 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:46:38,209 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:46:38,209 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,209 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,209 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,209 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:46:38,217 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,217 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,217 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,217 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:46:38,218 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,218 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,219 [1520] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/30/13 11:46:38,219 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,220 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,220 [1520] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/30/13 11:46:38,220 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,220 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,220 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:38,221 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,221 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:38,221 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,221 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,223 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,226 [1520] DEBUG index - Entering function initSortByField (Invoice) +01/30/13 11:46:38,226 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,226 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,226 [1520] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,230 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,231 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:46:38,231 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:46:38,231 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:46:38,231 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,231 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,231 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:46:38,232 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,232 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,232 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,232 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:38,235 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:46:38,260 [1520] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,138,) method ... +01/30/13 11:46:38,260 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:46:38,261 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:38,261 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,261 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,261 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,262 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,263 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:46:38,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,265 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:38,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,267 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:46:38,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,267 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:46:38,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,269 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:46:38,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:38,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,271 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:38,272 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:46:38,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,273 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:38,274 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:38,274 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,274 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,275 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,275 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,276 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:38,276 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:46:38,279 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,279 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:38,280 [1520] DEBUG index - Prepared sql query parameters : [6,23] +01/30/13 11:46:38,281 [1520] INFO index - getNextRow +01/30/13 11:46:38,282 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:38,282 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:38,282 [1520] DEBUG index - Exiting get_invoices method ... +01/30/13 11:46:38,286 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:38,286 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:38,286 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:38,286 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:38,287 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:38,287 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:38,287 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:38,287 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:38,287 [1520] INFO index - current module is Accounts +01/30/13 11:46:38,332 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:38,332 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:38,332 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:38,332 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,333 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,333 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,333 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:38,341 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,341 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,342 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:38,342 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:38,342 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:38,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,343 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,344 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:38,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,344 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,345 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:38,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,345 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:38,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,346 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:38,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,346 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,347 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:38,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,347 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:38,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,348 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:38,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,348 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:38,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,349 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:38,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,349 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:38,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,350 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,350 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:38,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,351 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,351 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,352 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:38,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,352 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:38,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,353 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:38,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,354 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:38,353 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:38,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,354 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:38,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,355 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:38,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,355 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:38,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,355 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:38,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,356 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:38,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,357 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:38,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,357 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:38,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,358 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:38,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,358 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:38,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,359 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:38,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,359 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:38,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,360 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:38,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,360 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:38,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,361 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:38,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,362 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:38,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,362 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:38,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,363 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:38,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,363 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:38,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,364 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:38,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,364 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:38,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,365 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:38,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,365 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:38,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,366 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:38,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,366 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:38,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,367 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:38,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,367 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:38,372 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:38,372 [1520] DEBUG index - Prepared sql query parameters : [372,1,Accounts,AccountsAjax,138,2013-01-30 11:46:38] +01/30/13 11:46:38,375 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:38,375 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:38,375 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:38,376 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:38,377 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:38,378 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:38,379 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:38,379 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:38,381 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:38,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,382 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:38,382 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:38,382 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:38,382 [1520] DEBUG index - skipping headers +01/30/13 11:46:38,382 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:38,383 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,384 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,384 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,384 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,385 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,385 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,385 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,392 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,392 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,396 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,396 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:38,398 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,399 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,399 [1520] DEBUG index - Entering get_opportunities(138) method ... +01/30/13 11:46:38,399 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,399 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:38,401 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:38,401 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:38,401 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,402 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,402 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,402 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:38,406 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,407 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,407 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,407 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,408 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 11:46:38,409 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,409 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:46:38,409 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:46:38,409 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,409 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:46:38,409 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,409 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,411 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,414 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 11:46:38,414 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,414 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,414 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,417 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,417 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:38,417 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:38,417 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,418 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,418 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,418 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,418 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,418 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,419 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 11:46:38,419 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,419 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:38,419 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 11:46:38,421 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:38,422 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 138 +01/30/13 11:46:38,424 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 11:46:38,428 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,138,) method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,429 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,430 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,432 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:46:38,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,434 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:38,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,435 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:46:38,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,437 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:46:38,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,439 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:46:38,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,440 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:38,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,441 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:46:38,442 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:38,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,443 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:38,443 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +141,138,OSSEZ TEST,Prospecting,--None--,0.00,2013-01-30,--None--,OSSEZ,胡昱铖,141,5 +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:38,444 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,444 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,445 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,445 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,445 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:38,445 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 11:46:38,449 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,potentialname,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,449 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,449 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,451 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,related_to,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,452 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,452 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,453 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,453 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:46:38,453 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:46:38,453 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:46:38,454 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:38,457 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:46:38,457 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:46:38,457 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,457 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:38,459 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:46:38,459 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:38,461 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,462 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,sales_stage,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,462 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,462 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,463 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,464 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,464 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,amount,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,464 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,464 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,466 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,closingdate,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,467 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,467 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,468 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,assigned_user_id,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:46:38,469 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,469 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:46:38,470 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:38,471 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,471 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,471 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,472 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 11:46:38,473 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,473 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,473 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,478 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,478 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,478 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,478 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,479 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:46:38,479 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:38,481 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,482 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:38,482 [1520] DEBUG index - Prepared sql query parameters : [6,2] +01/30/13 11:46:38,484 [1520] INFO index - getNextRow +01/30/13 11:46:38,485 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:38,485 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:38,485 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 11:46:38,489 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:38,490 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:38,490 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:38,490 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:38,490 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:38,491 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:38,491 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:38,491 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:38,491 [1520] INFO index - current module is Accounts +01/30/13 11:46:38,528 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:38,528 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:38,528 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:38,528 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,529 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,529 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,529 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,529 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,529 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:38,537 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,538 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,538 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:38,538 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:38,539 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:38,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,539 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,540 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:38,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,541 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,541 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:38,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,542 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:38,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,542 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:38,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,543 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,543 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:38,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,544 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:38,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,544 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:38,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,545 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:38,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,545 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:38,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,546 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:38,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,546 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,547 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:38,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,547 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,548 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,548 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:38,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,549 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:38,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,549 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:38,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,550 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:38,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,550 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:38,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,551 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:38,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,551 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:38,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,552 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:38,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,552 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:38,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,553 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:38,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,553 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:38,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,554 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:38,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,554 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:38,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,555 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:38,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,555 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:38,555 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:38,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,556 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:38,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,556 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:38,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,557 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:38,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,557 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:38,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,558 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:38,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,558 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:38,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,559 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:38,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,560 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:38,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,560 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:38,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,561 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:38,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,561 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:38,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,562 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:38,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,562 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:38,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,563 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:38,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,563 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:38,568 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:38,568 [1520] DEBUG index - Prepared sql query parameters : [373,1,Accounts,AccountsAjax,138,2013-01-30 11:46:38] +01/30/13 11:46:38,572 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:38,572 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:38,572 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:38,572 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:38,574 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:38,574 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:38,576 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:38,576 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:38,578 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:38,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,579 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:38,579 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:38,579 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:38,579 [1520] DEBUG index - skipping headers +01/30/13 11:46:38,579 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:38,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,582 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,582 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,582 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,582 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,582 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,582 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,589 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,590 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,593 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,593 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:38,596 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,596 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,596 [1520] DEBUG index - Entering get_salesorder(138) method ... +01/30/13 11:46:38,596 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,596 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:46:38,600 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:46:38,600 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:46:38,600 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,600 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,600 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,600 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:46:38,609 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,609 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,610 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,610 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,611 [1520] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/30/13 11:46:38,611 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,611 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,611 [1520] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/30/13 11:46:38,612 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,612 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,612 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:38,612 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,612 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:38,613 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,613 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,615 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,618 [1520] DEBUG index - Entering function initSortByField (SalesOrder) +01/30/13 11:46:38,618 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,618 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,618 [1520] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,622 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,622 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:46:38,622 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:46:38,622 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,623 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,623 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,624 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,624 [1520] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/30/13 11:46:38,624 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,624 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:38,624 [1520] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/30/13 11:46:38,627 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:38,627 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 138 +01/30/13 11:46:38,630 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/30/13 11:46:38,635 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,138,) method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,635 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,636 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,637 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,638 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:46:38,638 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,638 [1520] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/30/13 11:46:38,640 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,640 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:38,641 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,642 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:38,642 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,642 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:46:38,642 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,642 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:46:38,644 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:38,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,644 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:38,645 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:46:38,646 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,646 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:38,647 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,SalesOrderEditView,DeleteSalesOrder,) method ... +01/30/13 11:46:38,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,648 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,648 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,649 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:38,649 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:46:38,652 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,653 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:38,653 [1520] DEBUG index - Prepared sql query parameters : [6,22] +01/30/13 11:46:38,656 [1520] INFO index - getNextRow +01/30/13 11:46:38,657 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:38,657 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:38,657 [1520] DEBUG index - Exiting get_salesorder method ... +01/30/13 11:46:38,661 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:38,661 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:38,661 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:38,661 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:38,662 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:38,662 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:38,662 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:38,662 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:38,662 [1520] INFO index - current module is Accounts +01/30/13 11:46:38,718 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:38,718 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:38,718 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:38,718 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,719 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,719 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,719 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:38,726 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:38,727 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,728 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,728 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:38,728 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:38,729 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:38,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,729 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,729 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:38,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,730 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,730 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:38,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,731 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:38,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,731 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:38,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,732 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,732 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:38,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,733 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:38,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,733 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:38,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,734 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:38,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,734 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:38,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,735 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:38,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,735 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,736 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:38,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,736 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,737 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,737 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:38,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,738 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:38,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,738 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:38,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,738 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:38,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,739 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:38,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,739 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:38,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,740 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:38,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,740 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:38,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,740 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:38,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,741 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:38,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,741 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:38,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,742 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:38,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,742 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:38,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,743 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:38,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,743 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:38,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,744 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:38,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,744 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:38,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,745 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:38,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,745 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:38,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,746 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:38,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,746 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:38,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,746 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:38,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,747 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:38,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,747 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:38,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,748 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:38,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,748 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:38,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,749 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:38,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,749 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:38,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,750 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:38,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,750 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:38,754 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:38,754 [1520] DEBUG index - Prepared sql query parameters : [374,1,Accounts,AccountsAjax,138,2013-01-30 11:46:38] +01/30/13 11:46:38,758 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:38,758 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:38,758 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:38,758 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:38,760 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:38,760 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:38,762 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:38,762 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:38,764 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:38,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,765 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:38,765 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:38,765 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:38,765 [1520] DEBUG index - skipping headers +01/30/13 11:46:38,765 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:38,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,767 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,767 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,768 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,768 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,775 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,775 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,779 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,779 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:38,781 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,782 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,782 [1520] DEBUG index - Entering get_contacts(138) method ... +01/30/13 11:46:38,782 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,782 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:38,784 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:46:38,784 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:46:38,784 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,785 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,785 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,785 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:38,793 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,793 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,793 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,793 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,795 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/30/13 11:46:38,795 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,795 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,795 [1520] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/30/13 11:46:38,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,796 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,796 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:46:38,796 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,796 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:46:38,796 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,796 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,799 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,802 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:46:38,802 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,802 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,802 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,806 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,806 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:46:38,806 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:46:38,806 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,806 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,807 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:38,807 [1520] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/30/13 11:46:38,810 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:38,810 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 138 +01/30/13 11:46:38,813 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/30/13 11:46:38,818 [1520] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,138,) method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,818 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,819 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,821 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:46:38,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,822 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:46:38,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,824 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:46:38,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,826 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:38,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,826 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:46:38,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,828 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:46:38,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:38,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,829 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:38,831 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:38,831 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,831 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:38,832 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:38,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,834 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,834 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:46:38,834 [1520] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:46:38,838 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:38,838 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:38,838 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:38,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,839 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,839 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:38,839 [1520] DEBUG index - Prepared sql query parameters : [6,4] +01/30/13 11:46:38,841 [1520] INFO index - getNextRow +01/30/13 11:46:38,842 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:38,843 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:38,843 [1520] DEBUG index - Exiting get_contacts method ... +01/30/13 11:46:38,847 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:38,847 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:38,847 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:38,848 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:38,848 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:38,848 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:38,848 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:38,848 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:38,848 [1520] INFO index - current module is Accounts +01/30/13 11:46:38,885 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:38,885 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:38,886 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:38,886 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,886 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,886 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,887 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:38,895 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:38,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,895 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,895 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:38,895 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:38,896 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:38,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,897 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:38,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,897 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:38,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,898 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:38,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,898 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:38,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,899 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:38,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,899 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:38,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,900 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:38,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,900 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:38,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,901 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:38,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,901 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:38,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,902 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:38,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,902 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:38,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,903 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:38,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,903 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,904 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:38,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,904 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:38,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,905 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:38,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,905 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:38,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,906 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:38,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,906 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:38,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,907 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:38,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,907 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:38,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,908 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:38,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,908 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:38,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,909 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:38,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,909 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:38,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,910 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:38,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,910 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:38,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,911 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:38,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,911 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:38,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,912 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:38,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,912 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:38,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,913 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:38,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,913 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:38,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,914 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:38,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,914 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:38,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,915 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:38,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,915 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:38,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,916 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:38,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,917 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:38,916 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:38,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,917 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:38,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,917 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:38,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,918 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:38,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,918 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:38,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,919 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:38,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,919 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:38,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,920 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:38,924 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:38,924 [1520] DEBUG index - Prepared sql query parameters : [375,1,Accounts,AccountsAjax,138,2013-01-30 11:46:38] +01/30/13 11:46:38,926 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:38,926 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:38,927 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:38,927 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:38,928 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:38,929 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:38,930 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:38,930 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:38,932 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:38,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,933 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:38,933 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:38,933 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:38,933 [1520] DEBUG index - skipping headers +01/30/13 11:46:38,933 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:38,934 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,935 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:38,935 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:38,935 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,935 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,935 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,936 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,936 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:38,943 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,943 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,947 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:38,947 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:46:38,949 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:38,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:38,949 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:38,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,949 [1520] DEBUG index - Entering get_quotes(138) method ... +01/30/13 11:46:38,949 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:38,949 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:38,954 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:46:38,954 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:46:38,954 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,955 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,955 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:38,955 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:38,962 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,962 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:38,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:38,964 [1520] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/30/13 11:46:38,964 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,964 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:38,964 [1520] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/30/13 11:46:38,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:38,965 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,965 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:38,965 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:38,965 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:38,965 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:38,965 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:38,970 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:38,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:38,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:38,973 [1520] DEBUG index - Entering function initSortByField (Quotes) +01/30/13 11:46:38,973 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,973 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:38,973 [1520] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:38,977 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:38,977 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:46:38,977 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:46:38,977 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,977 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:38,978 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:38,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:38,978 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:38,978 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:38,981 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:46:39,007 [1520] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,138,) method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,007 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,008 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:39,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,010 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:46:39,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,011 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:39,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,013 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:46:39,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,015 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:46:39,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,015 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:39,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,015 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:46:39,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:39,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,017 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:39,018 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:39,019 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,019 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:39,020 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:39,020 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,020 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,021 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:39,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,022 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:46:39,022 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:46:39,025 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:39,025 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:39,025 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:39,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,026 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,026 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:39,026 [1520] DEBUG index - Prepared sql query parameters : [6,20] +01/30/13 11:46:39,028 [1520] INFO index - getNextRow +01/30/13 11:46:39,028 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:39,029 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:39,029 [1520] DEBUG index - Exiting get_quotes method ... +01/30/13 11:46:39,032 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,032 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,033 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,033 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,033 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,033 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,033 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,034 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,034 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,071 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,072 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,072 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,072 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,072 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,072 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,073 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,081 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,081 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,081 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,082 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,082 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,083 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,083 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,084 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,084 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,085 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,085 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,086 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,086 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,087 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,087 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,088 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,088 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,089 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,089 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,090 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,090 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,091 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,091 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,092 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,092 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,093 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,093 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,094 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,094 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,094 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,095 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,095 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,096 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,096 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,097 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,097 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,098 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,098 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,098 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,099 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,099 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,100 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,100 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,101 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,102 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,102 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:39,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,102 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,103 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,103 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,104 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,104 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,105 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,105 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,110 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,110 [1520] DEBUG index - Prepared sql query parameters : [376,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,112 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,112 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,113 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,113 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,114 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,115 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,117 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,117 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,118 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,119 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,119 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,119 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,119 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,120 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,122 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,122 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,122 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,122 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,122 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,122 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,122 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,123 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,129 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,133 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,133 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:46:39,135 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,135 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,135 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,135 [1520] DEBUG index - Entering get_emails(138) method ... +01/30/13 11:46:39,135 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:39,135 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:39,138 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:46:39,138 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:46:39,138 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:46:39,138 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,138 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,139 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,139 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:39,143 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,143 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,143 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:46:39,143 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,144 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,145 [1520] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/30/13 11:46:39,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,146 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,146 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:39,146 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,146 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:39,146 [1520] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/30/13 11:46:39,146 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:39,148 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:39,148 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:39,151 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (138) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 138 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:39,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,154 [1520] DEBUG index - Entering function initSortByField (Emails) +01/30/13 11:46:39,154 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,155 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:39,155 [1520] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:39,157 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:39,158 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:46:39,158 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:46:39,158 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:46:39,158 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,158 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,158 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:46:39,158 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:39,158 [1520] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/30/13 11:46:39,159 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,159 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:39,159 [1520] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/30/13 11:46:39,161 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:39,161 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/30/13 11:46:39,164 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/30/13 11:46:39,170 [1520] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,138,) method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,170 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,171 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,173 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:39,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,174 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:39,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,175 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:46:39,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,177 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:39,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,177 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:46:39,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,179 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:46:39,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:39,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,179 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:46:39,179 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:39,180 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,180 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:39,180 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:39,180 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,181 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,182 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,182 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:39,182 [1520] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/30/13 11:46:39,186 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,186 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:39,186 [1520] DEBUG index - Prepared sql query parameters : [6,10] +01/30/13 11:46:39,189 [1520] INFO index - getNextRow +01/30/13 11:46:39,189 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:39,190 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:39,190 [1520] DEBUG index - Exiting get_emails method ... +01/30/13 11:46:39,195 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,195 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,195 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,196 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,196 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,196 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,196 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,196 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,197 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,245 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,245 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,245 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,245 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,246 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,246 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,255 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,255 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,255 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,255 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,256 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,257 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,257 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,258 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,258 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,259 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,259 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,260 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,260 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,261 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,262 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,262 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,263 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,263 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,264 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,264 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,265 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,265 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,266 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,266 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,267 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,267 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,268 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,268 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,269 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,269 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,270 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,269 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:39,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,270 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,271 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,271 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,272 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,272 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,273 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,273 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,274 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,274 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,275 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,276 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,276 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,277 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,277 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,278 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,278 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,279 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,279 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,280 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,280 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,281 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,286 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,286 [1520] DEBUG index - Prepared sql query parameters : [377,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,289 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,289 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,289 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,289 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,291 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,291 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,293 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,293 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,295 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,295 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,295 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,296 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,296 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,296 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,296 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,298 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,298 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,298 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,299 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,299 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,306 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,306 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,306 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,310 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:39,313 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,313 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,313 [1520] DEBUG index - Entering get_history(138) method ... +01/30/13 11:46:39,313 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:39,313 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:39,316 [1520] DEBUG index - Exiting get_history method ... +01/30/13 11:46:39,316 [1520] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0,138) method ... +01/30/13 11:46:39,317 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:39,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,318 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:39,318 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,318 [1520] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/30/13 11:46:39,345 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,345 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,345 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,346 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,346 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,346 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,346 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,346 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,346 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,393 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,393 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,393 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,393 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,394 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,394 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,394 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,403 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,403 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,403 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,404 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,404 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,405 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,405 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,406 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,406 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,407 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,408 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,408 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,409 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,409 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,410 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,410 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:39,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,410 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,411 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,411 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,412 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,412 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,413 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,413 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,414 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,414 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,415 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,415 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,416 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,416 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,417 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,417 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,418 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,418 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,419 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,419 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,420 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,420 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,421 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,421 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,422 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,422 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,423 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,423 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,424 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,424 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,425 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,426 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,426 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,427 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,427 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,428 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,428 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,433 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,433 [1520] DEBUG index - Prepared sql query parameters : [378,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,436 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,436 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,436 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,437 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,438 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,439 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,441 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,441 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,442 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,443 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,443 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,443 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,443 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,444 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,446 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,446 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,446 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,446 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,446 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,447 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,454 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,454 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,457 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,458 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:46:39,460 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,460 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,461 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,461 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,462 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:39,462 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:39,464 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:46:39,464 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:46:39,464 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:46:39,464 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,464 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,464 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,465 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:39,468 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,468 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,468 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,468 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:46:39,468 [1520] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/30/13 11:46:39,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,469 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,469 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:39,469 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,469 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:39,469 [1520] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/30/13 11:46:39,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,470 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,470 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:46:39,470 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,470 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:46:39,470 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:39,470 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:39,473 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:39,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,476 [1520] DEBUG index - Entering function initSortByField (Documents) +01/30/13 11:46:39,476 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,476 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,476 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:39,476 [1520] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:39,478 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:39,478 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:46:39,479 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:46:39,479 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:46:39,479 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,479 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,479 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:46:39,479 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,480 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:39,480 [1520] DEBUG index - Prepared sql query parameters : [8,%title%] +01/30/13 11:46:39,482 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:39,483 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=138 +01/30/13 11:46:39,485 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/30/13 11:46:39,490 [1520] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,138,) method ... +01/30/13 11:46:39,490 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:46:39,490 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:39,491 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,491 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,491 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,492 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:39,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,493 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:46:39,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:39,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,495 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:46:39,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:39,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,497 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:46:39,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:39,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,498 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:39,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:39,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,500 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:46:39,500 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:39,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,501 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:39,501 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:39,502 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,502 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,503 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,503 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:39,503 [1520] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/30/13 11:46:39,506 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:39,506 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:39,506 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:39,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,507 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,507 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:39,507 [1520] DEBUG index - Prepared sql query parameters : [6,8] +01/30/13 11:46:39,512 [1520] INFO index - getNextRow +01/30/13 11:46:39,513 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:39,513 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:39,517 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,517 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,517 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,518 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,518 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,518 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,518 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,518 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,518 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,557 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,557 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,557 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,557 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,558 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,558 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,558 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,558 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,566 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,566 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,566 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,566 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,567 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,567 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,568 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,569 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,569 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,570 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,570 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,571 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,571 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,572 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,572 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,573 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,573 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,574 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,574 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,575 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,575 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,576 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,576 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,577 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,577 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,578 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,578 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,579 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,580 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,580 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,580 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,581 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,581 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,582 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,582 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,583 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,583 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,584 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:39,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,584 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,584 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,585 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,586 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,586 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,587 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,587 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,588 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,588 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,589 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,590 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,590 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,591 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,591 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,592 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,592 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,597 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,597 [1520] DEBUG index - Prepared sql query parameters : [379,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,601 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,601 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,601 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,601 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,603 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,603 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,605 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,605 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,607 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,607 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,607 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,608 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,608 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,608 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,610 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,610 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,610 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,610 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,611 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,611 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,618 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,618 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,622 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,622 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:39,624 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,624 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,625 [1520] DEBUG index - Entering get_tickets(138) method ... +01/30/13 11:46:39,625 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:39,625 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:46:39,627 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:46:39,627 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:46:39,628 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:46:39,628 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,628 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,628 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:46:39,633 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,634 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,634 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:46:39,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,635 [1520] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/30/13 11:46:39,635 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,636 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:39,636 [1520] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/30/13 11:46:39,636 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,637 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,637 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:39,637 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:39,637 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:39,637 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:39,637 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:39,639 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:39,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,642 [1520] DEBUG index - Entering function initSortByField (HelpDesk) +01/30/13 11:46:39,642 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,643 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:39,643 [1520] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:39,646 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:39,646 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:46:39,646 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:46:39,646 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:46:39,646 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,646 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,646 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,646 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,648 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:39,648 [1520] DEBUG index - Prepared sql query parameters : [13,%title%] +01/30/13 11:46:39,650 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:39,650 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 +01/30/13 11:46:39,654 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/30/13 11:46:39,658 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,138,) method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,658 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,660 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,660 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,661 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:46:39,663 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,663 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:39,664 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,664 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:39,665 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,665 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:46:39,666 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,667 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:46:39,668 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,668 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:46:39,668 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:39,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,669 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:46:39,670 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:39,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,671 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:39,671 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:39,672 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,672 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,673 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,673 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:39,673 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:46:39,677 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,677 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:39,678 [1520] DEBUG index - Prepared sql query parameters : [6,13] +01/30/13 11:46:39,681 [1520] INFO index - getNextRow +01/30/13 11:46:39,681 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:39,682 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:39,682 [1520] DEBUG index - Exiting get_tickets method ... +01/30/13 11:46:39,686 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,686 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,686 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,687 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,687 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,687 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,687 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,687 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,687 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,743 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,743 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,743 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,743 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,744 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,744 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,744 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,752 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,752 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,752 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,753 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,753 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,754 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,754 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,755 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,755 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,756 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,756 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,756 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,757 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,757 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,758 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,758 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,759 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,759 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,760 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,760 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,761 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,761 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,761 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,762 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,762 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,763 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,763 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,764 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,765 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,765 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,766 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,766 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,767 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,768 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,768 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,769 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,769 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,770 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,770 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,771 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,771 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,771 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,772 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,772 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,773 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,773 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,774 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,774 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,786 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,786 [1520] DEBUG index - Prepared sql query parameters : [380,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,790 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,790 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,790 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,790 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,792 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,792 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,794 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,794 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,795 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,796 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,796 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,796 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,796 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,796 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,798 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,799 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,799 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,799 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,799 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,799 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,806 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,806 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,810 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,810 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:46:39,812 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,812 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,813 [1520] DEBUG index - Entering get_products(138) method ... +01/30/13 11:46:39,813 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:39,813 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:46:39,815 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:46:39,815 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:46:39,815 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:46:39,815 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,815 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,815 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,816 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:46:39,822 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,822 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,822 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,822 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:46:39,822 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,823 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,824 [1520] DEBUG index - Entering isPermitted(Products,4,) method ... +01/30/13 11:46:39,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,824 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,824 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:39,824 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,825 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:39,825 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:39,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,828 [1520] DEBUG index - Entering function initSortByField (Products) +01/30/13 11:46:39,828 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,828 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:39,828 [1520] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:39,831 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:39,831 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:46:39,831 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:46:39,831 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:46:39,831 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,832 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,832 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:46:39,832 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,832 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:39,833 [1520] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/30/13 11:46:39,833 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,833 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:39,833 [1520] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/30/13 11:46:39,835 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:39,836 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:39,838 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/30/13 11:46:39,843 [1520] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,138,) method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,843 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,844 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:39,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,846 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:46:39,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:39,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,847 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:46:39,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:39,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,849 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:46:39,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:39,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,851 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:46:39,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:39,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,852 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:46:39,854 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:39,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,854 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:39,855 [1520] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:39,855 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,855 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,856 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,857 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:39,857 [1520] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/30/13 11:46:39,860 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,860 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:39,861 [1520] DEBUG index - Prepared sql query parameters : [6,14] +01/30/13 11:46:39,863 [1520] INFO index - getNextRow +01/30/13 11:46:39,864 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:39,864 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:39,864 [1520] DEBUG index - Exiting get_products method ... +01/30/13 11:46:39,868 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:39,868 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:39,868 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:39,868 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:39,868 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:39,869 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:39,869 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:39,869 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:39,869 [1520] INFO index - current module is Accounts +01/30/13 11:46:39,905 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:39,905 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:39,905 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:39,905 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,906 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,906 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,906 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:39,914 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:39,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,915 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,915 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:39,915 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:39,916 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:39,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,916 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:39,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,917 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:39,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,917 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:39,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,918 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:39,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,918 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:39,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,919 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:39,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,919 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:39,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,920 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:39,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,920 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:39,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,921 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:39,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,921 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:39,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,922 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:39,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,922 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:39,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,923 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:39,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,923 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:39,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,924 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:39,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,924 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:39,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,925 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:39,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,925 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:39,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,926 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,926 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,927 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:39,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,928 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:39,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,928 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:39,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,929 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:39,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,929 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:39,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,930 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:39,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,930 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:39,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,931 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:39,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,931 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:39,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,932 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:39,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,932 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:39,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,933 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:39,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,933 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:39,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,934 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:39,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,934 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:39,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,935 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:39,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,935 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:39,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,936 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:39,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,936 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:39,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,937 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:39,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,937 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:39,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,938 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:39,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,938 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:39,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,939 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:39,947 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:39,947 [1520] DEBUG index - Prepared sql query parameters : [381,1,Accounts,AccountsAjax,138,2013-01-30 11:46:39] +01/30/13 11:46:39,950 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:39,950 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:39,950 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:39,950 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:39,952 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:39,952 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:39,954 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:39,954 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:39,955 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:39,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,956 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:39,956 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:39,956 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:39,957 [1520] DEBUG index - skipping headers +01/30/13 11:46:39,957 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:39,957 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,959 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:39,959 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:39,959 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,959 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,959 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,959 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:39,966 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,967 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,970 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:39,970 [1520] DEBUG index - Prepared sql query parameters : [87] +01/30/13 11:46:39,973 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:39,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:39,973 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:39,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,973 [1520] DEBUG index - Entering get_campaigns(138) method ... +01/30/13 11:46:39,973 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:39,973 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:46:39,975 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:46:39,976 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:46:39,976 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,976 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,976 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:39,976 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:46:39,981 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,982 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,982 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:39,982 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:39,983 [1520] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/30/13 11:46:39,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:39,983 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,984 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:39,984 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:39,984 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:39,984 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:39,984 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:39,986 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:39,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:39,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:39,989 [1520] DEBUG index - Entering function initSortByField (Campaigns) +01/30/13 11:46:39,989 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,990 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:39,990 [1520] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:39,993 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:39,993 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:46:39,994 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:46:39,994 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,994 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:39,994 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:39,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:39,994 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:39,995 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 +01/30/13 11:46:39,997 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/30/13 11:46:40,001 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,138,) method ... +01/30/13 11:46:40,001 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:46:40,001 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:40,001 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:40,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,002 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,002 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,003 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:40,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,004 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:46:40,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,006 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:46:40,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,008 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:46:40,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,010 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:46:40,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,011 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:46:40,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:40,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,013 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:40,014 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:40,015 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,015 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:40,016 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:40,016 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,016 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,017 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:40,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,017 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:40,017 [1520] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:46:40,020 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,021 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:40,021 [1520] DEBUG index - Prepared sql query parameters : [6,26] +01/30/13 11:46:40,024 [1520] INFO index - getNextRow +01/30/13 11:46:40,025 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:40,025 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:40,025 [1520] DEBUG index - Exiting get_campaigns method ... +01/30/13 11:46:40,028 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:40,028 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:40,028 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:40,029 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:40,029 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:40,029 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:40,029 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:40,029 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:40,029 [1520] INFO index - current module is Accounts +01/30/13 11:46:40,065 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:40,065 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:40,065 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:40,065 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,065 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,066 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,066 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:40,074 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,075 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,075 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:40,075 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:40,076 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:40,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,076 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:40,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,077 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:40,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,077 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:40,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,078 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:40,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,078 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:40,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,079 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:40,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,079 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:40,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,080 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:40,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,080 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:40,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,081 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:40,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,081 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:40,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,081 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:40,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,082 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:40,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,083 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:40,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,083 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:40,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,083 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:40,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,084 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:40,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,084 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:40,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,085 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:40,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,085 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:40,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,086 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:40,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,086 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,087 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:40,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,088 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:40,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,088 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:40,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,089 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:40,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,089 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:40,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,090 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:40,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,090 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:40,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,091 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:40,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,091 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:40,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,091 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:40,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,092 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:40,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,092 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:40,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,093 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:40,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,093 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:40,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,094 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:40,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,094 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:40,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,095 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:40,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,095 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:40,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,096 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:40,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,096 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:40,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,097 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:40,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,097 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:40,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,097 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:40,105 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:40,105 [1520] DEBUG index - Prepared sql query parameters : [382,1,Accounts,AccountsAjax,138,2013-01-30 11:46:40] +01/30/13 11:46:40,109 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:40,109 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:40,109 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:40,109 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:40,111 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:40,111 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:40,113 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:40,113 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:40,115 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:40,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:40,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,115 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:40,115 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:40,116 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:40,116 [1520] DEBUG index - skipping headers +01/30/13 11:46:40,116 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:40,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,118 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:40,118 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:40,118 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,119 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,119 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,119 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:40,126 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,126 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,129 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:40,130 [1520] DEBUG index - Prepared sql query parameters : [92] +01/30/13 11:46:40,132 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:40,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,132 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,133 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:40,133 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:46:40,137 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:46:40,137 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:46:40,137 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,137 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,137 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,137 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:46:40,142 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,142 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,142 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:40,142 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:46:40,142 [1520] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/30/13 11:46:40,148 [1520] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/30/13 11:46:40,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,149 [1520] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/30/13 11:46:40,149 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,150 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:40,150 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:40,150 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,151 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:40,151 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:40,151 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,152 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:40,152 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:40,152 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:40,154 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:40,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:40,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,157 [1520] DEBUG index - Entering function initSortByField (ServiceContracts) +01/30/13 11:46:40,157 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,157 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:40,157 [1520] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:40,160 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:40,160 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:46:40,160 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:46:40,160 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,160 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,161 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:40,161 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,161 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:40,161 [1520] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/30/13 11:46:40,162 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,162 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:40,162 [1520] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/30/13 11:46:40,164 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:40,164 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:40,167 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/30/13 11:46:40,172 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,138,) method ... +01/30/13 11:46:40,172 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:46:40,172 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:40,172 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,173 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,173 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,174 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,175 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,175 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:40,175 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,175 [1520] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/30/13 11:46:40,177 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,177 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:46:40,177 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,177 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:46:40,179 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,179 [1520] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/30/13 11:46:40,179 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,179 [1520] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/30/13 11:46:40,179 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,179 [1520] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/30/13 11:46:40,180 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,180 [1520] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/30/13 11:46:40,181 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,181 [1520] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/30/13 11:46:40,182 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:40,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,182 [1520] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/30/13 11:46:40,183 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:40,184 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,184 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:40,185 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:40,185 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,185 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,186 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,186 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:40,187 [1520] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/30/13 11:46:40,189 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,190 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:40,190 [1520] DEBUG index - Prepared sql query parameters : [6,37] +01/30/13 11:46:40,193 [1520] INFO index - getNextRow +01/30/13 11:46:40,193 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:40,193 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:40,198 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:40,198 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:40,198 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:40,199 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:40,199 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:40,199 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:40,199 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:40,199 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:40,199 [1520] INFO index - current module is Accounts +01/30/13 11:46:40,244 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:40,244 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:40,244 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:40,245 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,245 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,245 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,245 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:40,253 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,253 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,253 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:40,254 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:40,254 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:40,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,255 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:40,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,255 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:40,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,256 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:40,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,256 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:40,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,257 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:40,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,258 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:40,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,258 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:40,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,259 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:40,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,259 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:40,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,260 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:40,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,260 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:40,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,261 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:40,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,261 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:40,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,262 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:40,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,262 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:40,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,263 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:40,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,263 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:40,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,264 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:40,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,264 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:40,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,265 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:40,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,265 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,266 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:40,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,267 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:40,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,267 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:40,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,268 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:40,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,268 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:40,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,269 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:40,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,269 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:40,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,270 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:40,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,270 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:40,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,271 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:40,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,271 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:40,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,272 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:40,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,272 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:40,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,273 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:40,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,273 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:40,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,274 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:40,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,275 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:40,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,275 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:40,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,276 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:40,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,276 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:40,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,277 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:40,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,277 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:40,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,278 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:40,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,278 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:40,286 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:40,286 [1520] DEBUG index - Prepared sql query parameters : [383,1,Accounts,AccountsAjax,138,2013-01-30 11:46:40] +01/30/13 11:46:40,290 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:40,290 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:40,290 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:40,290 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:40,292 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:40,292 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:40,294 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:40,294 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:40,296 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:40,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:40,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,296 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:40,297 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:40,297 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:40,297 [1520] DEBUG index - skipping headers +01/30/13 11:46:40,297 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:40,297 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,299 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:40,299 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:40,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,300 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,300 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:40,307 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,307 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:40,310 [1520] DEBUG index - Prepared sql query parameters : [108] +01/30/13 11:46:40,313 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:40,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,313 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,313 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,313 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,314 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:40,314 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:46:40,318 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:46:40,318 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:46:40,318 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,319 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,319 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,319 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:46:40,323 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,323 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,323 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,324 [1520] DEBUG index - Entering isPermitted(Services,4,) method ... +01/30/13 11:46:40,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,324 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:40,324 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:40,325 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:40,325 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,325 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:40,325 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:40,325 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:40,327 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138), ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:40,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:40,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,330 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 11:46:40,330 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,330 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,330 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:40,330 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:40,333 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:40,333 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:46:40,333 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:46:40,333 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,334 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,334 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,334 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,334 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,334 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:46:40,335 [1520] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/30/13 11:46:40,335 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,335 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:40,335 [1520] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/30/13 11:46:40,340 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:40,340 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) +01/30/13 11:46:40,343 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/30/13 11:46:40,367 [1520] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,138,) method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,367 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,369 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,369 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 11:46:40,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,370 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:46:40,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,371 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 11:46:40,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,373 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:46:40,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:40,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,375 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:46:40,376 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:40,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,377 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:40,378 [1520] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:40,378 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,378 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,379 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,380 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:40,380 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/30/13 11:46:40,383 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:40,383 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:40,384 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:40,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,384 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,384 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:40,384 [1520] DEBUG index - Prepared sql query parameters : [6,38] +01/30/13 11:46:40,387 [1520] INFO index - getNextRow +01/30/13 11:46:40,389 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:40,389 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:40,397 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:40,397 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:40,397 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:40,398 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:40,398 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:40,399 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:40,399 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:40,399 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:40,399 [1520] INFO index - current module is Accounts +01/30/13 11:46:40,451 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:40,451 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:40,451 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:40,451 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,452 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,452 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,452 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:40,460 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:40,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,461 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,461 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:40,461 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:40,462 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:40,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,462 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:40,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,463 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:40,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,463 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:40,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,464 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:40,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,464 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:40,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,465 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:40,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,465 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:40,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,466 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:40,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,466 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:40,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,467 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:40,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,467 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:40,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,468 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:40,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,469 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:40,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,469 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:40,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,470 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:40,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,470 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:40,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,471 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:40,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,471 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:40,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,472 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:40,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,472 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:40,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,473 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:40,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,473 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:40,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,474 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:40,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,474 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:40,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,474 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:40,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,475 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:40,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,475 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:40,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,476 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:40,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,476 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:40,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,477 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:40,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,477 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:40,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,478 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:40,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,478 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:40,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,479 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:40,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,479 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:40,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,480 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:40,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,480 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:40,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,481 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:40,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,481 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:40,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,482 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:40,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,482 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:40,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,483 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:40,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,483 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:40,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,484 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:40,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,484 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:40,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,485 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:40,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,485 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:40,490 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:40,490 [1520] DEBUG index - Prepared sql query parameters : [384,1,Accounts,AccountsAjax,138,2013-01-30 11:46:40] +01/30/13 11:46:40,493 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:40,494 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:40,494 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:40,494 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:40,495 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:40,496 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:40,497 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:40,498 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:40,499 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:40,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:40,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:40,500 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:40,500 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:40,500 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:40,500 [1520] DEBUG index - skipping headers +01/30/13 11:46:40,500 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:40,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:40,502 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:40,502 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:40,502 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,503 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,503 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,503 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:40,510 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,510 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,510 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,514 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:40,514 [1520] DEBUG index - Prepared sql query parameters : [114] +01/30/13 11:46:40,516 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:40,516 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:40,516 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:40,516 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,516 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:40,516 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:40,518 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:40,518 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:46:40,520 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:46:40,520 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:46:40,521 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:40,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,521 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:40,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,521 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:40,521 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:46:40,527 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:40,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:40,528 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:40,528 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:46:40,528 [1520] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/30/13 11:46:43,707 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:43,838 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:43,838 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:43,839 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:43,839 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:43,839 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:46:43,839 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:46:43,839 [1520] DEBUG index - in CalendarAjax +01/30/13 11:46:43,840 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:46:43,840 [1520] INFO index - current module is Calendar +01/30/13 11:46:43,889 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:43,889 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:43,889 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:43,889 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:43,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:43,890 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:43,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:43,890 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:43,890 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:43,899 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:43,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:43,899 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:43,899 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:43,899 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:43,900 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:43,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,900 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:43,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,901 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:43,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,901 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:43,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,902 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:43,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,902 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:43,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,902 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:43,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,903 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:43,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,903 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:43,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,904 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:43,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,904 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:43,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,905 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:43,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,905 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:43,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,906 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:43,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,906 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:43,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,906 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:43,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,907 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:43,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,907 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,908 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,908 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:43,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,909 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:43,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,909 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:43,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,909 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,910 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:43,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,911 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:43,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,911 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:43,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,912 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:43,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,912 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:43,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,913 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:43,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,913 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:43,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,914 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:43,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,914 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:43,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,914 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:43,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,915 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:43,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,915 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:43,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,916 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:43,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,916 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:43,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,917 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:43,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,917 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:43,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,917 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:43,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,918 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:43,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,918 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:43,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,919 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:43,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,919 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:43,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,920 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:43,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:43,920 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:43,920 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:43,921 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:43,921 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:43,921 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:43,922 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:43,923 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:43,924 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:43,925 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:43,926 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:43,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:43,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:43,927 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:43,927 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:43,927 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:43,927 [1520] DEBUG index - skipping headers +01/30/13 11:46:43,928 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:46:43,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:43,933 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:43,933 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:46:43,933 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:46:43,933 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:46:43,938 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:47')) +01/30/13 11:46:43,941 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:46:57,298 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:57,427 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:57,427 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:57,427 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:57,428 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:57,428 [1520] DEBUG index - array ( + 'module' => 'Quotes', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Accounts', + 'RLreturn_module' => 'Accounts', + 'allselectedboxes' => '', + 'return_action' => 'CallRelatedList', + 'return_id' => '138', + 'parent_id' => '138', + 'RLparent_id' => '138', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'account_id' => '138', + 'pagenum' => '1', + 'button' => '新增 报价单', + 'activity_mode' => '', + 'email_directing_module' => '', + 'record' => '', + 'createmode' => 'link', + 'sc_related_to' => '138', + 'sc_related_to_type' => 'Accounts', +) +01/30/13 11:46:57,428 [1520] INFO index - About to take action EditView +01/30/13 11:46:57,428 [1520] DEBUG index - in EditView +01/30/13 11:46:57,428 [1520] INFO index - current page is modules/Quotes/EditView.php +01/30/13 11:46:57,429 [1520] INFO index - current module is Quotes +01/30/13 11:46:57,478 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:57,478 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:57,478 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:57,478 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:57,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,479 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:57,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,479 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:57,479 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:57,491 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:57,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,492 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:57,492 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:57,492 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:57,492 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:57,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,493 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:57,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,493 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:57,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,494 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:57,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,494 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:57,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,495 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:57,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,495 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:57,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,496 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:57,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,496 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:57,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,496 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:57,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,497 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:57,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,497 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:57,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,498 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:57,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,498 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:57,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,499 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:57,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,499 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:57,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,500 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:57,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,500 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:57,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,500 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:57,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,501 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:57,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,501 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:57,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,502 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:57,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,502 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:57,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:57,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,504 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:57,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,504 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:57,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,504 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:57,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,505 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:57,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,505 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:57,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,506 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:57,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,506 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,507 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:57,508 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,508 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:57,508 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,508 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:57,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,509 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:57,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,509 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,510 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:57,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,511 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:57,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,511 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:57,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,512 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:57,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,512 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:57,513 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,513 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:57,517 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:57,518 [1520] DEBUG index - Prepared sql query parameters : [385,1,Quotes,EditView,,2013-01-30 11:46:57] +01/30/13 11:46:57,520 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:57,521 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:57,521 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:57,521 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:57,522 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:57,523 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:57,525 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:57,525 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:57,526 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:57,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,527 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:57,527 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:57,527 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:57,527 [1520] DEBUG index - including headers +01/30/13 11:46:57,527 [1520] DEBUG index - Entering getParentTabFromModule(Quotes) method ... +01/30/13 11:46:57,528 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:57,531 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,531 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,533 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:46:57,534 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:46:57,534 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,534 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:46:57,535 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,535 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:46:57,535 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,535 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:46:57,535 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,536 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:46:57,536 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,536 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:46:57,536 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,536 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:46:57,537 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,537 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:46:57,537 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:57,537 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:46:57,537 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:46:57,538 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:46:57,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:57,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,547 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:46:57,547 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:57,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:57,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,548 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:46:57,548 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:46:57,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:57,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,550 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:46:57,550 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:57,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:57,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,551 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:46:57,551 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:57,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,552 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:57,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,552 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:46:57,552 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:46:57,553 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:57,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,554 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:46:57,554 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:57,554 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:57,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,555 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:46:57,555 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:57,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:46:57,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,556 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:46:57,556 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:46:57,556 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,556 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:57,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,557 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:46:57,557 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:57,557 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:57,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,558 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:46:57,558 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:57,559 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:57,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,559 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:46:57,559 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:57,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,560 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:57,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,560 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:46:57,561 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:46:57,561 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:57,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,562 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:46:57,562 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:57,562 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:57,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,563 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:46:57,563 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:46:57,563 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,563 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:57,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,564 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:46:57,564 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:46:57,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,564 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:57,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,565 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:46:57,565 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:46:57,565 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,566 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:57,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,567 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:57,567 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:57,567 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:57,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,568 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:46:57,568 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:57,568 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:57,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,569 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:46:57,569 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:46:57,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,569 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:46:57,569 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:46:57) method ... +01/30/13 11:46:57,570 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:57,570 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:46:57) method ... +01/30/13 11:46:57,570 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:57,570 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:57,570 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:57,571 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:46:57,572 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:46:57,572 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:46:57,575 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,575 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,576 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,577 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,578 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,579 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,580 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,581 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,582 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,583 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,584 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,585 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,585 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,585 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,585 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:46:57,589 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:46:57,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,589 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:46:57,589 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:57,592 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:57,592 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:57,593 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:57,593 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,593 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:57,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,595 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:57,595 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,595 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:57,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,595 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,596 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,597 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,598 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:57,599 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,599 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:57,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,599 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:46:57,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,600 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:46:57,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,600 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:46:57,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,602 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:46:57,602 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,602 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:57,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,602 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:46:57,603 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,603 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:57,603 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,603 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:46:57,603 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,603 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:57,604 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:57,604 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:57,607 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:57,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,608 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:46:57,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,608 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:46:57,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,609 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:46:57,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,609 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:46:57,610 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,610 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:57,610 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:46:57,612 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:46:57,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,612 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:46:57,613 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:46:57,616 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:46:57,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,621 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:57,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:57,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,622 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:46:57,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:57,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,622 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:46:57,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:57,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,622 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:57,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:57,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,622 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:57,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:57,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,623 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:57,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:57,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,623 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:57,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:57,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,624 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:57,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:57,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,624 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:57,624 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:57,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,624 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:57,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:46:57,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,625 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:46:57,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,625 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:57,627 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:46:57,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,627 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:46:57,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:46:57,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,628 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:46:57,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:46:57,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,628 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:46:57,628 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:46:57,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,629 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:46:57,629 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:46:57,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,629 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:46:57,629 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:57,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,630 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:46:57,630 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:46:57,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,630 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:46:57,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:46:57,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,631 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:46:57,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:46:57,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,631 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:46:57,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:57,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,632 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:57,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:57,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,632 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:57,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:57,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,632 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:46:57,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:57,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,633 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:46:57,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:57,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,633 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:46:57,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:46:57,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,634 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:46:57,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:57,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,634 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:57,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:57,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,634 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:57,634 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:46:57,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,635 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:46:57,635 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:57,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,635 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:46:57,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:57,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,636 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:46:57,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:57,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,636 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:57,636 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:57,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,637 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:57,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,637 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:57,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,638 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:46:57,638 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:57,639 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:57,659 [1520] DEBUG index - Inside Quote EditView +01/30/13 11:46:57,660 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:46:57,660 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:46:57,660 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,660 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,660 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:57,661 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:57,670 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:46:57,670 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:46:57,671 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:57,673 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:46:57,673 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:46:57,673 [1520] DEBUG index - Entering setObjectValuesFromRequest(Quotes) method ... +01/30/13 11:46:57,673 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:46:57,673 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:57,673 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:57,674 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:57,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,674 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:57,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,674 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:57,674 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:57,683 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:57,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,683 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:57,683 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:46:57,683 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,687 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:46:57,687 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,690 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:46:57,690 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,692 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:46:57,692 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,694 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:46:57,694 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,696 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:57,696 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,697 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:46:57,697 [1520] DEBUG index - Accountid Id from the request is 138 +01/30/13 11:46:57,698 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:46:57,698 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:46:57,698 [1520] DEBUG index - Entering getBlocks(Quotes,create_view,,Array,) method ... +01/30/13 11:46:57,698 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,698 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,698 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:46:57,698 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:57,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,701 [1520] DEBUG index - function getTranslatedString(LBL_QUOTE_INFORMATION) - translated to (报价单信息) +01/30/13 11:46:57,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,701 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:46:57,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,701 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:57,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,702 [1520] DEBUG index - function getTranslatedString(LBL_RELATED_PRODUCTS) - translated to (系列产品) +01/30/13 11:46:57,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,702 [1520] DEBUG index - function getTranslatedString(LBL_TERMS_INFORMATION) - translated to (条款与条件) +01/30/13 11:46:57,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,702 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:57,702 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:46:57,703 [1520] DEBUG index - Prepared sql query parameters : [20,49,50,51,52,53,54] +01/30/13 11:46:57,711 [1520] DEBUG index - Entering getBlockInformation(Quotes,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +20,315,subject,vtiger_quotes,1,2,subject,Subject,1,0,,100,1,49,1,V~M,1,,BAS,1, +20,316,potentialid,vtiger_quotes,1,76,potential_id,Potential Name,1,2,,100,2,49,1,I~O,3,,BAS,1, +20,314,quote_no,vtiger_quotes,1,4,quote_no,Quote No,1,0,,100,3,49,1,V~O,3,,BAS,0, +20,317,quotestage,vtiger_quotes,1,15,quotestage,Quote Stage,1,2,,100,4,49,1,V~M,3,,BAS,1, +20,318,validtill,vtiger_quotes,1,5,validtill,Valid Till,1,2,,100,5,49,1,D~O,3,,BAS,1, +20,319,contactid,vtiger_quotes,1,57,contact_id,Contact Name,1,2,,100,6,49,1,V~O,3,,BAS,1, +20,320,carrier,vtiger_quotes,1,15,carrier,Carrier,1,2,,100,8,49,1,V~O,3,,BAS,1, +20,322,shipping,vtiger_quotes,1,1,shipping,Shipping,1,2,,100,10,49,1,V~O,3,,BAS,1, +20,323,inventorymanager,vtiger_quotes,1,77,assigned_user_id1,Inventory Manager,1,2,,100,11,49,1,I~O,3,,BAS,1, +20,330,accountid,vtiger_quotes,1,73,account_id,Account Name,1,2,,100,16,49,1,I~M,3,,BAS,1, +20,331,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,17,49,1,V~M,3,,BAS,1, +20,337,bill_street,vtiger_quotesbillads,1,24,bill_street,Billing Address,1,2,,100,1,51,1,V~M,3,,BAS,1, +20,338,ship_street,vtiger_quotesshipads,1,24,ship_street,Shipping Address,1,2,,100,2,51,1,V~M,3,,BAS,1, +20,347,bill_pobox,vtiger_quotesbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,51,1,V~O,3,,BAS,1, +20,348,ship_pobox,vtiger_quotesshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,51,1,V~O,3,,BAS,1, +20,339,bill_city,vtiger_quotesbillads,1,1,bill_city,Billing City,1,2,,100,5,51,1,V~O,3,,BAS,1, +20,340,ship_city,vtiger_quotesshipads,1,1,ship_city,Shipping City,1,2,,100,6,51,1,V~O,3,,BAS,1, +20,341,bill_state,vtiger_quotesbillads,1,1,bill_state,Billing State,1,2,,100,7,51,1,V~O,3,,BAS,1, +20,342,ship_state,vtiger_quotesshipads,1,1,ship_state,Shipping State,1,2,,100,8,51,1,V~O,3,,BAS,1, +20,343,bill_code,vtiger_quotesbillads,1,1,bill_code,Billing Code,1,2,,100,9,51,1,V~O,3,,BAS,1, +20,344,ship_code,vtiger_quotesshipads,1,1,ship_code,Shipping Code,1,2,,100,10,51,1,V~O,3,,BAS,1, +20,345,bill_country,vtiger_quotesbillads,1,1,bill_country,Billing Country,1,2,,100,11,51,1,V~O,3,,BAS,1, +20,346,ship_country,vtiger_quotesshipads,1,1,ship_country,Shipping Country,1,2,,100,12,51,1,V~O,3,,BAS,1, +20,350,terms_conditions,vtiger_quotes,1,19,terms_conditions,Terms & Conditions,1,2,,100,1,53,1,V~O,3,,ADV,1, +20,349,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,54,1,V~O,3,,ADV,1, +,Array,20,Array) method ... +01/30/13 11:46:57,711 [1520] DEBUG index - Entering getOutputHtml(2,subject,Subject,100,Array,1,Quotes) method ... +01/30/13 11:46:57,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,712 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:57,712 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,712 [1520] DEBUG index - Entering getOutputHtml(76,potential_id,Potential Name,100,Array,1,Quotes) method ... +01/30/13 11:46:57,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,713 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:46:57,713 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,713 [1520] DEBUG index - Entering getOutputHtml(4,quote_no,Quote No,100,Array,1,Quotes) method ... +01/30/13 11:46:57,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,714 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:46:57,714 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,715 [1520] DEBUG index - Entering getOutputHtml(15,quotestage,Quote Stage,100,Array,1,Quotes) method ... +01/30/13 11:46:57,715 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:57,715 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:57,715 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:46:57,715 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:46:57,716 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:46:57,717 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:46:57,718 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:46:57,718 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:46:57,720 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:57,720 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:57,720 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,720 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:57,724 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 385 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #483 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #483 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:57,725 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,725 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,728 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,728 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:57,728 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,728 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:57,732 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,732 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:57,732 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,732 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:57,736 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,736 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:57,736 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:57,736 [1520] DEBUG index - Prepared sql query parameters : [quotestage] +01/30/13 11:46:57,738 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct quotestage FROM vtiger_quotestage inner join vtiger_role2picklist on vtiger_quotestage.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:57,738 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:57,765 [1520] DEBUG index - function getTranslatedString(Created) - translated to (已创建) +01/30/13 11:46:57,766 [1520] DEBUG index - function getTranslatedString(Delivered) - translated to (已发送) +01/30/13 11:46:57,766 [1520] DEBUG index - function getTranslatedString(Reviewed) - translated to (已审批) +01/30/13 11:46:57,766 [1520] DEBUG index - function getTranslatedString(Accepted) - translated to (已接受) +01/30/13 11:46:57,766 [1520] DEBUG index - function getTranslatedString(Rejected) - translated to (已拒绝) +01/30/13 11:46:57,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,767 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:46:57,767 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,768 [1520] DEBUG index - Entering getOutputHtml(5,validtill,Valid Till,100,Array,1,Quotes) method ... +01/30/13 11:46:57,769 [1520] INFO index - uitype is 5 +01/30/13 11:46:57,769 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,770 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:46:57,770 [1520] INFO index - in getNewDisplayDate +01/30/13 11:46:57,770 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:46:57,770 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:46:57) method ... +01/30/13 11:46:57,771 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:57,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,771 [1520] DEBUG index - function getTranslatedString(Valid Till) - translated to (有效期至) +01/30/13 11:46:57,771 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:46:57,772 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:46:57,772 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,773 [1520] DEBUG index - Entering getOutputHtml(57,contact_id,Contact Name,100,Array,1,Quotes) method ... +01/30/13 11:46:57,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,774 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:46:57,774 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,775 [1520] DEBUG index - Entering getOutputHtml(15,carrier,Carrier,100,Array,1,Quotes) method ... +01/30/13 11:46:57,776 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:57,776 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:57,776 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:57,777 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:57,777 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,777 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:57,781 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 385 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #495 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #495 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:57,782 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,782 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,784 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,784 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:57,784 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,785 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:57,789 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,789 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:57,789 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:57,790 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:57,793 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:57,793 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:57,793 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:57,793 [1520] DEBUG index - Prepared sql query parameters : [carrier] +01/30/13 11:46:57,795 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct carrier FROM vtiger_carrier inner join vtiger_role2picklist on vtiger_carrier.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:57,795 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(FedEx) - translated to (联邦快递) +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(UPS) - translated to (联合包裹服务) +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(USPS) - translated to (邮政局) +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(DHL) - translated to (敦豪快运) +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(BlueDart) - translated to (蓝标快递) +01/30/13 11:46:57,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,830 [1520] DEBUG index - function getTranslatedString(Carrier) - translated to (物流公司) +01/30/13 11:46:57,830 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,831 [1520] DEBUG index - Entering getOutputHtml(1,shipping,Shipping,100,Array,1,Quotes) method ... +01/30/13 11:46:57,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,832 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运费) +01/30/13 11:46:57,832 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,832 [1520] DEBUG index - Entering getOutputHtml(77,assigned_user_id1,Inventory Manager,100,Array,1,Quotes) method ... +01/30/13 11:46:57,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,833 [1520] DEBUG index - function getTranslatedString(Inventory Manager) - translated to (仓库经理) +01/30/13 11:46:57,833 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:57,833 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:57,833 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:46:57,834 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:46:57,836 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,836 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,838 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,838 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,840 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:57,840 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:57,840 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:46:57,840 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:57,840 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:46:57,840 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:57,841 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,841 [1520] DEBUG index - Entering getOutputHtml(73,account_id,Account Name,100,Array,1,Quotes) method ... +01/30/13 11:46:57,842 [1520] DEBUG index - Entering getAccountName(138) method ... +01/30/13 11:46:57,842 [1520] INFO index - in getAccountName 138 +01/30/13 11:46:57,842 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:46:57,842 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:57,843 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:46:57,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,844 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:57,844 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,844 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Quotes) method ... +01/30/13 11:46:57,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,845 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:57,845 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:46:57,845 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:46:57,847 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:46:57,847 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:57,848 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:57,848 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:46:57,848 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:46:57,850 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,850 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,852 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:57,852 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:57,854 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:57,854 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:57,855 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:57,856 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:46:57,857 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:57,857 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,858 [1520] DEBUG index - Entering getOutputHtml(24,bill_street,Billing Address,100,Array,1,Quotes) method ... +01/30/13 11:46:57,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,859 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (付款地址) +01/30/13 11:46:57,859 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,860 [1520] DEBUG index - Entering getOutputHtml(24,ship_street,Shipping Address,100,Array,1,Quotes) method ... +01/30/13 11:46:57,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,860 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (收货地址) +01/30/13 11:46:57,860 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,861 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Quotes) method ... +01/30/13 11:46:57,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,861 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (付款邮政信箱) +01/30/13 11:46:57,862 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,862 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Quotes) method ... +01/30/13 11:46:57,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,863 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (收货邮政信箱) +01/30/13 11:46:57,863 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,863 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Quotes) method ... +01/30/13 11:46:57,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,864 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (付款城市) +01/30/13 11:46:57,864 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,864 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Quotes) method ... +01/30/13 11:46:57,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,865 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (收货城市) +01/30/13 11:46:57,865 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,866 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Quotes) method ... +01/30/13 11:46:57,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,866 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (付款省份) +01/30/13 11:46:57,866 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,867 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Quotes) method ... +01/30/13 11:46:57,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,867 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (收货省份) +01/30/13 11:46:57,868 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,868 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Quotes) method ... +01/30/13 11:46:57,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,869 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (付款邮政编码) +01/30/13 11:46:57,869 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,869 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Quotes) method ... +01/30/13 11:46:57,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,870 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (收货邮政编码) +01/30/13 11:46:57,870 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,870 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Quotes) method ... +01/30/13 11:46:57,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,871 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (付款国家) +01/30/13 11:46:57,871 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,872 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Quotes) method ... +01/30/13 11:46:57,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,872 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (收货国家) +01/30/13 11:46:57,872 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,873 [1520] DEBUG index - Entering getOutputHtml(19,terms_conditions,Terms & Conditions,100,Array,1,Quotes) method ... +01/30/13 11:46:57,873 [1520] DEBUG index - Entering getTermsandConditions() method ... +01/30/13 11:46:57,873 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_inventory_tandc +01/30/13 11:46:57,899 [1520] DEBUG index - Exiting getTermsandConditions method ... +01/30/13 11:46:57,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,899 [1520] DEBUG index - function getTranslatedString(Terms & Conditions) - translated to (条款与条件) +01/30/13 11:46:57,899 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,900 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Quotes) method ... +01/30/13 11:46:57,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,900 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:57,900 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:46:57,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,901 [1520] DEBUG index - function getTranslatedString(LBL_QUOTE_INFORMATION) - translated to (报价单信息) +01/30/13 11:46:57,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,901 [1520] DEBUG index - function getTranslatedString(LBL_QUOTE_INFORMATION) - translated to (报价单信息) +01/30/13 11:46:57,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,902 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:57,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,902 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:46:57,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,903 [1520] DEBUG index - function getTranslatedString(LBL_TERMS_INFORMATION) - translated to (条款与条件) +01/30/13 11:46:57,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,904 [1520] DEBUG index - function getTranslatedString(LBL_TERMS_INFORMATION) - translated to (条款与条件) +01/30/13 11:46:57,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,904 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:57,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,905 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:57,905 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:46:57,905 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:46:57,905 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:57,905 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:57,908 [1520] INFO index - Quote view +01/30/13 11:46:57,912 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:46:57,912 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:46:57,912 [1520] DEBUG index - Entering into the function getAllTaxes(available,,,) +01/30/13 11:46:57,913 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_inventorytaxinfo where vtiger_inventorytaxinfo.deleted=0 order by deleted +01/30/13 11:46:57,939 [1520] DEBUG index - Exit from the function getAllTaxes(available,,,) +01/30/13 11:46:57,939 [1520] DEBUG index - Entering into the function getAllTaxes(available,sh,,) +01/30/13 11:46:57,939 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_shippingtaxinfo where vtiger_shippingtaxinfo.deleted=0 order by deleted +01/30/13 11:46:57,977 [1520] DEBUG index - Exit from the function getAllTaxes(available,sh,,) +01/30/13 11:46:57,977 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:57,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:57,978 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:57,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:57,978 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:46:57,978 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:57,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,982 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:46:57,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,983 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:57,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,983 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:46:57,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,984 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:46:57,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,985 [1520] DEBUG index - function getTranslatedString(Valid Till) - translated to (有效期至) +01/30/13 11:46:57,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,985 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:46:57,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,986 [1520] DEBUG index - function getTranslatedString(Carrier) - translated to (物流公司) +01/30/13 11:46:57,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,987 [1520] DEBUG index - function getTranslatedString(Sub Total) - translated to (小计) +01/30/13 11:46:57,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,987 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运费) +01/30/13 11:46:57,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,988 [1520] DEBUG index - function getTranslatedString(Inventory Manager) - translated to (仓库经理) +01/30/13 11:46:57,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,988 [1520] DEBUG index - function getTranslatedString(Adjustment) - translated to (调整) +01/30/13 11:46:57,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,989 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:46:57,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,990 [1520] DEBUG index - function getTranslatedString(Tax Type) - translated to (Tax Type) +01/30/13 11:46:57,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,990 [1520] DEBUG index - function getTranslatedString(Discount Percent) - translated to (Discount Percent) +01/30/13 11:46:57,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,991 [1520] DEBUG index - function getTranslatedString(Discount Amount) - translated to (Discount Amount) +01/30/13 11:46:57,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,992 [1520] DEBUG index - function getTranslatedString(S&H Amount) - translated to (S&H Amount) +01/30/13 11:46:57,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,992 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:46:57,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,993 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:57,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,994 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:46:57,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,994 [1520] DEBUG index - function getTranslatedString(Currency) - translated to (货币) +01/30/13 11:46:57,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,995 [1520] DEBUG index - function getTranslatedString(Conversion Rate) - translated to (Conversion Rate) +01/30/13 11:46:57,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,995 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (付款地址) +01/30/13 11:46:57,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,996 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (收货地址) +01/30/13 11:46:57,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,997 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (付款城市) +01/30/13 11:46:57,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,997 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (收货城市) +01/30/13 11:46:57,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,998 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (付款省份) +01/30/13 11:46:57,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,999 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (收货省份) +01/30/13 11:46:57,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,999 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (付款邮政编码) +01/30/13 11:46:57,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:57,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:57,1000 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (收货邮政编码) +01/30/13 11:46:58,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,001 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (付款国家) +01/30/13 11:46:58,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,001 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (收货国家) +01/30/13 11:46:58,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,002 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (付款邮政信箱) +01/30/13 11:46:58,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,002 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (收货邮政信箱) +01/30/13 11:46:58,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,003 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:58,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,004 [1520] DEBUG index - function getTranslatedString(Terms & Conditions) - translated to (Terms & Conditions) +01/30/13 11:46:58,004 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:46:58,004 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:46:58,004 [1520] DEBUG index - Entering Button_Check(Quotes) method ... +01/30/13 11:46:58,005 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:58,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,006 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:46:58,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,007 [1520] DEBUG index - Entering isPermitted(Quotes,Import,) method ... +01/30/13 11:46:58,007 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,008 [1520] DEBUG index - Entering isPermitted(Quotes,Export,) method ... +01/30/13 11:46:58,008 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,008 [1520] DEBUG index - Entering isPermitted(Quotes,Merge,) method ... +01/30/13 11:46:58,009 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,009 [1520] DEBUG index - Entering isPermitted(Quotes,DuplicatesHandling,) method ... +01/30/13 11:46:58,010 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,010 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:58,011 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,011 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:46:58,012 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:58,012 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:46:58,014 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Quotes)... +01/30/13 11:46:58,014 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:58,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:58,015 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:46:58,015 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:46:58,015 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:46:58,015 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:46:58,018 [1520] DEBUG index - Prepared sql query being executed : select quote_no from vtiger_quotes where quote_no = ? +01/30/13 11:46:58,018 [1520] DEBUG index - Prepared sql query parameters : [QUO6] +01/30/13 11:46:58,020 [1520] DEBUG index - Entering into function getAllCurrencies(available) +01/30/13 11:46:58,021 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where currency_status='Active' and deleted=0 +01/30/13 11:46:58,024 [1520] DEBUG index - Entering into function getAllCurrencies(available) +01/30/13 11:46:58,025 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:58,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:58,025 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:46:58,025 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:58,027 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:46:58,063 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:58,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:58,064 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:46:58,064 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:46:58,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,103 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:58,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,103 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:58,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,104 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:58,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,106 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:58,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,106 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:58,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,110 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:58,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:58,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:58,111 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:46:58,252 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:46:58,253 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:58,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:05,971 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:06,100 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:06,100 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:06,100 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:06,101 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:06,101 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:47:06,101 [1520] INFO index - About to take action index +01/30/13 11:47:06,101 [1520] DEBUG index - in index +01/30/13 11:47:06,101 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:47:06,101 [1520] INFO index - current module is Accounts +01/30/13 11:47:06,151 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:06,151 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:06,151 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:06,151 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,152 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,152 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:06,152 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:06,162 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,162 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,163 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:06,163 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:06,163 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:06,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,164 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:06,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,164 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:06,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,165 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:06,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,165 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,166 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:06,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,167 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:06,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,167 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:06,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,168 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:06,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,168 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:06,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,169 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:06,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,169 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,170 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:06,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,171 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:06,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,171 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:06,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,172 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:06,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,172 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:06,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,173 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:06,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,173 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:06,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,174 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:06,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,174 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:06,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,174 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,175 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:06,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,176 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:06,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,176 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:06,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,177 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:06,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,177 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:06,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,178 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:06,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,178 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,179 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:06,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,180 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:06,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,180 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:06,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,181 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:06,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,181 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,182 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:06,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,183 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:06,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,183 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:06,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,184 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:06,188 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:06,188 [1520] DEBUG index - Prepared sql query parameters : [386,1,Accounts,index,,2013-01-30 11:47:06] +01/30/13 11:47:06,191 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:06,191 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:06,191 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:06,191 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:06,193 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:06,193 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:06,195 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:06,195 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:06,197 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:06,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,198 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:06,198 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:06,198 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:06,198 [1520] DEBUG index - including headers +01/30/13 11:47:06,198 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,199 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,202 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:06,202 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:06,206 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:47:06,207 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:47:06,207 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,207 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:47:06,207 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,208 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:47:06,208 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,208 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:47:06,208 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,208 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:47:06,209 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,209 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:47:06,209 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,209 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:47:06,210 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:47:06,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,219 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:06,219 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,219 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:06,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,220 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:47:06,220 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:06,220 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,221 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:47:06,221 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:06,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:06,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,223 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:47:06,223 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:06,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,224 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:06,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,224 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:47:06,224 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:06,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:06,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,225 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:47:06,225 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:06,226 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:06,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,226 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:47:06,227 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:06,227 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:47:06,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,227 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:47:06,228 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:47:06,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,228 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:06,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,229 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:47:06,229 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:06,229 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:06,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,230 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:47:06,230 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:06,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:06,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,231 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:47:06,231 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:06,231 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,232 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:06,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,232 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:47:06,232 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:06,233 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:06,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,233 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:47:06,233 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:06,234 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:06,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,234 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:47:06,235 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:06,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,235 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:06,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,236 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:47:06,236 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:06,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,236 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:06,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,237 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:47:06,237 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:06,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,237 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:06,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,238 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:47:06,238 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:06,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:06,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,239 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:47:06,239 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:06,240 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:06,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,240 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:47:06,240 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:06,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,241 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:47:06,241 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:47:06) method ... +01/30/13 11:47:06,241 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:47:06,241 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:47:06) method ... +01/30/13 11:47:06,242 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:47:06,242 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,242 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,242 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,243 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,243 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:47:06,243 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:47:06,243 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:47:06,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,258 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,258 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,258 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,258 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:47:06,262 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:06,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,262 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:47:06,262 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:06,264 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,264 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,265 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:06,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,265 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:06,265 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,266 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,267 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,268 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:06,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,270 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:06,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,270 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:06,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,270 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:06,271 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,271 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:06,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,271 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:47:06,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,272 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:47:06,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,272 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:47:06,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,273 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:06,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,275 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:06,275 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,275 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:06,275 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:06,275 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:06,279 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:47:06,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,280 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:47:06,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,280 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:47:06,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,281 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:47:06,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,281 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:47:06,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,282 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:06,282 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:47:06,284 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:06,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,284 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:47:06,284 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:47:06,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:47:06,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,295 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,296 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:06,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:06,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,296 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:06,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,296 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:06,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,297 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:06,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:06,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,297 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:06,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:06,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,297 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:06,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:06,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,298 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:06,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:06,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,298 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:06,298 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:06,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,299 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:06,299 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:47:06,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,299 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:47:06,301 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:06,301 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,301 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:06,301 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:47:06,301 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,301 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:47:06,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:47:06,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,302 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:47:06,302 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:47:06,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,302 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:47:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:06,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,303 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:06,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,303 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:47:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:47:06,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,304 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:47:06,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:47:06,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,304 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:47:06,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:47:06,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,305 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:47:06,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:06,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,305 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:06,305 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:06,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,305 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:47:06,305 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:06,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,306 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:06,306 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:06,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,306 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:06,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:06,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,306 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:06,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:06,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,307 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:06,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:06,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,307 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:06,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:06,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,307 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:06,307 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:06,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,308 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:06,308 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:06,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,308 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:06,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:06,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,308 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:06,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:06,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,309 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:06,309 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:06,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,310 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:06,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:06,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,310 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:06,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,311 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:47:06,311 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:06,311 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,315 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,315 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,316 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,316 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,317 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:47:06,317 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,317 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,317 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:06,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,318 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:47:06,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,318 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:47:06,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,319 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:47:06,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,319 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:47:06,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,320 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:06,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,320 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:47:06,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,321 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,321 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,321 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:06,321 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:06,331 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,331 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,331 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:47:06,331 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,331 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:47:06,331 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:47:06,335 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:47:06,335 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,335 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,336 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:06,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,336 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:47:06,337 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,337 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:47:06,337 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:47:06,337 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:47:06,337 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:47:06,337 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:06,338 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:47:06,338 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:47:06,338 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:47:06,338 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:47:06,339 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:47:06,341 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:06,341 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:06,343 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:06,343 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:06,346 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:06,346 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:47:06,346 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:47:06,347 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:47:06,347 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:47:06,350 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:47:06,350 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:47:06,351 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:47:06,351 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:47:06,353 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:06,353 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:47:06,353 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:47:06,353 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:47:06,353 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:47:06,353 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:47:06,353 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:47:06,354 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,354 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:06,357 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,357 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,357 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,357 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,358 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,358 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,359 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:47:06,359 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:47:06,359 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,361 [1520] DEBUG index - Entering when status=0 +01/30/13 11:47:06,361 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:47:06,361 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:47:06,361 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,361 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,361 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:06,361 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:06,365 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,365 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:47:06,365 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,367 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:47:06,367 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:47:06,370 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:47:06,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,371 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:47:06,371 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:47:06,371 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:47:06,371 [1520] DEBUG index - Entering when status=0 +01/30/13 11:47:06,371 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:47:06,372 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:47:06,372 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:47:06,372 [1520] DEBUG index - Entering when status=0 +01/30/13 11:47:06,372 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:47:06,372 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:47:06,372 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,373 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:47:06,373 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:06,374 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,374 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:47:06,375 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:06,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:06,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,378 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:47:06,379 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:06,384 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:47:06,384 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:47:06,404 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:47:06,408 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:47:06,408 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:06,410 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,411 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,412 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,413 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:06,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:06,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:06,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,417 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:06,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,419 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:06,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:06,419 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:06,419 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:47:06,422 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:06,422 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,422 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:47:06,426 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:47:06,426 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:06,473 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,473 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:47:06,476 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,476 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:47:06,478 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,478 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:47:06,481 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,481 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:47:06,484 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:47:06,485 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:06,539 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,539 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:47:06,541 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,541 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:47:06,545 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,545 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:47:06,549 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,550 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:47:06,552 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,552 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:47:06,554 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,554 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:47:06,557 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,557 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:47:06,560 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,560 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:47:06,562 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,562 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:47:06,564 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:47:06,564 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:06,598 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,599 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:47:06,601 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,601 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:47:06,603 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,603 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:47:06,606 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,606 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:47:06,608 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:47:06,608 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:06,610 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,610 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:47:06,612 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,613 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:47:06,616 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:47:06,616 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:06,648 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,648 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:47:06,651 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,651 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:47:06,654 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,654 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:47:06,656 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,656 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:47:06,658 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,659 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:47:06,661 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,661 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:47:06,663 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,663 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:47:06,665 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,665 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:47:06,668 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,668 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:47:06,671 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,672 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:47:06,674 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,674 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:47:06,676 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:47:06,676 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:47:06,678 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:06,683 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:06,683 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:06,686 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:06,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:06,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,687 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:06,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:06,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,688 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:47:06,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:06,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,688 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:06,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:06,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,689 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:47:06,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:06,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,689 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:06,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:06,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,690 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:47:06,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:06,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,690 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:06,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:06,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,691 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:47:06,691 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:06,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,691 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:06,691 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:06,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,691 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:06,692 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:06,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,692 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:06,692 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:06,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,692 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:47:06,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:06,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,692 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:06,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:06,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,693 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:47:06,693 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:06,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,693 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:06,693 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:06,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,693 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:47:06,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,694 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:06,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,694 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:47:06,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:06,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,694 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:06,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:06,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,694 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:47:06,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,695 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,695 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:06,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:06,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,695 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:06,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:06,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:47:06,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:06,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,696 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:06,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:06,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:47:06,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:06,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,697 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:06,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:06,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:47:06,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:06,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,697 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:06,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:06,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:47:06,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:06,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,698 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:06,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:06,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,698 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:47:06,698 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:06,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,698 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:06,698 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:06,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,699 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:47:06,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,699 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:47:06,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:06,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,699 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:47:06,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:47:06,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,701 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:47:06,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:47:06,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,701 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:47:06,701 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:06,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,701 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:06,701 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:06,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,702 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:47:06,702 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:06,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,702 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:47:06,702 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:06,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,702 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:47:06,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:06,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,702 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:06,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:06,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,703 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:47:06,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:06,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,703 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:06,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:06,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,703 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:47:06,703 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:06,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,704 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:47:06,704 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:06,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,704 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:47:06,704 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:06,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,704 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:06,704 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:06,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,704 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:47:06,705 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:06,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,705 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:06,705 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:06,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,705 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:47:06,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:06,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,705 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:06,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:06,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,706 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:47:06,706 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:06,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,706 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:06,706 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:06,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,706 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:47:06,707 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,707 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,739 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:47:06,739 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:47:06,742 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:06,743 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:06,743 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:06,743 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,746 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:06,746 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,748 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:06,748 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,751 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:06,751 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:06,753 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:06,753 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:06,753 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:06,753 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,753 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,753 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:06,754 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,754 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:06,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,754 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:47:06,754 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:06,758 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:47:06,758 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:06,761 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,761 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,761 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,761 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,761 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,761 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,761 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,761 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,762 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,762 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,762 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,763 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,763 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,763 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,763 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,763 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,763 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,763 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,764 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,764 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,764 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,764 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,764 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,764 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,764 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,765 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,765 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,766 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:47:06,768 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:47:06,772 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,772 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,772 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,773 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,773 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:47:06,773 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:06,773 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,773 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,774 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,774 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,774 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,775 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,775 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:06,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,775 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:06,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,776 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:47:06,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,776 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:06,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,776 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:06,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,777 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:06,777 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,778 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:47:06,778 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:47:06,778 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:06,778 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:06,780 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:47:06,781 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5,5] +01/30/13 11:47:06,783 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:06,783 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,783 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:47:06,783 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:06,785 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,786 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,786 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,786 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,786 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,787 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,787 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,787 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,788 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,788 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,788 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,788 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,789 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,789 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,789 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,789 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,790 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,790 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,790 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,790 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,791 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,791 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,791 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,791 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,792 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,793 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,793 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,793 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,794 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,794 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,794 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,794 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,795 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,798 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,798 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,798 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,798 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,799 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,799 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,799 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:06,801 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,801 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,802 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,802 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,803 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,803 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,803 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,804 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,804 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,804 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,804 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,805 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,805 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,805 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,806 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,806 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,806 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,806 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,807 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,807 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,808 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,809 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,809 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,809 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,810 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,810 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,810 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,811 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,814 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,814 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,814 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,814 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,814 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,815 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,815 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:06,817 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,817 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,817 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,818 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,818 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,818 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,818 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,819 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,819 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,819 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,819 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,819 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,820 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,820 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,820 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,820 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,821 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,821 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,821 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,821 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,822 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,822 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,822 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,822 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,823 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,823 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,823 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,823 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,823 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,824 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,824 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,824 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,825 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,825 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,825 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,825 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,826 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,829 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,829 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,829 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,829 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,830 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,830 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,830 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:06,832 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,832 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,832 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,833 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,833 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,834 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,834 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,834 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,834 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,834 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,835 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,835 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,835 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,835 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,836 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,836 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,836 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,836 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,837 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,837 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,837 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,837 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,838 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,838 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,838 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,838 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,839 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,839 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,840 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,840 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,840 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,840 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,840 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,844 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,844 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,844 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,845 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,845 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,845 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:06,847 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,847 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,847 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,848 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,848 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,848 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,848 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,849 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,849 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,849 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,849 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,849 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,850 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,850 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,850 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,850 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,851 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,851 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,851 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,851 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,852 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,852 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,852 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,852 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,853 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,853 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,854 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,855 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,855 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,855 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,856 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,859 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,860 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,860 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,860 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,860 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,860 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,860 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:06,862 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,863 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,863 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,863 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,863 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,864 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,864 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,864 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,865 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,865 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,865 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,865 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,866 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,866 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,866 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,866 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,867 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,867 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,867 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,867 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,868 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,868 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,868 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,868 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,869 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,870 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,870 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,870 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,871 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,871 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,872 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,875 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,875 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,875 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,875 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,876 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,876 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,876 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:47:06,883 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,883 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,883 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,883 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,884 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,884 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,884 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,884 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,885 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,885 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,885 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,885 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,886 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,886 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,886 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,886 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,887 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,887 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,888 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,888 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,888 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,889 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,890 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,890 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,890 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,891 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,891 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,891 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,891 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,892 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,895 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,895 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,895 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,895 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,896 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,896 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,896 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:06,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,898 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,899 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,899 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,899 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,899 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,900 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,900 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,900 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,901 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,901 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,902 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,902 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,903 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,903 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,903 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,903 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,904 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,904 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,905 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,905 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,905 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,905 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,906 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,906 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,906 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,906 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,907 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,907 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,910 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,910 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,910 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,911 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,911 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,911 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,911 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:06,913 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,913 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,913 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,914 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,914 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,914 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,914 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,915 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,915 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,915 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,916 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,916 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,917 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,917 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,917 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,918 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,918 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,918 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,918 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,919 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,919 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,919 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,920 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,921 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,921 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,922 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,922 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,925 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,925 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,925 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,926 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,926 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,926 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,926 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:06,928 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,928 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,928 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,929 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,929 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,929 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,929 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,930 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,930 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,930 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,931 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,931 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,931 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,931 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,932 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,932 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,932 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,932 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,933 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,933 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,933 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,934 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,934 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,934 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,934 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,935 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,936 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,936 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,936 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,936 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,937 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,937 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,940 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,941 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,941 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,941 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,941 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,941 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,941 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:06,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,944 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,944 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,945 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,945 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,945 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,945 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,946 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,946 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,946 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,947 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,947 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,947 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,948 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,948 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,948 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,948 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,949 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,949 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,949 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,949 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,950 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,951 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,951 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,951 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,952 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,952 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,952 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,953 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,956 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,956 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,956 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,956 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,956 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,956 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,957 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,957 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:06,960 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,960 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,960 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,961 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,961 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,961 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,961 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,962 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,962 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:06,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,963 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,963 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,964 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,964 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,964 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,964 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,965 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,965 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,966 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,966 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,966 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:06,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,967 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,967 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,967 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,968 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:47:06,968 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:06,968 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:06,969 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:47:06,969 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:06,973 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:06,973 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:06,973 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:06,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:06,973 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:06,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,974 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:47:06,974 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:06,974 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:47:06,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,989 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:06,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,989 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:06,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,990 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:47:06,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,990 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:06,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,990 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:06,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,990 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:06,990 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:47:06,991 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:47:06,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,991 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:06,991 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:06,991 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:06,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,993 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:06,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,993 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:06,994 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:06,994 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:06,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,996 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:06,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:06,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:06,996 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:06,996 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:06,997 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,006 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,006 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:07,006 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,006 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,008 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,008 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:47:07,009 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,009 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,011 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,011 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:47:07,011 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,011 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,013 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,013 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:47:07,014 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,014 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,015 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,016 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:47:07,016 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,016 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,018 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,018 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:47:07,018 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,018 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,020 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,020 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:47:07,020 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,021 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,022 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,023 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:47:07,023 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,023 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,024 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,025 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:47:07,025 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,025 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,027 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,027 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:47:07,027 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,027 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,029 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,029 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:47:07,029 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,029 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,031 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,031 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:47:07,031 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,032 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,033 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,033 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:47:07,033 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,033 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,035 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,035 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:47:07,035 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,035 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,037 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,037 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:47:07,037 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,037 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,039 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,039 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:47:07,039 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,039 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,041 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,042 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:07,042 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,042 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,044 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,044 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:47:07,044 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,044 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,046 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,046 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:07,047 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,047 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,048 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,049 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:47:07,049 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,049 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:07,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,050 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:47:07,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,051 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:47:07,051 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,051 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,052 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,053 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:47:07,053 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,053 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,054 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,055 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:47:07,055 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,055 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,056 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,057 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:47:07,057 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,057 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,058 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,059 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:47:07,059 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,059 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,060 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,061 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:47:07,061 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,061 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,065 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,065 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:47:07,066 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,066 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,067 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,067 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:47:07,067 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,067 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,069 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,069 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:47:07,069 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,069 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,071 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,071 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:47:07,071 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,072 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,073 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,074 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:47:07,074 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,074 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,075 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,076 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:47:07,076 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,076 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:47:07,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,077 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:47:07,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,078 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:47:07,078 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:47:07,078 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:47:07,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,079 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:47:07,079 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:47:07,080 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:47:07,080 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:07,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:07,080 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:47:07,080 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:47:07,080 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:47:07,082 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:47:07,082 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:47:07,082 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:47:07,082 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:07,084 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:47:07,085 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:47:07,085 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:47:07,085 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:07,085 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:07,085 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:47:07,085 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:47:07,095 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:47:07,095 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:47:07,095 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:07,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,099 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:07,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,099 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:07,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,099 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:07,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,100 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:47:07,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,100 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:47:07,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,100 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:47:07,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,101 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:47:07,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,101 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:47:07,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,101 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:47:07,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,101 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:47:07,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,102 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:47:07,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,102 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:47:07,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,102 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:47:07,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,103 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:47:07,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,103 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:47:07,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,103 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:47:07,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,104 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:47:07,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,104 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:47:07,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,104 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:07,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,104 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:47:07,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,105 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:47:07,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,105 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:47:07,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,105 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:47:07,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,106 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:47:07,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,106 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:47:07,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,106 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:47:07,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,107 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:47:07,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,107 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:47:07,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,107 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:47:07,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,107 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:47:07,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,108 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:47:07,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,108 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:47:07,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,108 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:47:07,108 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:07,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:07,109 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:47:07,109 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:47:07,112 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:47:07,112 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:47:07,112 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:47:07,112 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:47:07,112 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:47:07,112 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:47:07,112 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:07,117 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:07,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:07,118 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:47:07,118 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:47:07,120 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:47:07,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:07,121 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:47:07,121 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:47:07,121 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:07,123 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:47:07,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:07,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:07,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,126 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,126 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:47:07,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,126 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:47:07,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,126 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,127 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,127 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,127 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,128 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,128 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,128 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,129 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,131 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:47:07,131 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:47:07,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,131 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:47:07,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,131 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:47:07,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,132 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:47:07,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,132 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:47:07,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,132 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:47:07,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,132 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:47:07,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,133 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:47:07,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,133 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:47:07,135 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:07,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:07,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,136 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:47:07,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,136 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,136 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:07,138 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:07,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:07,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,139 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:47:07,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:07,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:07,139 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:47:07,139 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:47:07,140 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:07,140 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:16,041 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:16,168 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:16,168 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:16,169 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:16,169 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:16,169 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'accountname', + 'id' => '8', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:47:16,169 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:47:16,169 [1520] DEBUG index - in TooltipAjax +01/30/13 11:47:16,170 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:47:16,170 [1520] INFO index - current module is Tooltip +01/30/13 11:47:16,220 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:16,220 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:16,220 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:16,220 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:16,220 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:16,220 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:16,220 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:16,221 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:16,221 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:16,229 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:16,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:16,229 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:16,229 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:16,230 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:16,230 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:16,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,231 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:16,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,231 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:16,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,232 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:16,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,232 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:16,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,233 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:16,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,233 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:16,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,233 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:16,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,234 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:16,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,234 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:16,235 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,235 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:16,235 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,235 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:16,236 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,236 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:16,236 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,236 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:16,236 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,237 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:16,237 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,237 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:16,237 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,237 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:16,238 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,238 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:16,238 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,238 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:16,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,239 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:16,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,239 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:16,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,240 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:16,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,240 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:16,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:16,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,242 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:16,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,242 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:16,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,242 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:16,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,243 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:16,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,243 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:16,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,244 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:16,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,244 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:16,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,245 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:16,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,245 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:16,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,245 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:16,246 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,246 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:16,246 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,246 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:16,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,247 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:16,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,247 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:16,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,248 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:16,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,248 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:16,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,248 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:16,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,249 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:16,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,249 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:16,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,250 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:16,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,250 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:16,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:16,251 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:16,256 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:16,256 [1520] DEBUG index - Prepared sql query parameters : [387,1,Tooltip,TooltipAjax,,2013-01-30 11:47:16] +01/30/13 11:47:16,259 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:16,259 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:16,259 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:16,259 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:16,261 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:16,261 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:16,263 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:16,263 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:16,264 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:16,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:47:16,265 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:47:16,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:16,266 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:16,266 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:16,266 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:16,266 [1520] DEBUG index - skipping headers +01/30/13 11:47:16,267 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:47:16,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:16,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:16,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:16,274 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:16,274 [1520] DEBUG index - Prepared sql query parameters : [6,accountname] +01/30/13 11:47:16,276 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:47:16,276 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:31,082 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:31,209 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:31,210 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:31,210 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:31,210 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:31,210 [1520] DEBUG index - array ( + 'action' => 'UnifiedSearch', + 'module' => 'Home', + 'parenttab' => 'Marketing', + 'search_onlyin' => '--USESELECTED--', + 'query_string' => 'OSSEZ', + 'x' => '0', + 'y' => '0', +) +01/30/13 11:47:31,210 [1520] INFO index - About to take action UnifiedSearch +01/30/13 11:47:31,211 [1520] DEBUG index - in UnifiedSearch +01/30/13 11:47:31,211 [1520] INFO index - current page is modules/Home/UnifiedSearch.php +01/30/13 11:47:31,211 [1520] INFO index - current module is Home +01/30/13 11:47:31,259 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:31,260 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:31,260 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:31,260 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:31,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,260 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:31,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,260 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:31,260 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:31,271 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:31,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,271 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,271 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:31,272 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:31,272 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,273 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:31,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,274 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:31,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,274 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:31,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,275 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:31,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,275 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:31,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,276 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:31,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,276 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:31,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,277 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:31,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,277 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:31,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,277 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:31,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,278 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:31,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,278 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:31,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,279 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:31,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,279 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:31,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,280 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:31,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,280 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:31,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,281 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:31,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,281 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:31,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,281 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:31,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,282 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:31,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,282 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:31,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,283 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:31,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,283 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:31,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,283 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:31,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,284 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:31,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,284 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:31,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,285 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:31,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,285 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,286 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:31,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,287 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:31,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,287 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:31,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,288 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:31,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,288 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:31,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,289 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:31,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,289 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:31,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,290 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:31,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,290 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:31,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,290 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:31,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,291 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:31,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,291 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:31,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,292 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:31,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,292 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:31,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:31,293 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:31,298 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:31,298 [1520] DEBUG index - Prepared sql query parameters : [388,1,Home,UnifiedSearch,,2013-01-30 11:47:31] +01/30/13 11:47:31,301 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:31,301 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:31,302 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:31,302 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:31,303 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:31,304 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:31,306 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:31,306 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:31,307 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:31,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:31,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,308 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:31,308 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:31,308 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:31,308 [1520] DEBUG index - including headers +01/30/13 11:47:31,308 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:47:31,309 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:31,312 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,312 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,314 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:47:31,315 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:47:31,315 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,315 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,316 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:47:31,317 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,317 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:47:31,317 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,317 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:47:31,318 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:47:31,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,327 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:31,328 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:31,328 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,328 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:31,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,329 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:47:31,329 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:31,329 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:31,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,330 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:47:31,330 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:31,330 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:31,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,332 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:47:31,332 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:31,332 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,332 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:31,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,333 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:47:31,333 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:31,333 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,334 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:47:31,334 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:31,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:31,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,335 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:47:31,335 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:31,335 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:47:31,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,336 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:47:31,336 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:47:31,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,337 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:31,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,337 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:47:31,337 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:31,338 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:31,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,338 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:47:31,338 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:31,339 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,340 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:47:31,340 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:31,340 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,340 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:31,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,341 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:47:31,341 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:31,341 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:31,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,342 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:47:31,342 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:31,342 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:31,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,343 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:47:31,343 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:31,343 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,344 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:31,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,344 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:47:31,344 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:31,344 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,345 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:31,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,345 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:47:31,345 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:31,346 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,346 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:31,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,347 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:47:31,347 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:31,347 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:31,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,348 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:47:31,348 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:31,348 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:31,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,349 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:47:31,349 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:31,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,349 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:47:31,349 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:47:31) method ... +01/30/13 11:47:31,350 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:47:31,350 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:47:31) method ... +01/30/13 11:47:31,350 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:47:31,350 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,350 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,351 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:47:31,352 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:47:31,352 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:47:31,355 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,355 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,356 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,357 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,358 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,359 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,360 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,363 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,364 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:47:31,368 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:31,369 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,369 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:47:31,369 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:31,371 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:31,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,373 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:31,373 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,373 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,373 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,374 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,375 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,376 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,377 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:31,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,378 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:47:31,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,378 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,379 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,380 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,381 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:31,382 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,382 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:31,382 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:31,382 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:31,386 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:47:31,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,386 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:47:31,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,387 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:47:31,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,387 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:47:31,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,388 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:47:31,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,389 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:31,389 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:47:31,391 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:31,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,391 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:47:31,391 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:47:31,394 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:47:31,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:31,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,401 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:47:31,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:31,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,402 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:31,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:31,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,402 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:31,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,403 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:31,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,403 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:31,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,403 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:31,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:31,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,404 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:31,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:31,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,404 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:31,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:31,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,405 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:31,405 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:31,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,405 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:31,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:47:31,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,405 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:47:31,407 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:31,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,407 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:31,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:47:31,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,408 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:47:31,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:47:31,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,409 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:47:31,409 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:47:31,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,409 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:47:31,409 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:31,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,410 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:31,410 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:31,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,410 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:47:31,410 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:47:31,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,410 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:47:31,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:47:31,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,411 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:47:31,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:47:31,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,411 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:47:31,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:31,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,412 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:31,412 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:31,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,412 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:47:31,412 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:31,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,412 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:31,412 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:31,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,413 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:31,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:31,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,413 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:31,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:31,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,413 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:31,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:31,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,414 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:31,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:31,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,414 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:31,414 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:31,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,415 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:31,415 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:31,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,416 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:31,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:31,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,416 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:31,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:31,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,417 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:31,417 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:31,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,417 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:31,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:31,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,418 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:31,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:31,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,419 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:47:31,440 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:47:31,456 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:31,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,457 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:31,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,457 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:31,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,458 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:31,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,458 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:31,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,459 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:31,459 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,459 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:31,459 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,459 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:31,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,460 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:31,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,460 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:31,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,461 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:31,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,461 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:31,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,462 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:31,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,462 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:31,463 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,463 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:31,463 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,463 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,464 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:31,465 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,465 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:31,465 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,465 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:31,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,466 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:31,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,466 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:31,467 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,467 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:31,467 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,467 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:31,468 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,468 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:31,468 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,468 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:31,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,469 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:31,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,469 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:31,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,470 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:31,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,470 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:31,471 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,471 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:31,471 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,471 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:31,472 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,472 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:31,472 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,472 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:31,473 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,473 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:31,473 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,473 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:31,474 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,474 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:31,474 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,474 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:31,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,475 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:31,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,475 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:31,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,476 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:31,476 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,476 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:31,476 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,476 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:31,477 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,477 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:31,477 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,477 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:31,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,478 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:31,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,478 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:31,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,479 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:31,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,479 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:31,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,480 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:31,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,480 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:31,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,481 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:31,481 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:31,481 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,481 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,481 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:31,481 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:31,487 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,487 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,487 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:31,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,489 [1520] DEBUG index - Entering getListQuery(Potentials,) method ... +01/30/13 11:47:31,489 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,489 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,489 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,491 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:31,491 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:31,492 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,492 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,492 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,492 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:31,492 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:31,493 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,493 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,493 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:31,493 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:31,493 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:47:31,497 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:31,497 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:31,497 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,497 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,497 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,497 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:31,497 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:47:31,501 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,501 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:31,501 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:31,504 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:31,504 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:31,508 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,508 [1520] DEBUG index - Prepared sql query parameters : [vtiger_potential] +01/30/13 11:47:31,512 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,512 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,514 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,515 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:31,522 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:31,522 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:31,528 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:31,528 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:31,530 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,530 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,531 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:31,531 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:31,534 [1520] DEBUG index - query being executed : select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,540 [1520] DEBUG index - 查询语句: select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,540 [1520] DEBUG index - query being executed : select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:31,546 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,546 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,547 [1520] DEBUG index - Entering getListViewHeader(Potentials,,,,global,CustomView) method ... +01/30/13 11:47:31,547 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:47:31,547 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:31,548 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,548 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,548 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,549 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,549 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:47:31,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,550 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:47:31,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,550 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:47:31,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,550 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:47:31,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,551 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:47:31,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,551 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:47:31,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,551 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:31,551 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:31,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,552 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:31,552 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +POT11,OSSEZ TEST,138,Prospecting,--None--,2013-01-30,胡昱铖,141,138 +,Array,,,,,CustomView) method ... +01/30/13 11:47:31,552 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,554 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,554 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:31,554 [1520] DEBUG index - Prepared sql query parameters : [2,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,assigned_user_id] +01/30/13 11:47:31,558 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,potential_no,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,558 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,558 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,559 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,560 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,560 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,potentialname,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,560 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,560 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,561 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,related_to,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,562 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,563 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,564 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,564 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:47:31,564 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:47:31,564 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:47:31,564 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:31,566 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:47:31,566 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:47:31,566 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,566 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:31,568 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:47:31,568 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:31,570 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,570 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,sales_stage,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,570 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,571 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,572 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,572 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,573 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,leadsource,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,573 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,573 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,574 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,575 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,575 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,closingdate,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,575 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,575 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,576 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,577 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,577 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,assigned_user_id,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:31,577 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,578 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,579 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:31,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,580 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,580 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,581 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 11:47:31,581 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,581 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,581 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,586 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:31,586 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:47:31,589 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:31,609 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:31,609 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:31,609 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,609 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,609 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:31,609 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,621 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,621 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,621 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:31,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,623 [1520] DEBUG index - Entering getListQuery(Contacts,) method ... +01/30/13 11:47:31,623 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,623 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,624 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,626 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:31,626 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:31,626 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,626 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,627 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,627 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:31,627 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:31,627 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,627 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,628 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:31,628 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:31,628 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:47:31,631 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:31,631 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:31,631 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,631 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,631 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,631 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,631 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,631 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:31,631 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:47:31,633 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,634 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:31,634 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,637 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:31,637 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:31,643 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,643 [1520] DEBUG index - Prepared sql query parameters : [vtiger_contactdetails] +01/30/13 11:47:31,648 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,648 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,651 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,651 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:31,658 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:31,658 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:31,660 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:31,660 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:31,665 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,665 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:31,665 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,671 [1520] DEBUG index - query being executed : select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,806 [1520] DEBUG index - 查询语句: select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,807 [1520] DEBUG index - query being executed : select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:31,813 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,813 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,815 [1520] DEBUG index - Entering getListViewHeader(Contacts,,,,global,CustomView) method ... +01/30/13 11:47:31,816 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:47:31,816 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:31,816 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,816 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,817 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,819 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,820 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:47:31,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,821 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:47:31,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,821 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:47:31,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,822 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:47:31,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,822 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:31,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,823 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:47:31,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,824 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:47:31,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:31,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,824 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:31,824 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:31,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,825 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:31,826 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contact_no,firstname,lastname,firstname,title,accountid,email,phone,user_name,crmid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:31,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,828 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:31,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,829 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:31,829 [1520] DEBUG index - Prepared sql query parameters : [4,contact_no,firstname,lastname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:47:31,833 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:31,834 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:31,834 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:31,834 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,834 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,835 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:31,835 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:31,844 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,845 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,845 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:31,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,846 [1520] DEBUG index - Entering getListQuery(Accounts,) method ... +01/30/13 11:47:31,847 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,847 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,847 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,849 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:31,849 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:31,849 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,850 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,850 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,850 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:31,851 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:31,851 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,851 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,851 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:31,851 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:31,851 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:31,854 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:31,854 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:31,854 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,854 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,854 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,855 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:31,855 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:31,857 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,857 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:31,858 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:31,861 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:31,861 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,863 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,863 [1520] DEBUG index - Prepared sql query parameters : [vtiger_account] +01/30/13 11:47:31,868 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,868 [1520] DEBUG index - Prepared sql query parameters : [vtiger_accountbillads] +01/30/13 11:47:31,872 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,872 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,874 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,874 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:31,880 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:31,880 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,882 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:31,882 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:31,884 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,884 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:31,884 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:31,890 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,896 [1520] DEBUG index - 查询语句: select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:31,896 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:31,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,902 [1520] DEBUG index - Entering getListViewHeader(Accounts,,,,global,CustomView) method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,903 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,904 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,904 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,905 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:31,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,905 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:31,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,905 [1520] DEBUG index - function getTranslatedString(City) - translated to (城市) +01/30/13 11:47:31,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,906 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:31,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,906 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:31,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,906 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:31,906 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:31,907 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,907 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:31,907 [1520] DEBUG index - Entering getListViewEntries(Accounts,Accounts,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC11,OSSEZ,San Mateo,,,胡昱铖,138 +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,Array,,,,,CustomView) method ... +01/30/13 11:47:31,907 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,907 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,908 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,909 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:31,909 [1520] DEBUG index - Prepared sql query parameters : [6,account_no,accountname,bill_city,website,phone,assigned_user_id] +01/30/13 11:47:31,912 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,account_no,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:31,913 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,913 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,914 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,915 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,bill_city,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:31,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,916 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,916 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,917 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,website,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:31,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,917 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,918 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,919 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,919 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,phone,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:31,919 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,920 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,920 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,assigned_user_id,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:31,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,924 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,924 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,925 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:31,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,925 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,925 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,930 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:31,930 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:31,933 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,account_no,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:31,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,933 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,934 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,934 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,935 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,935 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,bill_city,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:31,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,936 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,website,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:31,937 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,938 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,939 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,phone,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:31,940 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,940 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,941 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,assigned_user_id,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:31,942 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,942 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:31,943 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:31,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,945 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:31,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,945 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:31,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:31,950 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:31,950 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:47:31,952 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:31,953 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:31,953 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:31,954 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:31,954 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,954 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,954 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:31,954 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:31,964 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,964 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,964 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:31,964 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:31,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:31,966 [1520] DEBUG index - Entering getListQuery(Leads,) method ... +01/30/13 11:47:31,966 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,967 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,967 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:31,969 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:31,969 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:31,969 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:31,969 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,970 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,970 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:31,970 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,970 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:31,970 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:31,971 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:31,971 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,971 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,971 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:31,971 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:31,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:31,971 [1520] DEBUG index - Prepared sql query parameters : [Leads] +01/30/13 11:47:31,974 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:31,974 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:31,974 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:31,974 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,974 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:31,974 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:31,974 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,975 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:31,975 [1520] DEBUG index - Prepared sql query parameters : [Leads] +01/30/13 11:47:31,977 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:31,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:31,977 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:31,977 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:31,981 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:31,981 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:31,984 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,984 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leaddetails] +01/30/13 11:47:31,990 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,990 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leadaddress] +01/30/13 11:47:31,994 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:31,994 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leadsubdetails] +01/30/13 11:47:31,999 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:31,999 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,001 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,001 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:32,009 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,009 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:32,012 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,012 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:32,014 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:32,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,014 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,014 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:32,018 [1520] DEBUG index - query being executed : select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,087 [1520] DEBUG index - 查询语句: select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,087 [1520] DEBUG index - query being executed : select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,093 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,093 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,096 [1520] DEBUG index - Entering getListViewHeader(Leads,,,,global,CustomView) method ... +01/30/13 11:47:32,096 [1520] DEBUG index - Entering getURLstring(Leads) method ... +01/30/13 11:47:32,096 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,096 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:32,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,097 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,097 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,099 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:32,099 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,100 [1520] DEBUG index - function getTranslatedString(Lead No) - translated to (潜在客户编号) +01/30/13 11:47:32,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,101 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:47:32,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,101 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:47:32,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,102 [1520] DEBUG index - function getTranslatedString(Company) - translated to (公司) +01/30/13 11:47:32,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,103 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:32,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,103 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网站) +01/30/13 11:47:32,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,104 [1520] DEBUG index - function getTranslatedString(Email) - translated to (工作 Email) +01/30/13 11:47:32,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:32,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,104 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:32,105 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:32,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,106 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,106 [1520] DEBUG index - Entering getListViewEntries(Leads,Leads,lead_no,lastname,firstname,company,phone,website,email,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,106 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,106 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,109 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:32,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,109 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:32,110 [1520] DEBUG index - Prepared sql query parameters : [7,lead_no,lastname,firstname,company,phone,website,email,assigned_user_id] +01/30/13 11:47:32,115 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,116 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:32,117 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:32,117 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:32,117 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,117 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,118 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,118 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:32,123 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,123 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,124 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:32,124 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:32,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,127 [1520] DEBUG index - Entering getListQuery(Documents,) method ... +01/30/13 11:47:32,128 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,128 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,128 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,130 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:32,131 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:32,131 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:32,131 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,131 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,131 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,132 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:32,132 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,133 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:32,133 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:32,133 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:32,133 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,133 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,134 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:32,134 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,134 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,134 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 11:47:32,136 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:32,136 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:32,136 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,136 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,136 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,137 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 11:47:32,138 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,139 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,139 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:32,141 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,142 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:32,144 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,144 [1520] DEBUG index - Prepared sql query parameters : [vtiger_notes] +01/30/13 11:47:32,147 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,147 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:32,153 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,154 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,156 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,156 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:32,158 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,158 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:32,160 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,160 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,160 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:32,163 [1520] DEBUG index - query being executed : select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,166 [1520] DEBUG index - 查询语句: select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,166 [1520] DEBUG index - query being executed : select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,170 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,170 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,171 [1520] DEBUG index - Entering getListViewHeader(Documents,,,,global,CustomView) method ... +01/30/13 11:47:32,171 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:47:32,171 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,171 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,172 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,172 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,173 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:32,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,173 [1520] DEBUG index - function getTranslatedString(Note No) - translated to (文档编号) +01/30/13 11:47:32,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:32,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,174 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:47:32,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:32,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,174 [1520] DEBUG index - function getTranslatedString(File) - translated to (附件) +01/30/13 11:47:32,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:32,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,174 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:32,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:32,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,175 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:32,175 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:32,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,175 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,176 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,note_no,title,filename,modifiedtime,user_name,crmid,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,176 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,176 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,177 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:32,177 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,177 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:32,177 [1520] DEBUG index - Prepared sql query parameters : [8,note_no,notes_title,filename,modifiedtime,assigned_user_id] +01/30/13 11:47:32,180 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,181 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:32,181 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:32,181 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,181 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,181 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:47:32,182 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:47:32,192 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,192 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:32,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,193 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,193 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:32,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,194 [1520] DEBUG index - Entering getListQuery(Calendar,) method ... +01/30/13 11:47:32,195 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,195 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,195 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,197 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:32,197 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:32,197 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,198 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:32,199 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:32,199 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,199 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:32,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,199 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,199 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,200 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,200 [1520] DEBUG index - Prepared sql query parameters : [Calendar] +01/30/13 11:47:32,202 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,202 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,202 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:32,205 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,205 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,208 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,208 [1520] DEBUG index - Prepared sql query parameters : [vtiger_activity] +01/30/13 11:47:32,211 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,211 [1520] DEBUG index - Prepared sql query parameters : [vtiger_seactivityrel] +01/30/13 11:47:32,216 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,216 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,218 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,218 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:32,224 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,224 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,226 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,226 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,228 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,228 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,228 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:32,231 [1520] DEBUG index - query being executed : select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,237 [1520] DEBUG index - 查询语句: select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,237 [1520] DEBUG index - query being executed : select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,243 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,243 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Entering getListViewHeader(Calendar,,,,global,CustomView) method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,244 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,245 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,246 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,246 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:32,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,247 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:47:32,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,247 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:47:32,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,247 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:32,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,247 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:32,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,248 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:47:32,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,248 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:32,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:32,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,248 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:47:32,248 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:32,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,249 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,249 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,activitystatus,activitytype,subject,date_start,due_date,user_name,activityid,type,priority,status,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,249 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,249 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,250 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:32,251 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,251 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:32,251 [1520] DEBUG index - Prepared sql query parameters : [taskstatus,activitytype,subject,parent_id,date_start,due_date,assigned_user_id,status] +01/30/13 11:47:32,255 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,256 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:32,256 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:32,256 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:32,256 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,256 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,256 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,256 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,256 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:32,265 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,265 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,265 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:32,265 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:32,266 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,267 [1520] DEBUG index - Entering getListQuery(Emails,) method ... +01/30/13 11:47:32,267 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,267 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,267 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,270 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:32,270 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:32,270 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:32,270 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,270 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,270 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:32,270 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:32,271 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:32,271 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:32,271 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,271 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,271 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:32,271 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,271 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,272 [1520] DEBUG index - Prepared sql query parameters : [Emails] +01/30/13 11:47:32,274 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:32,274 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:32,274 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:32,274 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,274 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,274 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:32,274 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,275 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,275 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,275 [1520] DEBUG index - Prepared sql query parameters : [Emails] +01/30/13 11:47:32,277 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,277 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,277 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,277 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:32,280 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,280 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:32,283 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,283 [1520] DEBUG index - Prepared sql query parameters : [vtiger_activity] +01/30/13 11:47:32,287 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,287 [1520] DEBUG index - Prepared sql query parameters : [vtiger_emaildetails] +01/30/13 11:47:32,290 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,291 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:32,292 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,293 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:32,295 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,295 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,295 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:32,299 [1520] DEBUG index - query being executed : select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,359 [1520] DEBUG index - 查询语句: select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,359 [1520] DEBUG index - query being executed : select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,364 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,364 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,366 [1520] DEBUG index - Entering getListViewHeader(Emails,,,,global,CustomView) method ... +01/30/13 11:47:32,367 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:47:32,367 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,367 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,367 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,368 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,370 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:32,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,371 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:32,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:32,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,372 [1520] DEBUG index - function getTranslatedString(To) - translated to (To:) +01/30/13 11:47:32,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:32,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,372 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:47:32,372 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:32,373 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,373 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,374 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,subject,to_email,date_start,activityid,type,priority,status,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,374 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,374 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,376 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:32,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,377 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?) +01/30/13 11:47:32,377 [1520] DEBUG index - Prepared sql query parameters : [10,subject,saved_toid,date_start] +01/30/13 11:47:32,381 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,382 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:32,382 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:32,383 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:32,383 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,383 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,383 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,384 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,393 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,393 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,393 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:32,394 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:32,394 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,397 [1520] DEBUG index - Entering getListQuery(HelpDesk,) method ... +01/30/13 11:47:32,398 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,398 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,398 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,398 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,401 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:32,402 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:32,402 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:32,402 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,402 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,402 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:32,403 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,403 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:32,403 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:32,403 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:32,403 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,404 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,404 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:32,404 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,404 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,404 [1520] DEBUG index - Prepared sql query parameters : [HelpDesk] +01/30/13 11:47:32,407 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:32,407 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:32,407 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:32,407 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,407 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,407 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:32,407 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,408 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,408 [1520] DEBUG index - Prepared sql query parameters : [HelpDesk] +01/30/13 11:47:32,410 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,410 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,411 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,411 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,414 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,414 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,417 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,417 [1520] DEBUG index - Prepared sql query parameters : [vtiger_troubletickets] +01/30/13 11:47:32,422 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,422 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,424 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,425 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:32,432 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,432 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,434 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,434 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,437 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,437 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,437 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:32,441 [1520] DEBUG index - query being executed : select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,486 [1520] DEBUG index - 查询语句: select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,486 [1520] DEBUG index - query being executed : select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,491 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,491 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,493 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,,,global,CustomView) method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,494 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,497 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,497 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,498 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:47:32,498 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,498 [1520] DEBUG index - function getTranslatedString(Title) - translated to (名称) +01/30/13 11:47:32,499 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,499 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关于) +01/30/13 11:47:32,499 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,500 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:32,500 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,500 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:47:32,500 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:32,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,501 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:32,501 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:32,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,502 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,502 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,ticket_no,title,parent_id,status,priority,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,503 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,503 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,505 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:32,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,506 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:32,506 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:47:32,510 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,511 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:32,512 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:32,512 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:32,512 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,512 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,513 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,513 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:32,524 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,524 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,524 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,525 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:32,525 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:32,525 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,526 [1520] DEBUG index - Entering getListQuery(Products,) method ... +01/30/13 11:47:32,527 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,527 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,527 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,529 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:32,529 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:32,530 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:32,530 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,530 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,530 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,530 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:32,530 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,530 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,531 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:32,531 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:32,531 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:32,531 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,531 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,531 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,531 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:32,531 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,531 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,532 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:47:32,534 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:32,534 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:32,534 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:32,534 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,534 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,534 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,535 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:32,535 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,535 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,535 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:47:32,537 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,538 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,538 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:32,541 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,541 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:32,544 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,544 [1520] DEBUG index - Prepared sql query parameters : [vtiger_products] +01/30/13 11:47:32,549 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,549 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:32,551 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,551 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:32,553 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,553 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,553 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:32,557 [1520] DEBUG index - query being executed : select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,628 [1520] DEBUG index - 查询语句: select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,628 [1520] DEBUG index - query being executed : select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,636 [1520] DEBUG index - Entering getListViewHeader(Products,,,,global,CustomView) method ... +01/30/13 11:47:32,636 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:47:32,637 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,637 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,640 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,640 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,641 [1520] DEBUG index - function getTranslatedString(Product No) - translated to (产品编号) +01/30/13 11:47:32,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,641 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:32,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,642 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:47:32,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,642 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:47:32,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,643 [1520] DEBUG index - function getTranslatedString(Quantity In Stock) - translated to (库存量) +01/30/13 11:47:32,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,644 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:47:32,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:32,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,644 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:47:32,644 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:32,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,645 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,647 [1520] DEBUG index - Entering getListViewEntries(Products,Products,product_no,productname,productcode,commissionrate,qtyinstock,qty_per_unit,unit_price,crmid,productid,product_no,productname,productcode,productcategory,manufacturer,qty_per_unit,unit_price,weight,pack_size,sales_start_date,sales_end_date,start_date,expiry_date,cost_factor,commissionrate,commissionmethod,discontinued,usageunit,reorderlevel,website,taxclass,mfr_part_no,vendor_part_no,serialno,qtyinstock,productsheet,qtyindemand,glacct,vendor_id,imagename,currency_id +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,649 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:32,649 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,650 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:32,650 [1520] DEBUG index - Prepared sql query parameters : [14,product_no,productname,productcode,commissionrate,qtyinstock,qty_per_unit,unit_price] +01/30/13 11:47:32,654 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,657 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:32,657 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:32,657 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:32,657 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,658 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,658 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,658 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:32,664 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,664 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,664 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:32,664 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:32,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,667 [1520] DEBUG index - Entering getListQuery(Faq,) method ... +01/30/13 11:47:32,668 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,669 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,669 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,671 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:32,671 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:32,672 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:32,672 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,672 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,672 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:32,673 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,673 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:32,673 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:32,673 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:32,673 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,674 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,674 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:32,674 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,674 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,674 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:47:32,676 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:32,676 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:32,677 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:32,677 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,677 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:32,677 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,677 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,677 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:47:32,679 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,680 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,680 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:32,684 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,684 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:32,687 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,687 [1520] DEBUG index - Prepared sql query parameters : [vtiger_faq] +01/30/13 11:47:32,692 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,692 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:32,699 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,699 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:32,702 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,702 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:32,707 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,707 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,707 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:32,710 [1520] DEBUG index - query being executed : select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,714 [1520] DEBUG index - 查询语句: select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,714 [1520] DEBUG index - query being executed : select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,718 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,718 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,719 [1520] DEBUG index - Entering getListViewHeader(Faq,,,,global,CustomView) method ... +01/30/13 11:47:32,719 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:47:32,720 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,720 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,720 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,720 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,721 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,722 [1520] DEBUG index - function getTranslatedString(Faq No) - translated to (问题编号) +01/30/13 11:47:32,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,722 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:47:32,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,722 [1520] DEBUG index - function getTranslatedString(Category) - translated to (类别) +01/30/13 11:47:32,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,722 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:32,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,723 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (发表时间) +01/30/13 11:47:32,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:32,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,723 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:32,723 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:32,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,724 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,724 [1520] DEBUG index - Entering getListViewEntries(Faq,Faq,faq_no,question,category,product_id,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,724 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,724 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,725 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:32,725 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,725 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:32,726 [1520] DEBUG index - Prepared sql query parameters : [15,faq_no,question,faqcategories,product_id,createdtime,modifiedtime] +01/30/13 11:47:32,731 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,734 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:32,734 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:32,734 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:32,734 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,734 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,734 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,735 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:32,741 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,742 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,742 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:32,742 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:32,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,743 [1520] DEBUG index - Entering getListQuery(Vendors,) method ... +01/30/13 11:47:32,744 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,744 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,744 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,746 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:32,746 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:32,746 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:32,747 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,747 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,747 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:32,747 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,747 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,747 [1520] DEBUG index - Prepared sql query parameters : [Vendors] +01/30/13 11:47:32,750 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:32,750 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:32,750 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:32,750 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,750 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,750 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:32,750 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,751 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,751 [1520] DEBUG index - Prepared sql query parameters : [Vendors] +01/30/13 11:47:32,753 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,754 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,754 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:32,756 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,757 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:32,759 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,759 [1520] DEBUG index - Prepared sql query parameters : [vtiger_vendor] +01/30/13 11:47:32,765 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,765 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:32,769 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,769 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:32,771 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,772 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,772 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:32,775 [1520] DEBUG index - query being executed : select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,794 [1520] DEBUG index - 查询语句: select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,794 [1520] DEBUG index - query being executed : select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,798 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,801 [1520] DEBUG index - Entering getListViewHeader(Vendors,,,,global,CustomView) method ... +01/30/13 11:47:32,801 [1520] DEBUG index - Entering getURLstring(Vendors) method ... +01/30/13 11:47:32,801 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,801 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,804 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:32,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,805 [1520] DEBUG index - function getTranslatedString(Vendor No) - translated to (供应商编号) +01/30/13 11:47:32,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:32,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,806 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商名称) +01/30/13 11:47:32,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:32,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,806 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:32,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:32,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,807 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:47:32,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:32,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,807 [1520] DEBUG index - function getTranslatedString(Category) - translated to (类别) +01/30/13 11:47:32,807 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:32,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,808 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,809 [1520] DEBUG index - Entering getListViewEntries(Vendors,Vendors,vendor_no,vendorname,phone,email,category,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,809 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,811 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:32,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,812 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:32,812 [1520] DEBUG index - Prepared sql query parameters : [18,vendor_no,vendorname,phone,email,category] +01/30/13 11:47:32,816 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,847 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:32,848 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:32,848 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:32,848 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,848 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,849 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,849 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,854 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,854 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,854 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:32,855 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:32,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,858 [1520] DEBUG index - Entering getListQuery(PriceBooks,) method ... +01/30/13 11:47:32,859 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,859 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,859 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,862 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:32,862 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:32,862 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:32,862 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,863 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,863 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:32,863 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,864 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,864 [1520] DEBUG index - Prepared sql query parameters : [PriceBooks] +01/30/13 11:47:32,866 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:32,867 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:32,867 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:32,867 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,867 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,868 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:32,868 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,868 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,868 [1520] DEBUG index - Prepared sql query parameters : [PriceBooks] +01/30/13 11:47:32,871 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,871 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,872 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,872 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,875 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,875 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:32,879 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,879 [1520] DEBUG index - Prepared sql query parameters : [vtiger_pricebook] +01/30/13 11:47:32,884 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:32,884 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:32,886 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:32,886 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:32,889 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,890 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:32,890 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:32,893 [1520] DEBUG index - query being executed : select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,933 [1520] DEBUG index - 查询语句: select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:32,933 [1520] DEBUG index - query being executed : select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:32,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,939 [1520] DEBUG index - Entering getListViewHeader(PriceBooks,,,,global,CustomView) method ... +01/30/13 11:47:32,939 [1520] DEBUG index - Entering getURLstring(PriceBooks) method ... +01/30/13 11:47:32,939 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:32,939 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,940 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,940 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,942 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,943 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:32,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,943 [1520] DEBUG index - function getTranslatedString(PriceBook No) - translated to (价格表编号) +01/30/13 11:47:32,944 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:32,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,944 [1520] DEBUG index - function getTranslatedString(Price Book Name) - translated to (价格表名称) +01/30/13 11:47:32,944 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:32,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,944 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:47:32,945 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:32,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:32,945 [1520] DEBUG index - function getTranslatedString(Currency) - translated to (货币) +01/30/13 11:47:32,945 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:32,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,946 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:32,947 [1520] DEBUG index - Entering getListViewEntries(PriceBooks,PriceBooks,pricebook_no,bookname,active,currency_id,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:32,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:32,947 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:32,949 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:32,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,950 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:32,950 [1520] DEBUG index - Prepared sql query parameters : [19,pricebook_no,bookname,active,currency_id] +01/30/13 11:47:32,953 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:32,960 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:32,961 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:32,961 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,961 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,961 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:32,962 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:32,975 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,975 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,975 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:32,976 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:32,977 [1520] DEBUG index - Entering getListQuery(Quotes,) method ... +01/30/13 11:47:32,977 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,977 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,978 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:32,980 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:32,980 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:32,980 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,980 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,980 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:32,981 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:32,981 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:32,981 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:32,982 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:47:32,984 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:32,984 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:32,984 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,984 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,984 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:32,984 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,985 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:32,985 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:47:32,987 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:32,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:32,987 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:32,987 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:32,991 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:32,991 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:32,994 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:32,994 [1520] DEBUG index - Prepared sql query parameters : [vtiger_quotes] +01/30/13 11:47:32,999 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:32,999 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,001 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,001 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,008 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,009 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:33,011 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,011 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:33,016 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:33,016 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,016 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,016 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:33,020 [1520] DEBUG index - query being executed : select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,102 [1520] DEBUG index - 查询语句: select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,103 [1520] DEBUG index - query being executed : select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,108 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,108 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,111 [1520] DEBUG index - Entering getListViewHeader(Quotes,,,,global,CustomView) method ... +01/30/13 11:47:33,111 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:47:33,111 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,112 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:33,112 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,112 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,112 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,114 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:33,115 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,116 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:47:33,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,116 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:33,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,117 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:47:33,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,117 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:47:33,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,118 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:33,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,118 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:33,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:33,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,119 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:33,119 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:33,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,120 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,121 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,quote_no,subject,quotestage,potentialid,accountid,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,121 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,121 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,123 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:33,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,123 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:33,124 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:33,127 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,129 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:33,129 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:33,129 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,129 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,129 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,129 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,138 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,139 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,139 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:33,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,140 [1520] DEBUG index - Entering getListQuery(PurchaseOrder,) method ... +01/30/13 11:47:33,141 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,141 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,141 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,143 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:33,143 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:33,143 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,143 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,144 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,144 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:33,144 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:33,144 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,144 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,145 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,145 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,145 [1520] DEBUG index - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:47:33,147 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:33,147 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:33,147 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,148 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,148 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,148 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,148 [1520] DEBUG index - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:47:33,150 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,150 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,150 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,153 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,153 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:33,156 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,156 [1520] DEBUG index - Prepared sql query parameters : [vtiger_purchaseorder] +01/30/13 11:47:33,160 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,160 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,162 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,162 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,168 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,168 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:33,170 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,170 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:33,172 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,172 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,172 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,177 [1520] DEBUG index - query being executed : select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,246 [1520] DEBUG index - 查询语句: select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,246 [1520] DEBUG index - query being executed : select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,251 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,251 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,254 [1520] DEBUG index - Entering getListViewHeader(PurchaseOrder,,,,global,CustomView) method ... +01/30/13 11:47:33,254 [1520] DEBUG index - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:47:33,254 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,254 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,255 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,255 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,257 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,257 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,258 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,258 [1520] DEBUG index - function getTranslatedString(PurchaseOrder No) - translated to (采购订单编号) +01/30/13 11:47:33,258 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,259 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:33,259 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,259 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:47:33,260 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,260 [1520] DEBUG index - function getTranslatedString(Tracking Number) - translated to (追踪编号) +01/30/13 11:47:33,260 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,260 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:33,261 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:33,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,261 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:33,261 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:33,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,262 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,263 [1520] DEBUG index - Entering getListViewEntries(PurchaseOrder,PurchaseOrder,purchaseorder_no,subject,vendorid,tracking_no,total,user_name,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,263 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,263 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,265 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:33,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,266 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:33,266 [1520] DEBUG index - Prepared sql query parameters : [21,purchaseorder_no,subject,vendor_id,tracking_no,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:33,270 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,273 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:33,274 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:33,274 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,274 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,274 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,274 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:33,287 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,287 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,287 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:33,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,289 [1520] DEBUG index - Entering getListQuery(SalesOrder,) method ... +01/30/13 11:47:33,290 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,290 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,290 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,290 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,292 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:33,292 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:33,292 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,293 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,293 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,293 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:33,293 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:33,294 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,294 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,294 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,294 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,294 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,294 [1520] DEBUG index - Prepared sql query parameters : [SalesOrder] +01/30/13 11:47:33,297 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:33,297 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:33,297 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,297 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,297 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,298 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,298 [1520] DEBUG index - Prepared sql query parameters : [SalesOrder] +01/30/13 11:47:33,300 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,300 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,300 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:33,303 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,303 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,306 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,306 [1520] DEBUG index - Prepared sql query parameters : [vtiger_salesorder] +01/30/13 11:47:33,311 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,311 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,314 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,314 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,323 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,323 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,325 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,325 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,328 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,328 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,328 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:33,334 [1520] DEBUG index - query being executed : select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,396 [1520] DEBUG index - 查询语句: select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,397 [1520] DEBUG index - query being executed : select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,402 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,402 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,405 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,,,global,CustomView) method ... +01/30/13 11:47:33,405 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:47:33,405 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,405 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,406 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,406 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,408 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,408 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,409 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,409 [1520] DEBUG index - function getTranslatedString(SalesOrder No) - translated to (销售订单编号) +01/30/13 11:47:33,410 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,410 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:33,410 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,411 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:33,411 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,411 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:47:33,411 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,412 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:33,412 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:33,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,412 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:33,412 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:33,413 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,413 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,414 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,salesorder_no,subject,accountid,quoteid,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,414 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,414 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,417 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:33,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,417 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:33,418 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:33,421 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,424 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:33,424 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:33,425 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:33,425 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,425 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,425 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,425 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,425 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:33,435 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,436 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,436 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:33,436 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:33,436 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,438 [1520] DEBUG index - Entering getListQuery(Invoice,) method ... +01/30/13 11:47:33,438 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,438 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,438 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,441 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:33,441 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:33,441 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:33,441 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,441 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,441 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,441 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:33,442 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,442 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:33,442 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:33,442 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:33,442 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,443 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,443 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:33,443 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,443 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,443 [1520] DEBUG index - Prepared sql query parameters : [Invoice] +01/30/13 11:47:33,445 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:33,445 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:33,445 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:33,446 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,446 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,446 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:33,446 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,446 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,446 [1520] DEBUG index - Prepared sql query parameters : [Invoice] +01/30/13 11:47:33,448 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,448 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,449 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,449 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:33,452 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,452 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,454 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,455 [1520] DEBUG index - Prepared sql query parameters : [vtiger_invoice] +01/30/13 11:47:33,458 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,458 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,460 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,460 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,467 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,467 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,469 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,469 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:33,471 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,471 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,472 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:33,476 [1520] DEBUG index - query being executed : select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,523 [1520] DEBUG index - 查询语句: select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,523 [1520] DEBUG index - query being executed : select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,532 [1520] DEBUG index - Entering getListViewHeader(Invoice,,,,global,CustomView) method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,536 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,537 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:47:33,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,538 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:33,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,538 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:47:33,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,539 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:33,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,539 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:33,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:33,540 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,540 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:33,540 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:33,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,541 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,542 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,invoice_no,subject,salesorderid,invoicestatus,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,542 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,542 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,544 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:33,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,545 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:33,545 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:33,549 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,550 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:33,551 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:33,551 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,551 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,551 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,552 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,563 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,563 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,563 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:33,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,566 [1520] DEBUG index - Entering getListQuery(Campaigns,) method ... +01/30/13 11:47:33,567 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,567 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,568 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,568 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,570 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:33,571 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:33,571 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,571 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,572 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,572 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:33,573 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:33,573 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,573 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,573 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,573 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,574 [1520] DEBUG index - Prepared sql query parameters : [Campaigns] +01/30/13 11:47:33,576 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:33,576 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:33,576 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,576 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,576 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,576 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,577 [1520] DEBUG index - Prepared sql query parameters : [Campaigns] +01/30/13 11:47:33,578 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,579 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,579 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,582 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,582 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:33,585 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,586 [1520] DEBUG index - Prepared sql query parameters : [vtiger_campaign] +01/30/13 11:47:33,591 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,591 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,593 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,593 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,601 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,601 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:33,604 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,604 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:33,606 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,606 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,606 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,606 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:33,610 [1520] DEBUG index - query being executed : select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,656 [1520] DEBUG index - 查询语句: select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,656 [1520] DEBUG index - query being executed : select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,660 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,661 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,663 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,,,global,CustomView) method ... +01/30/13 11:47:33,663 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:47:33,664 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,664 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,664 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,664 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,667 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,668 [1520] DEBUG index - function getTranslatedString(Campaign No) - translated to (营销活动编号) +01/30/13 11:47:33,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,668 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:47:33,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,669 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:47:33,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,670 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:47:33,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,670 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:47:33,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,671 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:47:33,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:33,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,671 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:33,671 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:33,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,672 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,673 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,campaign_no,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,673 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,673 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,675 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:33,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,676 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:33,676 [1520] DEBUG index - Prepared sql query parameters : [26,campaign_no,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:47:33,681 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,704 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:33,704 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:33,705 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,705 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,705 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,706 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:33,709 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,710 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,710 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:33,711 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,713 [1520] DEBUG index - Entering getListQuery(PBXManager,) method ... +01/30/13 11:47:33,714 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,714 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,714 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,717 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:33,717 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:33,717 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,717 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,718 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,719 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:33,719 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:33,719 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,719 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,720 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,720 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,720 [1520] DEBUG index - Prepared sql query parameters : [PBXManager] +01/30/13 11:47:33,723 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:33,723 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:33,723 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,723 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,724 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,724 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,724 [1520] DEBUG index - Prepared sql query parameters : [PBXManager] +01/30/13 11:47:33,726 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,726 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,727 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,727 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:33,731 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,731 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,734 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,734 [1520] DEBUG index - Prepared sql query parameters : [vtiger_pbxmanager] +01/30/13 11:47:33,739 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,739 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,741 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,741 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,744 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,744 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,744 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:33,749 [1520] DEBUG index - query being executed : select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,779 [1520] DEBUG index - 查询语句: select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,779 [1520] DEBUG index - query being executed : select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,782 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,782 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,784 [1520] DEBUG index - Entering getListViewHeader(PBXManager,,,,global,CustomView) method ... +01/30/13 11:47:33,785 [1520] DEBUG index - Entering getURLstring(PBXManager) method ... +01/30/13 11:47:33,785 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,785 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,785 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,786 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,788 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,789 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:33,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,789 [1520] DEBUG index - function getTranslatedString(Call From) - translated to (呼叫来自) +01/30/13 11:47:33,789 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:33,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,789 [1520] DEBUG index - function getTranslatedString(Call To) - translated to (呼叫给) +01/30/13 11:47:33,790 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:33,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,790 [1520] DEBUG index - function getTranslatedString(Time Of Call) - translated to (呼叫时间) +01/30/13 11:47:33,790 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:33,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,791 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:33,791 [1520] DEBUG index - Entering isPermitted(PBXManager,EditView,) method ... +01/30/13 11:47:33,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,792 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,792 [1520] DEBUG index - Entering getListViewEntries(PBXManager,PBXManager,callfrom,callto,timeofcall,status,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,793 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,795 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:33,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,796 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:33,796 [1520] DEBUG index - Prepared sql query parameters : [36,callfrom,callto,timeofcall,status] +01/30/13 11:47:33,799 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,803 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:33,803 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:33,803 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,804 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,804 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,804 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:33,812 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,812 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,813 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:33,813 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:33,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,814 [1520] DEBUG index - Entering getListQuery(ServiceContracts,) method ... +01/30/13 11:47:33,815 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,815 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,815 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,817 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:33,817 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:33,817 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,818 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,818 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:33,818 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:33,818 [1520] INFO VT - PearDatabase ->TRANS creating new connection +01/30/13 11:47:33,822 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:33,824 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:33,824 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:33,824 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:33,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,825 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,825 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:33,825 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:33,825 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:33,825 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,825 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,826 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,826 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,826 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:33,826 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:33,826 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,826 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,826 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,827 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:33,827 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,827 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,827 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:33,829 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:33,829 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:33,829 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,829 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,829 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:33,830 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,830 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,830 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:33,833 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,833 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,833 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:33,836 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,836 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:33,839 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,839 [1520] DEBUG index - Prepared sql query parameters : [vtiger_servicecontracts] +01/30/13 11:47:33,844 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,844 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,847 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,847 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,854 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,854 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:33,856 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,856 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:33,859 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,859 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,859 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:33,862 [1520] DEBUG index - query being executed : select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,903 [1520] DEBUG index - 查询语句: select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') +01/30/13 11:47:33,903 [1520] DEBUG index - query being executed : select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:33,908 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,908 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,910 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,,,global,CustomView) method ... +01/30/13 11:47:33,911 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:47:33,911 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:33,911 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,911 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,912 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,914 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,915 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:47:33,915 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,916 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (关联于) +01/30/13 11:47:33,916 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,916 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:33,916 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,917 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:33,917 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,917 [1520] DEBUG index - function getTranslatedString(Due date) - translated to (到期日期) +01/30/13 11:47:33,917 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,918 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:47:33,918 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:33,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:33,918 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:33,918 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:33,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,919 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:33,920 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,contract_no,subject,sc_related_to,user_name,start_date,due_date,progress,contract_status,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:33,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:33,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:33,922 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:33,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,923 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:33,923 [1520] DEBUG index - Prepared sql query parameters : [37,subject,sc_related_to,assigned_user_id,start_date,due_date,progress,contract_status] +01/30/13 11:47:33,927 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:33,932 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:33,932 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:33,933 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,933 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,933 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,933 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,933 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:33,933 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,940 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,940 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,940 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:33,941 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:33,942 [1520] DEBUG index - Entering getListQuery(Services,) method ... +01/30/13 11:47:33,942 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,942 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,942 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,945 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:33,945 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:33,945 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,945 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:33,946 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:33,946 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:33,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:33,947 [1520] DEBUG index - Prepared sql query parameters : [Services] +01/30/13 11:47:33,949 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:33,949 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:33,949 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,949 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:33,950 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,950 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:33,950 [1520] DEBUG index - Prepared sql query parameters : [Services] +01/30/13 11:47:33,952 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,952 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:33,953 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,956 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:33,956 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:33,959 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,959 [1520] DEBUG index - Prepared sql query parameters : [vtiger_service] +01/30/13 11:47:33,964 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:33,964 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:33,966 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:33,966 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:33,974 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:33,974 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:33,976 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:33,976 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:33,978 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:33,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:33,978 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:33,978 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:33,981 [1520] DEBUG index - query being executed : select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,004 [1520] DEBUG index - 查询语句: select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,004 [1520] DEBUG index - query being executed : select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,008 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,008 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,009 [1520] DEBUG index - Entering getListViewHeader(Services,,,,global,CustomView) method ... +01/30/13 11:47:34,009 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:47:34,009 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,009 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:34,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,010 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,010 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,011 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:34,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,012 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:47:34,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,012 [1520] DEBUG index - function getTranslatedString(Usage Unit) - translated to (计费单位) +01/30/13 11:47:34,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,012 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:47:34,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,012 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:47:34,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,013 [1520] DEBUG index - function getTranslatedString(Service Category) - translated to (分类) +01/30/13 11:47:34,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:34,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,013 [1520] DEBUG index - function getTranslatedString(Owner) - translated to (所有人) +01/30/13 11:47:34,013 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:34,013 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,013 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,014 [1520] DEBUG index - Entering getListViewEntries(Services,Services,service_no,servicename,service_usageunit,unit_price,qty_per_unit,servicecategory,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,014 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,014 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,015 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:34,015 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,016 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:34,016 [1520] DEBUG index - Prepared sql query parameters : [38,servicename,service_usageunit,unit_price,qty_per_unit,servicecategory,assigned_user_id] +01/30/13 11:47:34,019 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,021 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:34,021 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:34,021 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,021 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,021 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,021 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:34,026 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,027 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,027 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:34,027 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,028 [1520] DEBUG index - Entering getListQuery(Assets,) method ... +01/30/13 11:47:34,029 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,029 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,029 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,029 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,032 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:34,032 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:34,032 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,032 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,032 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,032 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,032 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:34,035 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:34,035 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:34,035 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:34,036 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:34,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,036 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:34,036 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:34,036 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:34,036 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:34,036 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:34,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,037 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,037 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:34,037 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,037 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:34,037 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:34,038 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,038 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,038 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,038 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,038 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:34,041 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:34,041 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:34,041 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,041 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,041 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,041 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,041 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,041 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,041 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:34,044 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,044 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,044 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:34,048 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,048 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:34,052 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,052 [1520] DEBUG index - Prepared sql query parameters : [vtiger_assets] +01/30/13 11:47:34,058 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,058 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:34,061 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,061 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:34,064 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,064 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,064 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:34,067 [1520] DEBUG index - query being executed : select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,134 [1520] DEBUG index - 查询语句: select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,134 [1520] DEBUG index - query being executed : select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,140 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,140 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,143 [1520] DEBUG index - Entering getListViewHeader(Assets,,,,global,CustomView) method ... +01/30/13 11:47:34,143 [1520] DEBUG index - Entering getURLstring(Assets) method ... +01/30/13 11:47:34,143 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,143 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,144 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,144 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,146 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:34,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,147 [1520] DEBUG index - function getTranslatedString(Asset No) - translated to (资产编号) +01/30/13 11:47:34,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:34,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,148 [1520] DEBUG index - function getTranslatedString(Asset Name) - translated to (资产名称) +01/30/13 11:47:34,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:34,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,148 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:34,148 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:34,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,149 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,150 [1520] DEBUG index - Entering getListViewEntries(Assets,Assets,asset_no,assetname,account,product,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,150 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,150 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,152 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:34,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,153 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?) +01/30/13 11:47:34,153 [1520] DEBUG index - Prepared sql query parameters : [41,asset_no,assetname,product] +01/30/13 11:47:34,156 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,162 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,162 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,163 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,163 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,164 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,164 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,168 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,168 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,168 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:34,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,172 [1520] DEBUG index - Entering getListQuery(ModComments,) method ... +01/30/13 11:47:34,172 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,173 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,173 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,175 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,175 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,175 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,175 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,176 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,176 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,176 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,176 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,178 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,178 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,178 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,178 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,178 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:34,183 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:34,183 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:34,183 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:34,183 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:34,183 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,184 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,184 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:34,184 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:34,184 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:34,184 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:34,184 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,184 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,185 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:34,185 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:34,185 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:34,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,185 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,185 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,185 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,185 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,186 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,186 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,186 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,189 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,189 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,189 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:34,189 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:34,189 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:34,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,189 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,191 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,191 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,191 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,191 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,191 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,191 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,194 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,194 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,195 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,195 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,196 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,196 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,196 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,196 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,198 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,198 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,199 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,199 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,199 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,199 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,200 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,200 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,200 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,203 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,203 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,203 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,203 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,203 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:34,205 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,206 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,206 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,206 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,206 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,206 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,208 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,208 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,208 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,208 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,209 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:34,210 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,211 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,211 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,213 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,214 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,216 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,216 [1520] DEBUG index - Prepared sql query parameters : [vtiger_modcomments] +01/30/13 11:47:34,221 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,221 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:34,228 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,229 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,231 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,231 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,233 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,233 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,236 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,236 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,236 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,239 [1520] DEBUG index - query being executed : select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,243 [1520] DEBUG index - 查询语句: select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,243 [1520] DEBUG index - query being executed : select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,246 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,246 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Entering getListViewHeader(ModComments,,,,global,CustomView) method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Entering getURLstring(ModComments) method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,248 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,249 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,249 [1520] DEBUG index - Entering getColumnFields(ModComments) method ... +01/30/13 11:47:34,250 [1520] DEBUG index - in getColumnFields ModComments +01/30/13 11:47:34,250 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,250 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,250 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,250 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:34,254 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,254 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,254 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,254 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:34,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,255 [1520] DEBUG index - function getTranslatedString(Comment) - translated to (评论) +01/30/13 11:47:34,255 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:34,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,255 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (Related To) +01/30/13 11:47:34,255 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:34,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,255 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:34,255 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:34,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,255 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:34,256 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:34,256 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,256 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,256 [1520] DEBUG index - Entering getListViewEntries(ModComments,ModComments,commentcontent,related_to,modifiedtime,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,256 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,256 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,258 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:34,258 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,258 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:34,258 [1520] DEBUG index - Prepared sql query parameters : [45,commentcontent,related_to,modifiedtime,assigned_user_id] +01/30/13 11:47:34,261 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,285 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,285 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,285 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,285 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,285 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,285 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,288 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,288 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,288 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:34,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,304 [1520] DEBUG index - Entering getListQuery(ProjectMilestone,) method ... +01/30/13 11:47:34,305 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,305 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,306 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,308 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,308 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,309 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,309 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,309 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,309 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,309 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,309 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,312 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,312 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,312 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,313 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,313 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:34,316 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,316 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,316 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,316 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,317 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,317 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,317 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,319 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,320 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,321 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,321 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,321 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,321 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,322 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,322 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,322 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,325 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,325 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,325 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,325 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,326 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:34,328 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,328 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,328 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,329 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,329 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,329 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,329 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,331 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,331 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,331 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,332 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,332 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:34,334 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,334 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,335 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,335 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,338 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,338 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,341 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,341 [1520] DEBUG index - Prepared sql query parameters : [vtiger_projectmilestone] +01/30/13 11:47:34,346 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,346 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:34,354 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,354 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,356 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,356 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,359 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,359 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,359 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,359 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,362 [1520] DEBUG index - query being executed : select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,420 [1520] DEBUG index - 查询语句: select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,420 [1520] DEBUG index - query being executed : select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,424 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,425 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,427 [1520] DEBUG index - Entering getListViewHeader(ProjectMilestone,,,,global,CustomView) method ... +01/30/13 11:47:34,427 [1520] DEBUG index - Entering getURLstring(ProjectMilestone) method ... +01/30/13 11:47:34,428 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,428 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,428 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,428 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,430 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,431 [1520] DEBUG index - Entering getColumnFields(ProjectMilestone) method ... +01/30/13 11:47:34,431 [1520] DEBUG index - in getColumnFields ProjectMilestone +01/30/13 11:47:34,431 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,431 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,432 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,432 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,432 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:34,438 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,439 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,439 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,439 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,439 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,440 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:34,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,440 [1520] DEBUG index - function getTranslatedString(Project Milestone Name) - translated to (Project Milestone Name) +01/30/13 11:47:34,441 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:34,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,441 [1520] DEBUG index - function getTranslatedString(Milestone Date) - translated to (Milestone Date) +01/30/13 11:47:34,441 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:34,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,441 [1520] DEBUG index - function getTranslatedString(description) - translated to (description) +01/30/13 11:47:34,442 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:34,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,442 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:47:34,442 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:34,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,442 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:34,443 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:34,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,443 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,444 [1520] DEBUG index - Entering getListViewEntries(ProjectMilestone,ProjectMilestone,projectmilestonename,projectmilestonedate,description,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,444 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,444 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,445 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:34,445 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,446 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:34,446 [1520] DEBUG index - Prepared sql query parameters : [46,projectmilestonename,projectmilestonedate,description,createdtime,modifiedtime] +01/30/13 11:47:34,451 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,452 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,452 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,452 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,453 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,453 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,453 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,455 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,455 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,456 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:34,456 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,468 [1520] DEBUG index - Entering getListQuery(ProjectTask,) method ... +01/30/13 11:47:34,469 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,469 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,469 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,469 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,471 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,471 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,471 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,472 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,472 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,472 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,474 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,474 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,475 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,475 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:34,478 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,478 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,478 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,478 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,478 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,478 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,480 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,481 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,481 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,481 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,481 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,481 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,482 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,482 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,482 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,484 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,484 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,484 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,484 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,485 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,485 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:34,487 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,487 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,487 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,488 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,488 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,488 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,490 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,491 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,491 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,491 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,491 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:34,493 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,494 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,494 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,496 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,496 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,500 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,500 [1520] DEBUG index - Prepared sql query parameters : [vtiger_projecttask] +01/30/13 11:47:34,504 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,504 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,507 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,507 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:34,515 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,515 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,518 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,518 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,520 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,520 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,520 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,520 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,523 [1520] DEBUG index - query being executed : select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,552 [1520] DEBUG index - 查询语句: select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,552 [1520] DEBUG index - query being executed : select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,556 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,556 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Entering getListViewHeader(ProjectTask,,,,global,CustomView) method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Entering getURLstring(ProjectTask) method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,558 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,559 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,559 [1520] DEBUG index - Entering getColumnFields(ProjectTask) method ... +01/30/13 11:47:34,559 [1520] DEBUG index - in getColumnFields ProjectTask +01/30/13 11:47:34,560 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,560 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,560 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,560 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,560 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,560 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:34,568 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,568 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,569 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,569 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,570 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,570 [1520] DEBUG index - function getTranslatedString(Project Task Name) - translated to (任务名称) +01/30/13 11:47:34,570 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,570 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,570 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:34,571 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,571 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:47:34,571 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,571 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (任务进程) +01/30/13 11:47:34,572 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,572 [1520] DEBUG index - function getTranslatedString(Worked Hours) - translated to (已工作小时) +01/30/13 11:47:34,572 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,572 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:34,573 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,573 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:47:34,573 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:34,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,574 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:34,574 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:34,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,575 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,575 [1520] DEBUG index - Entering getListViewEntries(ProjectTask,ProjectTask,projecttaskname,projectid,projecttaskpriority,projecttaskprogress,projecttaskhours,startdate,enddate,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,575 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,576 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,578 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:34,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,579 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:34,579 [1520] DEBUG index - Prepared sql query parameters : [47,projecttaskname,projectid,projecttaskpriority,projecttaskprogress,projecttaskhours,startdate,enddate,assigned_user_id] +01/30/13 11:47:34,583 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,584 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,584 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,585 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,585 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,585 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,585 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,588 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,588 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,588 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:34,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,596 [1520] DEBUG index - Entering getListQuery(Project,) method ... +01/30/13 11:47:34,596 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,596 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,597 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,597 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,599 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,599 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,599 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,599 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,599 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,599 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,602 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,602 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,602 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,602 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:34,606 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:34,606 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:34,606 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:34,606 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,606 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,606 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:34,606 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:34,607 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:34,607 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,607 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,607 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,607 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,608 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,608 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,608 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,608 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,608 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,608 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,608 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,608 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,612 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,612 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,612 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,612 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,613 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:34,615 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,615 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,615 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,615 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,616 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,616 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,618 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,618 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,618 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,618 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,618 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:34,620 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,621 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,621 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,624 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,624 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,627 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,627 [1520] DEBUG index - Prepared sql query parameters : [vtiger_project] +01/30/13 11:47:34,632 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,632 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,634 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,634 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:34,641 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,642 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,644 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,644 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,647 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,647 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,647 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,650 [1520] DEBUG index - query being executed : select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,684 [1520] DEBUG index - 查询语句: select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,684 [1520] DEBUG index - query being executed : select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,688 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,688 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,691 [1520] DEBUG index - Entering getListViewHeader(Project,,,,global,CustomView) method ... +01/30/13 11:47:34,691 [1520] DEBUG index - Entering getURLstring(Project) method ... +01/30/13 11:47:34,691 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,691 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,691 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,692 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,692 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,694 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,694 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,694 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:47:34,695 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:47:34,695 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,695 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,695 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,695 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,695 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,696 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:34,704 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,704 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,704 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,705 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,705 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:47:34,706 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,706 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:34,706 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,707 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:34,707 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,707 [1520] DEBUG index - function getTranslatedString(Target End Date) - translated to (目标结束日期) +01/30/13 11:47:34,707 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,708 [1520] DEBUG index - function getTranslatedString(Actual End Date) - translated to (实际结束日期) +01/30/13 11:47:34,708 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,708 [1520] DEBUG index - function getTranslatedString(Target Budget) - translated to (目标预算) +01/30/13 11:47:34,708 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,709 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:47:34,709 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,709 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:34,709 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:34,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,710 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:34,710 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:34,711 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,711 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,711 [1520] DEBUG index - Entering getListViewEntries(Project,Project,projectname,linktoaccountscontacts,startdate,targetenddate,actualenddate,targetbudget,progress,projectstatus,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,712 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,712 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,713 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:34,713 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,714 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?) +01/30/13 11:47:34,714 [1520] DEBUG index - Prepared sql query parameters : [48,projectname,linktoaccountscontacts,startdate,targetenddate,actualenddate,targetbudget,progress,projectstatus,assigned_user_id] +01/30/13 11:47:34,717 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,760 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,761 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,762 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,762 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,762 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,762 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,765 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,765 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,765 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:34,765 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:34,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,778 [1520] DEBUG index - Entering getListQuery(SMSNotifier,) method ... +01/30/13 11:47:34,778 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,778 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,778 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,778 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,781 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,781 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,781 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,781 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,781 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,781 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,783 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,784 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,784 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,784 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:34,784 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:34,784 [1520] INFO VT - PearDatabase ->TRANS creating new connection +01/30/13 11:47:34,788 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:34,791 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,791 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,791 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,791 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,792 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,792 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,792 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,794 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,794 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,794 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:34,795 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:34,795 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:34,795 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:34,798 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:34,798 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:34,798 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,798 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,798 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,798 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:34,800 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:34,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,800 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,800 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:34,800 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,801 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:34,801 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:34,803 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,803 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:34,803 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:34,806 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:34,806 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:34,809 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,809 [1520] DEBUG index - Prepared sql query parameters : [vtiger_smsnotifier] +01/30/13 11:47:34,815 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:34,815 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:34,817 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:34,818 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:34,825 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:34,825 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:34,827 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:34,827 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:34,829 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,830 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:34,830 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:34,832 [1520] DEBUG index - query being executed : select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,903 [1520] DEBUG index - 查询语句: select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') +01/30/13 11:47:34,903 [1520] DEBUG index - query being executed : select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:34,906 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,906 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,909 [1520] DEBUG index - Entering getListViewHeader(SMSNotifier,,,,global,CustomView) method ... +01/30/13 11:47:34,909 [1520] DEBUG index - Entering getURLstring(SMSNotifier) method ... +01/30/13 11:47:34,909 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:34,909 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,910 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,910 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,912 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,912 [1520] DEBUG index - Entering getColumnFields(SMSNotifier) method ... +01/30/13 11:47:34,913 [1520] DEBUG index - in getColumnFields SMSNotifier +01/30/13 11:47:34,913 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,913 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,913 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:34,914 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:34,918 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,919 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:34,919 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,920 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:34,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,920 [1520] DEBUG index - function getTranslatedString(message) - translated to (消息) +01/30/13 11:47:34,920 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:34,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,921 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:34,921 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:34,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,921 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:47:34,921 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:34,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:34,922 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:34,922 [1520] DEBUG index - Entering isPermitted(SMSNotifier,EditView,) method ... +01/30/13 11:47:34,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:34,923 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:34,923 [1520] DEBUG index - Entering getListViewEntries(SMSNotifier,SMSNotifier,message,user_name,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:34,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:34,924 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:34,926 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:34,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:34,927 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:34,927 [1520] DEBUG index - Prepared sql query parameters : [50,message,assigned_user_id,createdtime,modifiedtime] +01/30/13 11:47:34,930 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:34,931 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:47:34,931 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:34,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:40,471 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:40,606 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:40,606 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:40,606 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:40,607 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:40,607 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'UnifiedSearchModules', + 'ajax' => 'true', +) +01/30/13 11:47:40,607 [1520] INFO index - About to take action HomeAjax +01/30/13 11:47:40,607 [1520] DEBUG index - in HomeAjax +01/30/13 11:47:40,607 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:47:40,607 [1520] INFO index - current module is Home +01/30/13 11:47:40,656 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:40,656 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:40,656 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:40,656 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:40,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:40,657 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:40,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:40,657 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:40,657 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:40,665 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:40,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:40,665 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:40,665 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:40,666 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:40,666 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:40,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,667 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:40,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,667 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:40,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,668 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:40,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,668 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:40,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,668 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:40,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,669 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:40,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,669 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:40,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,670 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:40,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,670 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:40,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,671 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:40,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,671 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:40,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,672 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:40,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,672 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:40,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,672 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:40,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,673 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:40,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,673 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:40,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,674 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:40,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,674 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,675 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,676 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:40,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,677 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:40,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,677 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:40,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,678 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:40,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,678 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,679 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:40,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,680 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:40,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,680 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:40,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,681 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:40,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,681 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:40,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,682 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:40,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,682 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:40,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,683 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:40,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,683 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:40,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,683 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:40,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,684 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:40,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,684 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:40,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,685 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:40,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,685 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:40,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,686 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:40,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,686 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:40,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:40,686 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:40,693 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:40,693 [1520] DEBUG index - Prepared sql query parameters : [389,1,Home,HomeAjax,,2013-01-30 11:47:40] +01/30/13 11:47:40,697 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:40,697 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:40,697 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:40,697 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:40,699 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:40,699 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:40,701 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:40,701 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:40,703 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:40,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:40,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,704 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:40,704 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:40,704 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:40,704 [1520] DEBUG index - skipping headers +01/30/13 11:47:40,712 [1520] DEBUG index - query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:47:40,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,729 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:40,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,730 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:40,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:40,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,730 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:40,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:40,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,731 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:40,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:40,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,732 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:40,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:40,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,733 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:40,733 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,733 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:40,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,734 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:40,734 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,734 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:40,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,735 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:40,735 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,735 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,735 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:40,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,736 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:40,736 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,736 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:40,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,737 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:40,737 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,737 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:40,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,737 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:40,738 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,738 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,738 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:40,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,738 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:40,738 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,738 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,738 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:40,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,739 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:40,739 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,739 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:40,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,740 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:40,740 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,740 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,740 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:40,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,741 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:40,741 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,741 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,741 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:40,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,741 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:40,742 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,742 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:40,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,742 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:40,742 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,743 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:40,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,744 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:40,744 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,744 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,744 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:40,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,744 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:40,744 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,745 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,745 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:40,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,746 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:47:40,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,746 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:40,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,746 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:40,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:40,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,747 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:40,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,747 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:40,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,748 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:47:40,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,748 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:40,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,749 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:40,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,749 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:40,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,750 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:40,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:40,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,750 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:40,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:40,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:40,751 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:40,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:40,751 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:44,094 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:44,221 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:44,221 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:44,222 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:44,222 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:44,222 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:47:44,222 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:47:44,222 [1520] DEBUG index - in CalendarAjax +01/30/13 11:47:44,223 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:47:44,223 [1520] INFO index - current module is Calendar +01/30/13 11:47:44,271 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:44,271 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:44,271 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:44,272 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:44,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:44,272 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:44,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:44,272 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:44,272 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:44,281 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:44,282 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:44,282 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:44,282 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:44,282 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:44,283 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:44,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,283 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:44,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,284 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:44,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,284 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:44,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,284 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:44,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,285 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:44,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,285 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:44,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,286 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:44,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,286 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:44,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,287 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:44,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,287 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:44,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,287 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:44,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,288 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:44,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,288 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:44,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,289 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:44,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,289 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:44,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,290 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:44,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,290 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:44,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,290 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:44,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,291 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:44,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,291 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:44,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,292 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:44,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,292 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,293 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:44,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,294 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:44,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,294 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:44,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,295 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:44,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,295 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:44,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,295 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:44,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,296 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:44,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,296 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:44,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,297 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:44,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,297 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:44,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,298 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:44,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,298 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:44,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,298 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:44,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,299 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:44,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,299 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:44,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,300 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:44,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,300 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:44,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,301 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:44,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,301 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:44,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,301 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:44,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,302 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:44,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,302 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:44,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:44,303 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:44,303 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:44,303 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:44,303 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:44,303 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:44,305 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:44,305 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:44,307 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:44,307 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:44,309 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:44,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:44,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:44,310 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:44,310 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:44,310 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:44,310 [1520] DEBUG index - skipping headers +01/30/13 11:47:44,311 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:47:44,312 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:44,316 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:44,316 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:47:44,316 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:47:44,317 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:47:44,321 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:48')) +01/30/13 11:47:44,324 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:47:48,930 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:49,059 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:49,059 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:49,059 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:49,059 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:49,059 [1520] DEBUG index - array ( + 'action' => 'UnifiedSearch', + 'module' => 'Home', + 'parenttab' => 'Marketing', + 'search_onlyin' => '--USESELECTED--', + 'query_string' => 'OSSEZ', + 'x' => '15', + 'y' => '18', +) +01/30/13 11:47:49,060 [1520] INFO index - About to take action UnifiedSearch +01/30/13 11:47:49,060 [1520] DEBUG index - in UnifiedSearch +01/30/13 11:47:49,060 [1520] INFO index - current page is modules/Home/UnifiedSearch.php +01/30/13 11:47:49,060 [1520] INFO index - current module is Home +01/30/13 11:47:49,109 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:49,109 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:49,109 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:49,109 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:49,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,110 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:49,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,110 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,110 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:49,121 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:49,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,121 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,122 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:49,122 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:49,122 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:49,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,123 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:49,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,123 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:49,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,124 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:49,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,124 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:49,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,125 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:49,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,125 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:49,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,126 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:49,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,126 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:49,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,126 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:49,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,127 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:49,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,127 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:49,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,128 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:49,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,128 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:49,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,129 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:49,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,129 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:49,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,130 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:49,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,130 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:49,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,130 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:49,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,131 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:49,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,131 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:49,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,132 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:49,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,132 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:49,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:49,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,134 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:49,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,134 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:49,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,134 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:49,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,135 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:49,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,135 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:49,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,136 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:49,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,136 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:49,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,137 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:49,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,137 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:49,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,138 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:49,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,138 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:49,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,139 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:49,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,139 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:49,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,139 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:49,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,140 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:49,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,140 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:49,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,141 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:49,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,141 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:49,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,142 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:49,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,142 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:49,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,143 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:49,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:49,143 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:49,147 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:49,147 [1520] DEBUG index - Prepared sql query parameters : [390,1,Home,UnifiedSearch,,2013-01-30 11:47:49] +01/30/13 11:47:49,168 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:49,168 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:49,168 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:49,168 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:49,170 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:49,170 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:49,172 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:49,172 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:49,174 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:49,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:49,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,174 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:49,174 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:49,175 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:49,175 [1520] DEBUG index - including headers +01/30/13 11:47:49,175 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:47:49,175 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:49,179 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,179 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,181 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:47:49,182 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:47:49,182 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,182 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:47:49,183 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,183 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:47:49,183 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,183 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:47:49,183 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,184 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:47:49,184 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,184 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:47:49,184 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,184 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:47:49,185 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,185 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:47:49,185 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:49,185 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:47:49,185 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:47:49,186 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:47:49,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,194 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:49,195 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:49,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:49,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,196 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:47:49,196 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:49,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:47:49,197 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:49,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:49,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,199 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:47:49,199 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:49,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,199 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:49,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,200 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:47:49,200 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:49,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,201 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:47:49,201 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:49,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:47:49,202 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:49,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:47:49,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,203 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:47:49,203 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:47:49,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,204 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,204 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:47:49,205 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:49,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,206 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:47:49,206 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:49,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,207 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:47:49,207 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:49,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,207 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:49,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,208 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:47:49,208 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:49,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:49,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,209 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:47:49,209 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:49,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:49,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,210 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:47:49,210 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:49,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,211 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:49,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,211 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:47:49,211 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:49,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,212 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:49,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,212 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:47:49,212 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:49,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,213 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:49,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,214 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:47:49,214 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:49,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:49,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,215 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:47:49,215 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:49,216 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:49,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,216 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:47:49,216 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:49,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,217 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:47:49,217 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:47:49) method ... +01/30/13 11:47:49,217 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:47:49,217 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:47:49) method ... +01/30/13 11:47:49,218 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:47:49,218 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,218 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,219 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:47:49,219 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:47:49,219 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:47:49,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,233 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:47:49,237 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:49,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:47:49,238 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:49,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:49,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:49,240 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,241 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,242 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,243 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:49,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,245 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:49,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,245 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,245 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,246 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:49,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,247 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:47:49,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,247 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,248 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:49,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,250 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:49,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,250 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:49,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,250 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:49,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,251 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:49,251 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:49,251 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:49,257 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:47:49,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,257 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:47:49,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,258 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:47:49,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,258 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:47:49,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,259 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:47:49,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,260 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:49,260 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:47:49,262 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:49,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,262 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:47:49,262 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:47:49,265 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:47:49,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:49,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,269 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:47:49,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,270 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:49,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,270 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:49,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,271 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:49,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,271 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:49,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,271 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:49,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:49,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,271 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:49,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,272 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:49,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:49,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,272 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:49,273 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,273 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:49,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:47:49,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,273 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:47:49,275 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:49,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,275 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:49,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:47:49,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,276 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:47:49,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:47:49,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,276 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:47:49,276 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:47:49,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,277 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:47:49,277 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:49,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,277 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:49,278 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:49,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,278 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:47:49,278 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:47:49,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,278 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:47:49,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:47:49,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,279 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:47:49,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:47:49,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,279 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:47:49,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:49,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,280 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:49,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:49,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,280 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:47:49,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:49,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,280 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:49,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:49,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,281 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:49,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:49,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,281 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:49,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:49,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,281 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:49,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:49,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,282 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:49,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:49,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,282 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:49,282 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:49,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,283 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:49,283 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:49,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,283 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:49,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:49,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,283 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:49,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:49,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,284 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:49,284 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:49,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,284 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:49,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:49,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,285 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:49,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:49,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,285 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:47:49,288 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:47:49,306 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:49,307 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,307 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:49,307 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,307 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:49,308 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,308 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:49,308 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,308 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:49,309 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,309 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:49,309 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,309 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:49,310 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,310 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:49,310 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,310 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:49,310 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,311 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:49,311 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,311 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:49,311 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,311 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:49,312 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,312 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:49,312 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,312 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:49,313 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,313 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:49,313 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,313 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:49,314 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,314 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:49,314 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,314 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:49,315 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,315 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:49,315 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,315 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:49,315 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,316 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:49,316 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,316 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:49,317 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,317 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:49,317 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,317 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:49,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,318 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:49,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,318 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:49,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,319 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:49,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,319 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:49,319 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,319 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:49,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,320 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:49,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,321 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:49,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,321 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:49,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,322 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:49,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,322 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:49,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,322 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:49,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,323 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:49,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,323 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:49,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,324 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:49,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,324 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:49,325 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,325 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:49,325 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,325 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:49,325 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,326 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:49,326 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,326 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:49,326 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,326 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:49,327 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,327 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:49,327 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,327 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:49,328 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,328 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:49,328 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,328 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:49,329 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,329 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:49,329 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,329 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:49,330 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,330 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:49,330 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,330 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:49,330 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,331 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:49,331 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:49,331 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,331 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,331 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,331 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:49,336 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,337 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,337 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,337 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:47:49,337 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,338 [1520] DEBUG index - Entering getListQuery(Potentials,) method ... +01/30/13 11:47:49,339 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,339 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,339 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,339 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,341 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:49,341 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:49,341 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,341 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,342 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,342 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:49,342 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:49,342 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,342 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,343 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,343 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,343 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:47:49,346 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:49,346 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:49,346 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,346 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,346 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,346 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,346 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:47:49,348 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,349 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,349 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:49,351 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,352 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,354 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,354 [1520] DEBUG index - Prepared sql query parameters : [vtiger_potential] +01/30/13 11:47:49,360 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,360 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,363 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,363 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,370 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,370 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,373 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,373 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,375 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,375 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,375 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:47:49,378 [1520] DEBUG index - query being executed : select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,383 [1520] DEBUG index - 查询语句: select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,383 [1520] DEBUG index - query being executed : select vtiger_potential.potential_no,vtiger_potential.potentialname,vtiger_potential.related_to,vtiger_potential.sales_stage,vtiger_potential.leadsource,vtiger_potential.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid INNER JOIN vtiger_potentialscf ON vtiger_potentialscf.potentialid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_potential.related_to = vtiger_account.accountid LEFT JOIN vtiger_contactdetails ON vtiger_potential.related_to = vtiger_contactdetails.contactid LEFT JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_potential.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_potential.potentialid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_potential.potentialname LIKE BINARY '%OSSEZ%' OR vtiger_potential.potential_no LIKE BINARY '%OSSEZ%' OR vtiger_potential.amount LIKE BINARY '%OSSEZ%' OR vtiger_potential.related_to LIKE BINARY '%OSSEZ%' OR vtiger_potential.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_potential.potentialtype LIKE BINARY '%OSSEZ%' OR vtiger_potential.nextstep LIKE BINARY '%OSSEZ%' OR vtiger_potential.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_potential.sales_stage LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_potential.probability LIKE BINARY '%OSSEZ%' OR vtiger_potential.campaignid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,387 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,388 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,389 [1520] DEBUG index - Entering getListViewHeader(Potentials,,,,global,CustomView) method ... +01/30/13 11:47:49,389 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:47:49,389 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,389 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,390 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,390 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,391 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,391 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:47:49,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,392 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:47:49,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,392 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:47:49,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,392 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:47:49,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,392 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:47:49,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,393 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:47:49,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,393 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,393 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:49,394 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,394 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,395 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +POT11,OSSEZ TEST,138,Prospecting,--None--,2013-01-30,胡昱铖,141,138 +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,395 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,395 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,396 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,397 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:49,397 [1520] DEBUG index - Prepared sql query parameters : [2,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,assigned_user_id] +01/30/13 11:47:49,400 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,potential_no,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,401 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,401 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,402 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,potentialname,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,403 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,403 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,404 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,404 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,405 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,related_to,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,405 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,405 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,406 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,407 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:47:49,407 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:47:49,407 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:47:49,407 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:49,408 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:47:49,408 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:47:49,409 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,409 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:49,411 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:47:49,411 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:49,413 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,413 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,sales_stage,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,414 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,414 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,415 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,415 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,415 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,416 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,leadsource,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,416 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,416 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,417 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,418 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,418 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,closingdate,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,418 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,418 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,419 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,420 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,420 [1520] DEBUG index - Entering getValue(Array,potential_no,potentialname,related_to,sales_stage,leadsource,closingdate,user_name,crmid,accountid +,assigned_user_id,Potentials,Potentials,141,0,list,,,10) method ... +01/30/13 11:47:49,420 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,420 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,421 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:49,421 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,422 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,424 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 11:47:49,424 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,424 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,424 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,428 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:49,429 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:47:49,430 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,432 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:49,432 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:49,432 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,432 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,432 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,432 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,443 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,444 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,444 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:47:49,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,445 [1520] DEBUG index - Entering getListQuery(Contacts,) method ... +01/30/13 11:47:49,446 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,446 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,446 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,448 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:49,448 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:49,448 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,448 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,449 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,449 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,449 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:49,449 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:49,449 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,450 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,450 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,450 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,450 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:47:49,452 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:49,453 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:49,453 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,453 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,453 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,453 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,453 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:47:49,455 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,456 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,456 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,461 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,461 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,467 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,467 [1520] DEBUG index - Prepared sql query parameters : [vtiger_contactdetails] +01/30/13 11:47:49,471 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,472 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,474 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,474 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,481 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,481 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,483 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,483 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,486 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,486 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,486 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,491 [1520] DEBUG index - query being executed : select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,500 [1520] DEBUG index - 查询语句: select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,501 [1520] DEBUG index - query being executed : select vtiger_contactdetails.contact_no,vtiger_contactdetails.firstname,vtiger_contactdetails.lastname,vtiger_contactdetails.firstname,vtiger_contactdetails.title,vtiger_contactdetails.accountid,vtiger_contactdetails.email,vtiger_contactdetails.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_account.accountid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactaddress ON vtiger_contactaddress.contactaddressid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactsubdetails ON vtiger_contactsubdetails.contactsubscriptionid = vtiger_contactdetails.contactid INNER JOIN vtiger_contactscf ON vtiger_contactscf.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails vtiger_contactdetails2 ON vtiger_contactdetails.reportsto = vtiger_contactdetails2.contactid LEFT JOIN vtiger_customerdetails ON vtiger_customerdetails.customerid = vtiger_contactdetails.contactid WHERE vtiger_contactdetails.contactid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_contactdetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.contact_no LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.phone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.mobile LIKE BINARY '%OSSEZ%' OR vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.homephone LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.title LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.fax LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.department LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.birthday LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.email LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reportsto LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistant LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_contactsubdetails.assistantphone LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.donotcall LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.reference LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.portal LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_start_date LIKE BINARY '%OSSEZ%' OR vtiger_customerdetails.support_end_date LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstreet LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercity LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherstate LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherzip LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingcountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.othercountry LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.mailingpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactaddress.otherpobox LIKE BINARY '%OSSEZ%' OR vtiger_contactdetails.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,508 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,508 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Entering getListViewHeader(Contacts,,,,global,CustomView) method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,510 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,511 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,512 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:47:49,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,512 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:47:49,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,513 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:47:49,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,513 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:47:49,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,513 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:49,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,514 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:47:49,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,514 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:47:49,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:49,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,514 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,514 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:49,515 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,515 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,515 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contact_no,firstname,lastname,firstname,title,accountid,email,phone,user_name,crmid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,515 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,516 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:49,516 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,517 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:49,517 [1520] DEBUG index - Prepared sql query parameters : [4,contact_no,firstname,lastname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:47:49,522 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,522 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:49,523 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:49,523 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,523 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,523 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,523 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,523 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,523 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:49,532 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,533 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,533 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:49,533 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,534 [1520] DEBUG index - Entering getListQuery(Accounts,) method ... +01/30/13 11:47:49,535 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,535 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,535 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,537 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:49,537 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:49,537 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,537 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,538 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,538 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:49,538 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:49,538 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,538 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,539 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,539 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,539 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:49,541 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:49,541 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:49,541 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,541 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,542 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,542 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,542 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,542 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:49,544 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,545 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,545 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:49,548 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,548 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,551 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,551 [1520] DEBUG index - Prepared sql query parameters : [vtiger_account] +01/30/13 11:47:49,556 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,556 [1520] DEBUG index - Prepared sql query parameters : [vtiger_accountbillads] +01/30/13 11:47:49,561 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,561 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,564 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,564 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,571 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,571 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,573 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,573 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:49,576 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,576 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,577 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:49,581 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,588 [1520] DEBUG index - 查询语句: select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,588 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,595 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,595 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,596 [1520] DEBUG index - Entering getListViewHeader(Accounts,,,,global,CustomView) method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,598 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,598 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,599 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:49,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,599 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:49,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,599 [1520] DEBUG index - function getTranslatedString(City) - translated to (城市) +01/30/13 11:47:49,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,600 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:49,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,600 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:49,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,600 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,600 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:49,601 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,601 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,601 [1520] DEBUG index - Entering getListViewEntries(Accounts,Accounts,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC11,OSSEZ,San Mateo,,,胡昱铖,138 +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,601 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,602 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,603 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,603 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:49,603 [1520] DEBUG index - Prepared sql query parameters : [6,account_no,accountname,bill_city,website,phone,assigned_user_id] +01/30/13 11:47:49,607 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,account_no,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:49,607 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,607 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,608 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,609 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,609 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,bill_city,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:49,610 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,610 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,611 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,611 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,612 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,website,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:49,612 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,612 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,613 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,613 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,614 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,phone,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:49,614 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,615 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,616 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,616 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,assigned_user_id,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:49,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,616 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,617 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,619 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:49,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,620 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,620 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,624 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:49,625 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:49,627 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,account_no,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:49,627 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,627 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,628 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,bill_city,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:49,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,630 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,631 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,website,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:49,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,633 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,phone,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:49,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,635 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,assigned_user_id,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:49,636 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,636 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:49,637 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:49,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,638 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,638 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,639 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:49,639 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,640 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,640 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,644 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:49,644 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:47:49,646 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,647 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:49,647 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:49,648 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:49,648 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,648 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,648 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,648 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,648 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,648 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,657 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,658 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,658 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:49,658 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:47:49,658 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,659 [1520] DEBUG index - Entering getListQuery(Leads,) method ... +01/30/13 11:47:49,660 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,660 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,660 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,662 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:49,662 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:49,662 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:49,663 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,663 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,663 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:49,663 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,663 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:49,664 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:49,664 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:49,664 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,664 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,664 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:49,664 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,664 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,664 [1520] DEBUG index - Prepared sql query parameters : [Leads] +01/30/13 11:47:49,667 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:49,667 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:49,667 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:49,667 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,667 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,667 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:49,667 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,668 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,668 [1520] DEBUG index - Prepared sql query parameters : [Leads] +01/30/13 11:47:49,670 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,670 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,670 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,673 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,673 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:49,676 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,676 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leaddetails] +01/30/13 11:47:49,681 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,682 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leadaddress] +01/30/13 11:47:49,686 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,686 [1520] DEBUG index - Prepared sql query parameters : [vtiger_leadsubdetails] +01/30/13 11:47:49,691 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,691 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,693 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,693 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,701 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,701 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:49,704 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,704 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:49,706 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,707 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,707 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:47:49,711 [1520] DEBUG index - query being executed : select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,717 [1520] DEBUG index - 查询语句: select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,717 [1520] DEBUG index - query being executed : select vtiger_leaddetails.lead_no,vtiger_leaddetails.lastname,vtiger_leaddetails.firstname,vtiger_leaddetails.company,vtiger_leadaddress.phone,vtiger_leadsubdetails.website,vtiger_leaddetails.email,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadsubdetails ON vtiger_leadsubdetails.leadsubscriptionid = vtiger_leaddetails.leadid INNER JOIN vtiger_leadaddress ON vtiger_leadaddress.leadaddressid = vtiger_leadsubdetails.leadsubscriptionid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_leaddetails.leadid > 0 AND vtiger_crmentity.deleted = 0 AND vtiger_leaddetails.converted = 0 and (vtiger_leaddetails.salutation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.firstname LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lead_no LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.phone LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.lastname LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.mobile LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.company LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.fax LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.designation LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.email LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadsource LIKE BINARY '%OSSEZ%' OR vtiger_leadsubdetails.website LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.industry LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.leadstatus LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.rating LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.noofemployees LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_leaddetails.secondaryemail LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.lane LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.code LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.city LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.country LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.state LIKE BINARY '%OSSEZ%' OR vtiger_leadaddress.pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,722 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,722 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,723 [1520] DEBUG index - Entering getListViewHeader(Leads,,,,global,CustomView) method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Entering getURLstring(Leads) method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,724 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,725 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,725 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,726 [1520] DEBUG index - function getTranslatedString(Lead No) - translated to (潜在客户编号) +01/30/13 11:47:49,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,726 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:47:49,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,726 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:47:49,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,727 [1520] DEBUG index - function getTranslatedString(Company) - translated to (公司) +01/30/13 11:47:49,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,727 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:49,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,727 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网站) +01/30/13 11:47:49,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,728 [1520] DEBUG index - function getTranslatedString(Email) - translated to (工作 Email) +01/30/13 11:47:49,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:49,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,728 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,728 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:49,728 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,728 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,729 [1520] DEBUG index - Entering getListViewEntries(Leads,Leads,lead_no,lastname,firstname,company,phone,website,email,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,729 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,729 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,730 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:49,730 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,730 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:49,731 [1520] DEBUG index - Prepared sql query parameters : [7,lead_no,lastname,firstname,company,phone,website,email,assigned_user_id] +01/30/13 11:47:49,734 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,735 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:49,735 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:49,735 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:49,735 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,736 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,736 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,736 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:49,739 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,740 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,740 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:49,740 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:47:49,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,741 [1520] DEBUG index - Entering getListQuery(Documents,) method ... +01/30/13 11:47:49,742 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,742 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,742 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,745 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:49,745 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:49,745 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:49,745 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,745 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,745 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:49,746 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,746 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:49,746 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:49,746 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:49,746 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,746 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,746 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:49,747 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,747 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,747 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 11:47:49,749 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:47:49,749 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:47:49,749 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:47:49,749 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,750 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,750 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:47:49,750 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,750 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,750 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,750 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 11:47:49,752 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,753 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,753 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:49,755 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,756 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:49,758 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,759 [1520] DEBUG index - Prepared sql query parameters : [vtiger_notes] +01/30/13 11:47:49,763 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,763 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,772 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,772 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,774 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,775 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:49,776 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,776 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:49,778 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,778 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,778 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,778 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:47:49,780 [1520] DEBUG index - query being executed : select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,783 [1520] DEBUG index - 查询语句: select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,784 [1520] DEBUG index - query being executed : select vtiger_notes.note_no,vtiger_notes.title,vtiger_notes.filename,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_notes.* FROM vtiger_notes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_notes.notesid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_attachmentsfolder ON vtiger_notes.folderid = vtiger_attachmentsfolder.folderid WHERE vtiger_notes.notesid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_notes.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_notes.filename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_notes.notecontent LIKE BINARY '%OSSEZ%' OR vtiger_notes.folderid LIKE BINARY '%OSSEZ%' OR vtiger_notes.note_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,787 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,787 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Entering getListViewHeader(Documents,,,,global,CustomView) method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,788 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,790 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,790 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,790 [1520] DEBUG index - function getTranslatedString(Note No) - translated to (文档编号) +01/30/13 11:47:49,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,790 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:47:49,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,791 [1520] DEBUG index - function getTranslatedString(File) - translated to (附件) +01/30/13 11:47:49,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,791 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:49,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:49,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,791 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,791 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:49,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,792 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,792 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,note_no,title,filename,modifiedtime,user_name,crmid,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,792 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,793 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:49,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,794 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:49,794 [1520] DEBUG index - Prepared sql query parameters : [8,note_no,notes_title,filename,modifiedtime,assigned_user_id] +01/30/13 11:47:49,796 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,797 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:49,797 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:49,797 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,798 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,798 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:47:49,798 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:47:49,809 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:49,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,811 [1520] DEBUG index - Entering getListQuery(Calendar,) method ... +01/30/13 11:47:49,811 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,811 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,811 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,813 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:49,813 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:49,814 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,815 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:47:49,815 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:47:49,815 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,815 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:49,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,815 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,816 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,816 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,816 [1520] DEBUG index - Prepared sql query parameters : [Calendar] +01/30/13 11:47:49,818 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,818 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,818 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:49,821 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,821 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:49,824 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,824 [1520] DEBUG index - Prepared sql query parameters : [vtiger_activity] +01/30/13 11:47:49,829 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,829 [1520] DEBUG index - Prepared sql query parameters : [vtiger_seactivityrel] +01/30/13 11:47:49,832 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,832 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,834 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,835 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,840 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,840 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:49,843 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,843 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:49,845 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,845 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,845 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:47:49,848 [1520] DEBUG index - query being executed : select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,854 [1520] DEBUG index - 查询语句: select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,854 [1520] DEBUG index - query being executed : select case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as activitystatus,vtiger_activity.activitytype,vtiger_activity.subject,vtiger_activity.date_start,vtiger_activity.due_date,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity LEFT JOIN vtiger_activitycf ON vtiger_activitycf.activityid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT OUTER JOIN vtiger_activity_reminder ON vtiger_activity_reminder.activity_id = vtiger_activity.activityid LEFT JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users vtiger_users2 ON vtiger_crmentity.modifiedby = vtiger_users2.id LEFT JOIN vtiger_groups vtiger_groups2 ON vtiger_crmentity.modifiedby = vtiger_groups2.groupid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT OUTER JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_account vtiger_account2 ON vtiger_account2.accountid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_troubletickets ON vtiger_troubletickets.ticketid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_purchaseorder ON vtiger_purchaseorder.purchaseorderid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_seactivityrel.crmid LEFT OUTER JOIN vtiger_campaign ON vtiger_campaign.campaignid = vtiger_seactivityrel.crmid WHERE vtiger_activity.activityid > 0 AND vtiger_crmentity.deleted = 0 AND activitytype != 'Emails' and (vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_end LIKE BINARY '%OSSEZ%' OR vtiger_activity.due_date LIKE BINARY '%OSSEZ%' OR vtiger_seactivityrel.crmid LIKE BINARY '%OSSEZ%' OR vtiger_cntactivityrel.contactid LIKE BINARY '%OSSEZ%' OR vtiger_activity.status LIKE BINARY '%OSSEZ%' OR vtiger_activity.eventstatus LIKE BINARY '%OSSEZ%' OR vtiger_activity.priority LIKE BINARY '%OSSEZ%' OR vtiger_activity.sendnotification LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_activity.visibility LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_hours LIKE BINARY '%OSSEZ%' OR vtiger_activity.duration_minutes LIKE BINARY '%OSSEZ%' OR vtiger_activity.location LIKE BINARY '%OSSEZ%' OR vtiger_activity_reminder.reminder_time LIKE BINARY '%OSSEZ%' OR vtiger_activity.recurringtype LIKE BINARY '%OSSEZ%' OR vtiger_activity.notime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,859 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,859 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Entering getListViewHeader(Calendar,,,,global,CustomView) method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,861 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,862 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,862 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,863 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:49,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,863 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:47:49,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,863 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:47:49,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,864 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:49,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,864 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:49,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,864 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:47:49,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,865 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:49,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:49,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,865 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:47:49,865 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:49,865 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,865 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,866 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,activitystatus,activitytype,subject,date_start,due_date,user_name,activityid,type,priority,status,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,866 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,866 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,867 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:47:49,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,867 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:49,868 [1520] DEBUG index - Prepared sql query parameters : [taskstatus,activitytype,subject,parent_id,date_start,due_date,assigned_user_id,status] +01/30/13 11:47:49,871 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,872 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:49,872 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:49,872 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:49,872 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,873 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,873 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,873 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,873 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,879 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,880 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,880 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,880 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:49,880 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:47:49,880 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,881 [1520] DEBUG index - Entering getListQuery(Emails,) method ... +01/30/13 11:47:49,882 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,882 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,882 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,884 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:49,884 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:49,884 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:49,884 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,884 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,885 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:49,885 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:49,885 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:49,885 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:49,885 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,885 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,885 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,885 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:49,886 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,886 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,886 [1520] DEBUG index - Prepared sql query parameters : [Emails] +01/30/13 11:47:49,888 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:47:49,888 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:47:49,888 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:47:49,888 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,888 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,888 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:47:49,889 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,889 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,889 [1520] DEBUG index - Prepared sql query parameters : [Emails] +01/30/13 11:47:49,891 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,891 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,891 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,891 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,894 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,894 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:49,896 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,896 [1520] DEBUG index - Prepared sql query parameters : [vtiger_activity] +01/30/13 11:47:49,901 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,901 [1520] DEBUG index - Prepared sql query parameters : [vtiger_emaildetails] +01/30/13 11:47:49,904 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,904 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:49,906 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,906 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:49,910 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,910 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,910 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:47:49,913 [1520] DEBUG index - query being executed : select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,917 [1520] DEBUG index - 查询语句: select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,917 [1520] DEBUG index - query being executed : select vtiger_activity.subject,vtiger_emaildetails.to_email,vtiger_activity.date_start, vtiger_activity.activityid, vtiger_activity.activitytype as type, vtiger_activity.priority, case when (vtiger_activity.status not like '') then vtiger_activity.status else vtiger_activity.eventstatus end as status, vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_activity INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_seactivityrel.crmid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid AND vtiger_cntactivityrel.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_salesmanactivityrel ON vtiger_salesmanactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_emaildetails ON vtiger_emaildetails.emailid = vtiger_activity.activityid WHERE vtiger_activity.activityid > 0 AND vtiger_activity.activitytype = 'Emails' and vtiger_crmentity.smownerid=1 AND vtiger_crmentity.deleted = 0 and (vtiger_activity.date_start LIKE BINARY '%OSSEZ%' OR vtiger_activity.semodule LIKE BINARY '%OSSEZ%' OR vtiger_activity.activitytype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_activity.subject LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_activity.time_start LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.from_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.to_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.cc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.bcc_email LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.idlists LIKE BINARY '%OSSEZ%' OR vtiger_emaildetails.email_flag LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,921 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,922 [1520] DEBUG index - Entering getListViewHeader(Emails,,,,global,CustomView) method ... +01/30/13 11:47:49,922 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:47:49,923 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,923 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,923 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,924 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,924 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:49,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,925 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:49,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:49,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,925 [1520] DEBUG index - function getTranslatedString(To) - translated to (To:) +01/30/13 11:47:49,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:49,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,925 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:47:49,925 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:49,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,926 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,926 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,subject,to_email,date_start,activityid,type,priority,status,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,926 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,926 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,927 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:49,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,928 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?) +01/30/13 11:47:49,928 [1520] DEBUG index - Prepared sql query parameters : [10,subject,saved_toid,date_start] +01/30/13 11:47:49,930 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,931 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:49,931 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:49,931 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:49,931 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,931 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,931 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,931 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,931 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,931 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,937 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,937 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,937 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,937 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:49,938 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:47:49,938 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,939 [1520] DEBUG index - Entering getListQuery(HelpDesk,) method ... +01/30/13 11:47:49,940 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,940 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,940 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,942 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:49,942 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:49,942 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:49,942 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,942 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,942 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:49,943 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,943 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:49,943 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:49,943 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:49,943 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,943 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,944 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:49,944 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:49,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:49,944 [1520] DEBUG index - Prepared sql query parameters : [HelpDesk] +01/30/13 11:47:49,946 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:47:49,946 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:47:49,946 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:47:49,946 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,946 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,947 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:49,947 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:47:49,947 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,947 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,947 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:49,947 [1520] DEBUG index - Prepared sql query parameters : [HelpDesk] +01/30/13 11:47:49,949 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,949 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:49,949 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,952 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:49,952 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,955 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,955 [1520] DEBUG index - Prepared sql query parameters : [vtiger_troubletickets] +01/30/13 11:47:49,958 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:49,958 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:49,961 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:49,961 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:49,967 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:49,967 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,969 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:49,969 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,972 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,972 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:49,972 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:47:49,975 [1520] DEBUG index - query being executed : select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,978 [1520] DEBUG index - 查询语句: select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') +01/30/13 11:47:49,978 [1520] DEBUG index - query being executed : select vtiger_troubletickets.ticket_no,vtiger_troubletickets.title,vtiger_troubletickets.parent_id,vtiger_troubletickets.status,vtiger_troubletickets.priority,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_troubletickets INNER JOIN vtiger_ticketcf ON vtiger_ticketcf.ticketid = vtiger_troubletickets.ticketid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_troubletickets.parent_id = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_troubletickets.product_id WHERE vtiger_troubletickets.ticketid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_troubletickets.ticket_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.parent_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.priority LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.product_id LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.severity LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.status LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.category LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.update_log LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.hours LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.days LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.from_portal LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.title LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_troubletickets.solution LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:49,982 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,982 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,983 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,,,global,CustomView) method ... +01/30/13 11:47:49,983 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:47:49,983 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:49,983 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,984 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,984 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,985 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,985 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,985 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:47:49,985 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,986 [1520] DEBUG index - function getTranslatedString(Title) - translated to (名称) +01/30/13 11:47:49,986 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,986 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关于) +01/30/13 11:47:49,986 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,986 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:49,986 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,986 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:47:49,987 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:49,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:49,987 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:49,987 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:49,987 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:49,987 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:49,988 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,ticket_no,title,parent_id,status,priority,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:49,988 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:49,988 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:49,989 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:49,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,989 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:49,989 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:47:49,992 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:49,993 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:49,993 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:49,993 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:49,993 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:49,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,993 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:49,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:49,994 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:49,994 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:50,001 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,001 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,002 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:50,002 [1520] DEBUG index - Entering isPermitted(Products,index,) method ... +01/30/13 11:47:50,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,003 [1520] DEBUG index - Entering getListQuery(Products,) method ... +01/30/13 11:47:50,004 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,004 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,004 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,006 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:50,006 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:50,006 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:50,006 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,006 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:50,007 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,007 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:50,007 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:50,007 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:50,007 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,008 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,008 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:50,008 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,008 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,008 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:47:50,012 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:50,012 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:50,012 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:50,012 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,012 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,012 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:50,012 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,013 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,013 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:47:50,015 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,015 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,015 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,015 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:50,018 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,018 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:50,020 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,020 [1520] DEBUG index - Prepared sql query parameters : [vtiger_products] +01/30/13 11:47:50,024 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,024 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:50,026 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,026 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:47:50,028 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,028 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,028 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,028 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:47:50,032 [1520] DEBUG index - query being executed : select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,038 [1520] DEBUG index - 查询语句: select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,038 [1520] DEBUG index - query being executed : select vtiger_products.product_no,vtiger_products.productname,vtiger_products.productcode,vtiger_products.commissionrate,vtiger_products.qtyinstock,vtiger_products.qty_per_unit,vtiger_products.unit_price ,vtiger_crmentity.crmid,vtiger_products.* FROM vtiger_products INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_productcf ON vtiger_products.productid = vtiger_productcf.productid LEFT JOIN vtiger_vendor ON vtiger_vendor.vendorid = vtiger_products.vendor_id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_products.productid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_products.productname LIKE BINARY '%OSSEZ%' OR vtiger_products.product_no LIKE BINARY '%OSSEZ%' OR vtiger_products.productcode LIKE BINARY '%OSSEZ%' OR vtiger_products.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_products.manufacturer LIKE BINARY '%OSSEZ%' OR vtiger_products.productcategory LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_products.start_date LIKE BINARY '%OSSEZ%' OR vtiger_products.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_products.website LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_id LIKE BINARY '%OSSEZ%' OR vtiger_products.mfr_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.vendor_part_no LIKE BINARY '%OSSEZ%' OR vtiger_products.serialno LIKE BINARY '%OSSEZ%' OR vtiger_products.productsheet LIKE BINARY '%OSSEZ%' OR vtiger_products.glacct LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_products.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_products.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_products.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_products.usageunit LIKE BINARY '%OSSEZ%' OR vtiger_products.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyinstock LIKE BINARY '%OSSEZ%' OR vtiger_products.reorderlevel LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_products.qtyindemand LIKE BINARY '%OSSEZ%' OR vtiger_products.imagename LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,043 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,043 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Entering getListViewHeader(Products,,,,global,CustomView) method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,045 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,046 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,047 [1520] DEBUG index - function getTranslatedString(Product No) - translated to (产品编号) +01/30/13 11:47:50,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,047 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:50,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,047 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:47:50,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,048 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:47:50,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,048 [1520] DEBUG index - function getTranslatedString(Quantity In Stock) - translated to (库存量) +01/30/13 11:47:50,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,048 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:47:50,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:50,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,048 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:47:50,049 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:50,049 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,049 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,050 [1520] DEBUG index - Entering getListViewEntries(Products,Products,product_no,productname,productcode,commissionrate,qtyinstock,qty_per_unit,unit_price,crmid,productid,product_no,productname,productcode,productcategory,manufacturer,qty_per_unit,unit_price,weight,pack_size,sales_start_date,sales_end_date,start_date,expiry_date,cost_factor,commissionrate,commissionmethod,discontinued,usageunit,reorderlevel,website,taxclass,mfr_part_no,vendor_part_no,serialno,qtyinstock,productsheet,qtyindemand,glacct,vendor_id,imagename,currency_id +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,050 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,050 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,051 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,051 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:50,051 [1520] DEBUG index - Prepared sql query parameters : [14,product_no,productname,productcode,commissionrate,qtyinstock,qty_per_unit,unit_price] +01/30/13 11:47:50,055 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,056 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:50,056 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:50,056 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:50,057 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,057 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,057 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,057 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:50,061 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,061 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,061 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:50,061 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:47:50,061 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,063 [1520] DEBUG index - Entering getListQuery(Faq,) method ... +01/30/13 11:47:50,063 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,063 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,063 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,065 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:50,065 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:50,065 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:50,066 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,066 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,066 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:50,066 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,066 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:50,066 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:50,067 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:50,067 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,067 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,067 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:50,067 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,067 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,067 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:47:50,070 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:47:50,070 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:47:50,070 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,070 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,070 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,070 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:47:50,074 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,074 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,074 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:50,077 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,077 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:50,079 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,079 [1520] DEBUG index - Prepared sql query parameters : [vtiger_faq] +01/30/13 11:47:50,082 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,082 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,090 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,090 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:50,092 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,092 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:47:50,094 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,095 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,095 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:47:50,097 [1520] DEBUG index - query being executed : select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,100 [1520] DEBUG index - 查询语句: select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,100 [1520] DEBUG index - query being executed : select vtiger_faq.faq_no,vtiger_faq.question,vtiger_faq.category,vtiger_faq.product_id,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_faq.id LEFT JOIN vtiger_products ON vtiger_faq.product_id = vtiger_products.productid WHERE vtiger_faq.id > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_faq.product_id LIKE BINARY '%OSSEZ%' OR vtiger_faq.faq_no LIKE BINARY '%OSSEZ%' OR vtiger_faq.category LIKE BINARY '%OSSEZ%' OR vtiger_faq.status LIKE BINARY '%OSSEZ%' OR vtiger_faq.question LIKE BINARY '%OSSEZ%' OR vtiger_faq.answer LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,103 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,103 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,104 [1520] DEBUG index - Entering getListViewHeader(Faq,,,,global,CustomView) method ... +01/30/13 11:47:50,104 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:47:50,104 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,104 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,105 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,105 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,106 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,106 [1520] DEBUG index - function getTranslatedString(Faq No) - translated to (问题编号) +01/30/13 11:47:50,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,107 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:47:50,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,107 [1520] DEBUG index - function getTranslatedString(Category) - translated to (类别) +01/30/13 11:47:50,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,107 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:50,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,107 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (发表时间) +01/30/13 11:47:50,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:50,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,108 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:50,108 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:50,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,108 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,109 [1520] DEBUG index - Entering getListViewEntries(Faq,Faq,faq_no,question,category,product_id,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,109 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,109 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,110 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:50,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,110 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:50,110 [1520] DEBUG index - Prepared sql query parameters : [15,faq_no,question,faqcategories,product_id,createdtime,modifiedtime] +01/30/13 11:47:50,114 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,117 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:50,117 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:50,117 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:50,117 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,117 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,117 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,117 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:50,124 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,124 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,124 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:50,124 [1520] DEBUG index - Entering isPermitted(Vendors,index,) method ... +01/30/13 11:47:50,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,126 [1520] DEBUG index - Entering getListQuery(Vendors,) method ... +01/30/13 11:47:50,126 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,126 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,126 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,128 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:50,128 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:50,128 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:50,129 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,129 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:50,129 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,129 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,129 [1520] DEBUG index - Prepared sql query parameters : [Vendors] +01/30/13 11:47:50,131 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:47:50,131 [1520] DEBUG index - Entering getColumnFields(Vendors) method ... +01/30/13 11:47:50,132 [1520] DEBUG index - in getColumnFields Vendors +01/30/13 11:47:50,132 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,132 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,132 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:47:50,132 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,132 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,132 [1520] DEBUG index - Prepared sql query parameters : [Vendors] +01/30/13 11:47:50,134 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,134 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,134 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:50,137 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,137 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:50,139 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,139 [1520] DEBUG index - Prepared sql query parameters : [vtiger_vendor] +01/30/13 11:47:50,143 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,143 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:50,145 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,145 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:47:50,147 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,147 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,147 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:47:50,150 [1520] DEBUG index - query being executed : select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,153 [1520] DEBUG index - 查询语句: select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,153 [1520] DEBUG index - query being executed : select vtiger_vendor.vendor_no,vtiger_vendor.vendorname,vtiger_vendor.phone,vtiger_vendor.email,vtiger_vendor.category ,vtiger_crmentity.crmid FROM vtiger_vendor INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_vendor.vendorid INNER JOIN vtiger_vendorcf ON vtiger_vendor.vendorid = vtiger_vendorcf.vendorid WHERE vtiger_vendor.vendorid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_vendor.vendorname LIKE BINARY '%OSSEZ%' OR vtiger_vendor.vendor_no LIKE BINARY '%OSSEZ%' OR vtiger_vendor.phone LIKE BINARY '%OSSEZ%' OR vtiger_vendor.email LIKE BINARY '%OSSEZ%' OR vtiger_vendor.website LIKE BINARY '%OSSEZ%' OR vtiger_vendor.glacct LIKE BINARY '%OSSEZ%' OR vtiger_vendor.category LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_vendor.street LIKE BINARY '%OSSEZ%' OR vtiger_vendor.pobox LIKE BINARY '%OSSEZ%' OR vtiger_vendor.city LIKE BINARY '%OSSEZ%' OR vtiger_vendor.state LIKE BINARY '%OSSEZ%' OR vtiger_vendor.postalcode LIKE BINARY '%OSSEZ%' OR vtiger_vendor.country LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,156 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,156 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Entering getListViewHeader(Vendors,,,,global,CustomView) method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Entering getURLstring(Vendors) method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,157 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,159 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:50,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,159 [1520] DEBUG index - function getTranslatedString(Vendor No) - translated to (供应商编号) +01/30/13 11:47:50,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:50,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,159 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商名称) +01/30/13 11:47:50,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:50,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,160 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:50,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:50,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,160 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:47:50,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:50,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,160 [1520] DEBUG index - function getTranslatedString(Category) - translated to (类别) +01/30/13 11:47:50,160 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:50,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,161 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,161 [1520] DEBUG index - Entering getListViewEntries(Vendors,Vendors,vendor_no,vendorname,phone,email,category,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,161 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,161 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,162 [1520] DEBUG index - Entering getTabid(Vendors) method ... +01/30/13 11:47:50,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,163 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:50,163 [1520] DEBUG index - Prepared sql query parameters : [18,vendor_no,vendorname,phone,email,category] +01/30/13 11:47:50,166 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,169 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:50,169 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:50,169 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:50,169 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,169 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,170 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,170 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:50,173 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,173 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,173 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:50,173 [1520] DEBUG index - Entering isPermitted(PriceBooks,index,) method ... +01/30/13 11:47:50,174 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,175 [1520] DEBUG index - Entering getListQuery(PriceBooks,) method ... +01/30/13 11:47:50,176 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,176 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,176 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,176 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,178 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:50,178 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:50,178 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:50,178 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,178 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,178 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,178 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:50,179 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,179 [1520] DEBUG index - Prepared sql query parameters : [PriceBooks] +01/30/13 11:47:50,182 [1520] DEBUG pricebook - Entering PriceBooks() method ... +01/30/13 11:47:50,182 [1520] DEBUG index - Entering getColumnFields(PriceBooks) method ... +01/30/13 11:47:50,182 [1520] DEBUG index - in getColumnFields PriceBooks +01/30/13 11:47:50,182 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,182 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,182 [1520] DEBUG pricebook - Exiting PriceBook method ... +01/30/13 11:47:50,183 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,183 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,183 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,183 [1520] DEBUG index - Prepared sql query parameters : [PriceBooks] +01/30/13 11:47:50,185 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,185 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,185 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:50,188 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,188 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,190 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,190 [1520] DEBUG index - Prepared sql query parameters : [vtiger_pricebook] +01/30/13 11:47:50,193 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,193 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,195 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,195 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,197 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,197 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,197 [1520] DEBUG index - Prepared sql query parameters : [19] +01/30/13 11:47:50,199 [1520] DEBUG index - query being executed : select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,202 [1520] DEBUG index - 查询语句: select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,202 [1520] DEBUG index - query being executed : select vtiger_pricebook.pricebook_no,vtiger_pricebook.bookname,vtiger_pricebook.active,vtiger_pricebook.currency_id ,vtiger_crmentity.crmid FROM vtiger_pricebook INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pricebook.pricebookid INNER JOIN vtiger_pricebookcf ON vtiger_pricebook.pricebookid = vtiger_pricebookcf.pricebookid LEFT JOIN vtiger_currency_info ON vtiger_pricebook.currency_id = vtiger_currency_info.id WHERE vtiger_pricebook.pricebookid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pricebook.bookname LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.pricebook_no LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.active LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_pricebook.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,205 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,205 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,206 [1520] DEBUG index - Entering getListViewHeader(PriceBooks,,,,global,CustomView) method ... +01/30/13 11:47:50,206 [1520] DEBUG index - Entering getURLstring(PriceBooks) method ... +01/30/13 11:47:50,206 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,206 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,207 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,207 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,208 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,208 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:50,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,208 [1520] DEBUG index - function getTranslatedString(PriceBook No) - translated to (价格表编号) +01/30/13 11:47:50,208 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:50,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,209 [1520] DEBUG index - function getTranslatedString(Price Book Name) - translated to (价格表名称) +01/30/13 11:47:50,209 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:50,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,209 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:47:50,209 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:50,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,209 [1520] DEBUG index - function getTranslatedString(Currency) - translated to (货币) +01/30/13 11:47:50,209 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:50,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,210 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,210 [1520] DEBUG index - Entering getListViewEntries(PriceBooks,PriceBooks,pricebook_no,bookname,active,currency_id,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,210 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,210 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,211 [1520] DEBUG index - Entering getTabid(PriceBooks) method ... +01/30/13 11:47:50,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,212 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:50,212 [1520] DEBUG index - Prepared sql query parameters : [19,pricebook_no,bookname,active,currency_id] +01/30/13 11:47:50,214 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,218 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:50,218 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:50,218 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,218 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,218 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,219 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,219 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:50,227 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,228 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,228 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:47:50,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,229 [1520] DEBUG index - Entering getListQuery(Quotes,) method ... +01/30/13 11:47:50,230 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,230 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,230 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,232 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:50,232 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:50,232 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,233 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,233 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,233 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:50,233 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:50,233 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,234 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,234 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,234 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,234 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:47:50,236 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:47:50,236 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:47:50,237 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,237 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,237 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,237 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,237 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:47:50,239 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,239 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,240 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:50,242 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,243 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:50,245 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,245 [1520] DEBUG index - Prepared sql query parameters : [vtiger_quotes] +01/30/13 11:47:50,249 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,249 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,251 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,251 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,257 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,257 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:50,259 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,259 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:47:50,261 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,261 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,261 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:47:50,265 [1520] DEBUG index - query being executed : select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,270 [1520] DEBUG index - 查询语句: select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,270 [1520] DEBUG index - query being executed : select vtiger_quotes.quote_no,vtiger_quotes.subject,vtiger_quotes.quotestage,vtiger_quotes.potentialid,vtiger_quotes.accountid,vtiger_quotes.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid INNER JOIN vtiger_quotesbillads ON vtiger_quotes.quoteid = vtiger_quotesbillads.quotebilladdressid INNER JOIN vtiger_quotesshipads ON vtiger_quotes.quoteid = vtiger_quotesshipads.quoteshipaddressid LEFT JOIN vtiger_quotescf ON vtiger_quotes.quoteid = vtiger_quotescf.quoteid LEFT JOIN vtiger_currency_info ON vtiger_quotes.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_quotes.contactid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_users as vtiger_usersQuotes ON vtiger_usersQuotes.id = vtiger_quotes.inventorymanager WHERE vtiger_quotes.quoteid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_quotes.quote_no LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subject LIKE BINARY '%OSSEZ%' OR vtiger_quotes.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.quotestage LIKE BINARY '%OSSEZ%' OR vtiger_quotes.validtill LIKE BINARY '%OSSEZ%' OR vtiger_quotes.contactid LIKE BINARY '%OSSEZ%' OR vtiger_quotes.carrier LIKE BINARY '%OSSEZ%' OR vtiger_quotes.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_quotes.shipping LIKE BINARY '%OSSEZ%' OR vtiger_quotes.inventorymanager LIKE BINARY '%OSSEZ%' OR vtiger_quotes.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_quotes.total LIKE BINARY '%OSSEZ%' OR vtiger_quotes.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_quotes.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_quotes.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_quotes.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_quotes.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_quotesbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_quotesshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_quotes.terms_conditions LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,275 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,275 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,276 [1520] DEBUG index - Entering getListViewHeader(Quotes,,,,global,CustomView) method ... +01/30/13 11:47:50,276 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:47:50,276 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,276 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,276 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,277 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,277 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,278 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,278 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,278 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:47:50,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,279 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:50,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,279 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:47:50,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,279 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:47:50,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,279 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:50,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,280 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:50,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:50,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,280 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:50,280 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:50,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,281 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,281 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,quote_no,subject,quotestage,potentialid,accountid,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,281 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,281 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,282 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:50,282 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,283 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:50,283 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:50,287 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,288 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:50,288 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:50,289 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,289 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,289 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,289 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,289 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,289 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,298 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,298 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,298 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:47:50,298 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,300 [1520] DEBUG index - Entering getListQuery(PurchaseOrder,) method ... +01/30/13 11:47:50,300 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,300 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,300 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,302 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:50,302 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:50,302 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,302 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,302 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,303 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,303 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,303 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:50,303 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:50,303 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,303 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,303 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,304 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,304 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,304 [1520] DEBUG index - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:47:50,306 [1520] DEBUG index - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:47:50,306 [1520] DEBUG index - in getColumnFields PurchaseOrder +01/30/13 11:47:50,306 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,306 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,306 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,306 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,307 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,307 [1520] DEBUG index - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:47:50,308 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,309 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,309 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,309 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,312 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,312 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:50,315 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,316 [1520] DEBUG index - Prepared sql query parameters : [vtiger_purchaseorder] +01/30/13 11:47:50,319 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,319 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,321 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,321 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,327 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,327 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:50,329 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,329 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:47:50,331 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,332 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,332 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,332 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,336 [1520] DEBUG index - query being executed : select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,341 [1520] DEBUG index - 查询语句: select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,341 [1520] DEBUG index - query being executed : select vtiger_purchaseorder.purchaseorder_no,vtiger_purchaseorder.subject,vtiger_purchaseorder.vendorid,vtiger_purchaseorder.tracking_no,vtiger_purchaseorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid LEFT OUTER JOIN vtiger_vendor ON vtiger_purchaseorder.vendorid = vtiger_vendor.vendorid LEFT JOIN vtiger_contactdetails ON vtiger_purchaseorder.contactid = vtiger_contactdetails.contactid INNER JOIN vtiger_pobillads ON vtiger_purchaseorder.purchaseorderid = vtiger_pobillads.pobilladdressid INNER JOIN vtiger_poshipads ON vtiger_purchaseorder.purchaseorderid = vtiger_poshipads.poshipaddressid LEFT JOIN vtiger_purchaseordercf ON vtiger_purchaseordercf.purchaseorderid = vtiger_purchaseorder.purchaseorderid LEFT JOIN vtiger_currency_info ON vtiger_purchaseorder.currency_id = vtiger_currency_info.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_purchaseorder.purchaseorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_purchaseorder.purchaseorder_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.vendorid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.requisition_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.tracking_no LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.total LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.postatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_pobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_poshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_purchaseorder.terms_conditions LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,346 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,346 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,347 [1520] DEBUG index - Entering getListViewHeader(PurchaseOrder,,,,global,CustomView) method ... +01/30/13 11:47:50,347 [1520] DEBUG index - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:47:50,347 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,347 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,347 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,348 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,348 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,349 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,349 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,349 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,349 [1520] DEBUG index - function getTranslatedString(PurchaseOrder No) - translated to (采购订单编号) +01/30/13 11:47:50,349 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,350 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:50,350 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,350 [1520] DEBUG index - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:47:50,350 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,350 [1520] DEBUG index - function getTranslatedString(Tracking Number) - translated to (追踪编号) +01/30/13 11:47:50,350 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,350 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:50,351 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:50,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,351 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:50,351 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:50,351 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,351 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,352 [1520] DEBUG index - Entering getListViewEntries(PurchaseOrder,PurchaseOrder,purchaseorder_no,subject,vendorid,tracking_no,total,user_name,crmid,contactid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,352 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,352 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,353 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:50,353 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,353 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:50,353 [1520] DEBUG index - Prepared sql query parameters : [21,purchaseorder_no,subject,vendor_id,tracking_no,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:50,356 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,358 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:50,359 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:50,359 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,359 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,359 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,359 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,359 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,359 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:50,370 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,371 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,371 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,371 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:47:50,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,372 [1520] DEBUG index - Entering getListQuery(SalesOrder,) method ... +01/30/13 11:47:50,373 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,373 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,373 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,375 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:50,375 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:50,375 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,376 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,376 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,376 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:50,376 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:50,376 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,377 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,377 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,377 [1520] DEBUG index - Prepared sql query parameters : [SalesOrder] +01/30/13 11:47:50,379 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:47:50,380 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:47:50,380 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,380 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,380 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,380 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,380 [1520] DEBUG index - Prepared sql query parameters : [SalesOrder] +01/30/13 11:47:50,384 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,384 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,385 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:50,387 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,387 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,389 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,390 [1520] DEBUG index - Prepared sql query parameters : [vtiger_salesorder] +01/30/13 11:47:50,393 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,393 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,395 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,395 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,401 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,401 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,403 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,403 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,405 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,405 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,405 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,405 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:47:50,410 [1520] DEBUG index - query being executed : select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,416 [1520] DEBUG index - 查询语句: select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,416 [1520] DEBUG index - query being executed : select vtiger_salesorder.salesorder_no,vtiger_salesorder.subject,vtiger_salesorder.accountid,vtiger_salesorder.quoteid,vtiger_salesorder.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid INNER JOIN vtiger_sobillads ON vtiger_salesorder.salesorderid = vtiger_sobillads.sobilladdressid INNER JOIN vtiger_soshipads ON vtiger_salesorder.salesorderid = vtiger_soshipads.soshipaddressid LEFT JOIN vtiger_salesordercf ON vtiger_salesordercf.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_currency_info ON vtiger_salesorder.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_contactdetails ON vtiger_salesorder.contactid = vtiger_contactdetails.contactid LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_salesorder.potentialid LEFT JOIN vtiger_invoice_recurring_info ON vtiger_invoice_recurring_info.salesorderid = vtiger_salesorder.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_salesorder.salesorderid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_salesorder.salesorder_no LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subject LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.potentialid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.customerno LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.quoteid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.contactid LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.duedate LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.carrier LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.pending LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.sostatus LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.total LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.accountid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_sobillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_soshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_salesorder.enable_recurring LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.recurring_frequency LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.start_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.end_period LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.payment_duration LIKE BINARY '%OSSEZ%' OR vtiger_invoice_recurring_info.invoice_status LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,421 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,421 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,,,global,CustomView) method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,423 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,424 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,425 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,425 [1520] DEBUG index - function getTranslatedString(SalesOrder No) - translated to (销售订单编号) +01/30/13 11:47:50,425 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,425 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:50,425 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,425 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:50,426 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,426 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:47:50,426 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,426 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:50,426 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:50,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,426 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:50,426 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:50,427 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,427 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,427 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,salesorder_no,subject,accountid,quoteid,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,427 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,427 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,428 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:50,429 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,429 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:50,429 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:50,432 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,434 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:50,434 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:50,434 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:50,434 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,434 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,435 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,435 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,443 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,444 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,444 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,444 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:50,444 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:47:50,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,445 [1520] DEBUG index - Entering getListQuery(Invoice,) method ... +01/30/13 11:47:50,446 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,446 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,446 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,448 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:50,448 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:50,448 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:50,448 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,449 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,449 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:50,449 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,449 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:50,450 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:50,450 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:50,450 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,450 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,450 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:50,450 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,450 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,451 [1520] DEBUG index - Prepared sql query parameters : [Invoice] +01/30/13 11:47:50,453 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:50,453 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:50,453 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:50,453 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,453 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,454 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,454 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:50,454 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,454 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,454 [1520] DEBUG index - Prepared sql query parameters : [Invoice] +01/30/13 11:47:50,456 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,456 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,456 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,459 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,459 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,462 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,462 [1520] DEBUG index - Prepared sql query parameters : [vtiger_invoice] +01/30/13 11:47:50,466 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,466 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,468 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,468 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,474 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,474 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,475 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,476 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:47:50,478 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,478 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,478 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:47:50,483 [1520] DEBUG index - query being executed : select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,488 [1520] DEBUG index - 查询语句: select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,488 [1520] DEBUG index - query being executed : select vtiger_invoice.invoice_no,vtiger_invoice.subject,vtiger_invoice.salesorderid,vtiger_invoice.invoicestatus,vtiger_invoice.total,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid,vtiger_contactdetails.contactid,vtiger_account.accountid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid INNER JOIN vtiger_invoicebillads ON vtiger_invoice.invoiceid = vtiger_invoicebillads.invoicebilladdressid INNER JOIN vtiger_invoiceshipads ON vtiger_invoice.invoiceid = vtiger_invoiceshipads.invoiceshipaddressid LEFT JOIN vtiger_currency_info ON vtiger_invoice.currency_id = vtiger_currency_info.id LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_invoice.contactid INNER JOIN vtiger_invoicecf ON vtiger_invoice.invoiceid = vtiger_invoicecf.invoiceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_invoice.invoiceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_invoice.subject LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salesorderid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.customerno LIKE BINARY '%OSSEZ%' OR vtiger_invoice.contactid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.duedate LIKE BINARY '%OSSEZ%' OR vtiger_invoice.purchaseorder LIKE BINARY '%OSSEZ%' OR vtiger_invoice.adjustment LIKE BINARY '%OSSEZ%' OR vtiger_invoice.salescommission LIKE BINARY '%OSSEZ%' OR vtiger_invoice.exciseduty LIKE BINARY '%OSSEZ%' OR vtiger_invoice.subtotal LIKE BINARY '%OSSEZ%' OR vtiger_invoice.total LIKE BINARY '%OSSEZ%' OR vtiger_invoice.taxtype LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_percent LIKE BINARY '%OSSEZ%' OR vtiger_invoice.discount_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.s_h_amount LIKE BINARY '%OSSEZ%' OR vtiger_invoice.accountid LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoicestatus LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_invoice.currency_id LIKE BINARY '%OSSEZ%' OR vtiger_invoice.conversion_rate LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_invoicebillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_invoiceshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%' OR vtiger_invoice.terms_conditions LIKE BINARY '%OSSEZ%' OR vtiger_invoice.invoice_no LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,492 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,492 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Entering getListViewHeader(Invoice,,,,global,CustomView) method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,494 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,495 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,495 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,496 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:47:50,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,496 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:47:50,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,497 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:47:50,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,497 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:50,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,497 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:47:50,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:50,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,497 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:50,498 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:50,498 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,498 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,498 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,invoice_no,subject,salesorderid,invoicestatus,total,user_name,crmid,contactid,accountid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,499 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,499 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,500 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,500 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:50,500 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:47:50,505 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,506 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:50,506 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:50,506 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,506 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,507 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,507 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,514 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,514 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,514 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,514 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:47:50,514 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,516 [1520] DEBUG index - Entering getListQuery(Campaigns,) method ... +01/30/13 11:47:50,516 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,516 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,516 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,516 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,518 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:50,519 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:50,519 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,519 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,519 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,519 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,519 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,520 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:50,520 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:50,520 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,520 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,520 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,520 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,520 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,520 [1520] DEBUG index - Prepared sql query parameters : [Campaigns] +01/30/13 11:47:50,524 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:47:50,524 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:47:50,524 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,524 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,524 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,524 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,524 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,525 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,525 [1520] DEBUG index - Prepared sql query parameters : [Campaigns] +01/30/13 11:47:50,527 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,527 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,527 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,531 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,531 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:50,533 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,534 [1520] DEBUG index - Prepared sql query parameters : [vtiger_campaign] +01/30/13 11:47:50,537 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,537 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,539 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,540 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,546 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,546 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:50,548 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,548 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:50,550 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,551 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,551 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:47:50,554 [1520] DEBUG index - query being executed : select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,558 [1520] DEBUG index - 查询语句: select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,558 [1520] DEBUG index - query being executed : select vtiger_campaign.campaign_no,vtiger_campaign.campaignname,vtiger_campaign.campaigntype,vtiger_campaign.campaignstatus,vtiger_campaign.expectedrevenue,vtiger_campaign.closingdate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_campaign INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_campaign.campaignid INNER JOIN vtiger_campaignscf ON vtiger_campaign.campaignid = vtiger_campaignscf.campaignid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_campaign.product_id WHERE vtiger_campaign.campaignid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_campaign.campaignname LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaign_no LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaigntype LIKE BINARY '%OSSEZ%' OR vtiger_campaign.product_id LIKE BINARY '%OSSEZ%' OR vtiger_campaign.campaignstatus LIKE BINARY '%OSSEZ%' OR vtiger_campaign.closingdate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_campaign.numsent LIKE BINARY '%OSSEZ%' OR vtiger_campaign.sponsor LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetaudience LIKE BINARY '%OSSEZ%' OR vtiger_campaign.targetsize LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponse LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedrevenue LIKE BINARY '%OSSEZ%' OR vtiger_campaign.budgetcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualcost LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.expectedroi LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualresponsecount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualsalescount LIKE BINARY '%OSSEZ%' OR vtiger_campaign.actualroi LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,561 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,561 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,562 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,,,global,CustomView) method ... +01/30/13 11:47:50,562 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:47:50,563 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,563 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,563 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,563 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,564 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,564 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,565 [1520] DEBUG index - function getTranslatedString(Campaign No) - translated to (营销活动编号) +01/30/13 11:47:50,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,565 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:47:50,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,565 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:47:50,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,566 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:47:50,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,566 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:47:50,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,566 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:47:50,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:50,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,566 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:50,567 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:50,567 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,567 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,567 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,campaign_no,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,567 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,568 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,569 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:47:50,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,569 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:50,569 [1520] DEBUG index - Prepared sql query parameters : [26,campaign_no,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:47:50,572 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,574 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:50,574 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:50,574 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,574 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,575 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,575 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:50,577 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,578 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,578 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:50,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,579 [1520] DEBUG index - Entering getListQuery(PBXManager,) method ... +01/30/13 11:47:50,580 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,580 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,580 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,582 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:50,582 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:50,582 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,582 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,583 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,583 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:50,583 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:50,583 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,583 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,584 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,584 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,584 [1520] DEBUG index - Prepared sql query parameters : [PBXManager] +01/30/13 11:47:50,586 [1520] DEBUG index - Entering getColumnFields(PBXManager) method ... +01/30/13 11:47:50,586 [1520] DEBUG index - in getColumnFields PBXManager +01/30/13 11:47:50,586 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,586 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,586 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,587 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,587 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,587 [1520] DEBUG index - Prepared sql query parameters : [PBXManager] +01/30/13 11:47:50,589 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,589 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,589 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:50,592 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,592 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,594 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,594 [1520] DEBUG index - Prepared sql query parameters : [vtiger_pbxmanager] +01/30/13 11:47:50,598 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,598 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,600 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,600 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,602 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,602 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,602 [1520] DEBUG index - Prepared sql query parameters : [36] +01/30/13 11:47:50,605 [1520] DEBUG index - query being executed : select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,607 [1520] DEBUG index - 查询语句: select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,607 [1520] DEBUG index - query being executed : select vtiger_pbxmanager.callfrom,vtiger_pbxmanager.callto,vtiger_pbxmanager.timeofcall,vtiger_pbxmanager.status ,vtiger_crmentity.crmid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_pbxmanager.pbxmanagerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_pbxmanager.pbxmanagerid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_pbxmanager.callfrom LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.callto LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.timeofcall LIKE BINARY '%OSSEZ%' OR vtiger_pbxmanager.status LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,609 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,609 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,610 [1520] DEBUG index - Entering getListViewHeader(PBXManager,,,,global,CustomView) method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Entering getURLstring(PBXManager) method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,611 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,612 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,613 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:50,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,613 [1520] DEBUG index - function getTranslatedString(Call From) - translated to (呼叫来自) +01/30/13 11:47:50,613 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:50,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,613 [1520] DEBUG index - function getTranslatedString(Call To) - translated to (呼叫给) +01/30/13 11:47:50,613 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:50,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,613 [1520] DEBUG index - function getTranslatedString(Time Of Call) - translated to (呼叫时间) +01/30/13 11:47:50,613 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:50,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,614 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:50,614 [1520] DEBUG index - Entering isPermitted(PBXManager,EditView,) method ... +01/30/13 11:47:50,614 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,614 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,614 [1520] DEBUG index - Entering getListViewEntries(PBXManager,PBXManager,callfrom,callto,timeofcall,status,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,615 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,615 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,616 [1520] DEBUG index - Entering getTabid(PBXManager) method ... +01/30/13 11:47:50,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,616 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:50,616 [1520] DEBUG index - Prepared sql query parameters : [36,callfrom,callto,timeofcall,status] +01/30/13 11:47:50,619 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,621 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:50,621 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:50,621 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,621 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,621 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,622 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:50,633 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,633 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,633 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:50,633 [1520] DEBUG index - Entering isPermitted(ServiceContracts,index,) method ... +01/30/13 11:47:50,634 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,635 [1520] DEBUG index - Entering getListQuery(ServiceContracts,) method ... +01/30/13 11:47:50,635 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,636 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,636 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,638 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:50,638 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:50,638 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,638 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,638 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,639 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:50,639 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:50,639 [1520] INFO VT - PearDatabase ->TRANS creating new connection +01/30/13 11:47:50,643 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:50,645 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:50,645 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:50,645 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:50,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,645 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,646 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:50,646 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:50,646 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:50,646 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,646 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,647 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,647 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:50,647 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:50,647 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,647 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,647 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:50,648 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,648 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,648 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:50,650 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:47:50,650 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:47:50,650 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,650 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,650 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:50,650 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,651 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,651 [1520] DEBUG index - Prepared sql query parameters : [ServiceContracts] +01/30/13 11:47:50,653 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,653 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,653 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,653 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:50,655 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,656 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:50,658 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,658 [1520] DEBUG index - Prepared sql query parameters : [vtiger_servicecontracts] +01/30/13 11:47:50,662 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,662 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,664 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,664 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,669 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,670 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:50,671 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,671 [1520] DEBUG index - Prepared sql query parameters : [42] +01/30/13 11:47:50,674 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,674 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,674 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:47:50,676 [1520] DEBUG index - query being executed : select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,679 [1520] DEBUG index - 查询语句: select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,680 [1520] DEBUG index - query being executed : select vtiger_servicecontracts.contract_no,vtiger_servicecontracts.subject,vtiger_servicecontracts.sc_related_to,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_servicecontracts.start_date,vtiger_servicecontracts.due_date,vtiger_servicecontracts.progress,vtiger_servicecontracts.contract_status ,vtiger_crmentity.crmid FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_servicecontractscf ON vtiger_servicecontractscf.servicecontractsid = vtiger_servicecontracts.servicecontractsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid =vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_account ON vtiger_account.accountid =vtiger_servicecontracts.sc_related_to WHERE vtiger_servicecontracts.servicecontractsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.start_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.end_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.sc_related_to LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.tracking_unit LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.total_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.used_units LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.subject LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.due_date LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_status LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.priority LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.contract_type LIKE BINARY '%OSSEZ%' OR vtiger_servicecontracts.progress LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,,,global,CustomView) method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,684 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,686 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,686 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,686 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:47:50,686 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,686 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (关联于) +01/30/13 11:47:50,687 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,687 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:50,687 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,687 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:50,687 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,687 [1520] DEBUG index - function getTranslatedString(Due date) - translated to (到期日期) +01/30/13 11:47:50,687 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,688 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:47:50,688 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:50,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,688 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:50,688 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:50,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,688 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,689 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,contract_no,subject,sc_related_to,user_name,start_date,due_date,progress,contract_status,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,689 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,689 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,690 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:47:50,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,690 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:47:50,690 [1520] DEBUG index - Prepared sql query parameters : [37,subject,sc_related_to,assigned_user_id,start_date,due_date,progress,contract_status] +01/30/13 11:47:50,693 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,696 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:50,696 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:50,696 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,696 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,696 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,696 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,696 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,697 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,702 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,702 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,702 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,702 [1520] DEBUG index - Entering isPermitted(Services,index,) method ... +01/30/13 11:47:50,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,703 [1520] DEBUG index - Entering getListQuery(Services,) method ... +01/30/13 11:47:50,704 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,704 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,704 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,706 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:50,706 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:50,706 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,706 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,707 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,707 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:50,707 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:50,707 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,707 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,708 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,708 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,708 [1520] DEBUG index - Prepared sql query parameters : [Services] +01/30/13 11:47:50,710 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:47:50,710 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:47:50,710 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,710 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,710 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,711 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,711 [1520] DEBUG index - Prepared sql query parameters : [Services] +01/30/13 11:47:50,712 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,713 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,713 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,715 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,715 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:50,718 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,718 [1520] DEBUG index - Prepared sql query parameters : [vtiger_service] +01/30/13 11:47:50,722 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,722 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,724 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,724 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,731 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,731 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:50,732 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,733 [1520] DEBUG index - Prepared sql query parameters : [43] +01/30/13 11:47:50,735 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,735 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,735 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:47:50,738 [1520] DEBUG index - query being executed : select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,741 [1520] DEBUG index - 查询语句: select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,741 [1520] DEBUG index - query being executed : select vtiger_service.service_no,vtiger_service.servicename,vtiger_service.service_usageunit,vtiger_service.unit_price,vtiger_service.qty_per_unit,vtiger_service.servicecategory,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_servicecf ON vtiger_servicecf.serviceid = vtiger_service.serviceid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid WHERE vtiger_service.serviceid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_service.servicename LIKE BINARY '%OSSEZ%' OR vtiger_service.discontinued LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.sales_end_date LIKE BINARY '%OSSEZ%' OR vtiger_service.start_date LIKE BINARY '%OSSEZ%' OR vtiger_service.expiry_date LIKE BINARY '%OSSEZ%' OR vtiger_service.website LIKE BINARY '%OSSEZ%' OR vtiger_service.service_usageunit LIKE BINARY '%OSSEZ%' OR vtiger_service.qty_per_unit LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_service.servicecategory LIKE BINARY '%OSSEZ%' OR vtiger_service.unit_price LIKE BINARY '%OSSEZ%' OR vtiger_service.taxclass LIKE BINARY '%OSSEZ%' OR vtiger_service.commissionrate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,745 [1520] DEBUG index - Entering getListViewHeader(Services,,,,global,CustomView) method ... +01/30/13 11:47:50,745 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:47:50,745 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,745 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,746 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,746 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,747 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,747 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:47:50,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,748 [1520] DEBUG index - function getTranslatedString(Usage Unit) - translated to (计费单位) +01/30/13 11:47:50,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,748 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:47:50,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,748 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:47:50,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,749 [1520] DEBUG index - function getTranslatedString(Service Category) - translated to (分类) +01/30/13 11:47:50,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:50,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,749 [1520] DEBUG index - function getTranslatedString(Owner) - translated to (所有人) +01/30/13 11:47:50,749 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:50,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,749 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,750 [1520] DEBUG index - Entering getListViewEntries(Services,Services,service_no,servicename,service_usageunit,unit_price,qty_per_unit,servicecategory,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,750 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,750 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,751 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:47:50,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,751 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:50,751 [1520] DEBUG index - Prepared sql query parameters : [38,servicename,service_usageunit,unit_price,qty_per_unit,servicecategory,assigned_user_id] +01/30/13 11:47:50,754 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,756 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:50,756 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:50,756 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,756 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,757 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,757 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:50,761 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,761 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,761 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,762 [1520] DEBUG index - Entering isPermitted(Assets,index,) method ... +01/30/13 11:47:50,762 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,763 [1520] DEBUG index - Entering getListQuery(Assets,) method ... +01/30/13 11:47:50,764 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,764 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,764 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,766 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:50,766 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:50,766 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,766 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,766 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:50,766 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:50,769 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:47:50,769 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:47:50,769 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:47:50,769 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:50,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,769 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,769 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:47:50,770 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:47:50,770 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:47:50,770 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:47:50,770 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:50,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,770 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,770 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:47:50,771 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,771 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:50,771 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:50,771 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,771 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,772 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,772 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,772 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:50,774 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:47:50,774 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:47:50,774 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,774 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,774 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,774 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,774 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,775 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,775 [1520] DEBUG index - Prepared sql query parameters : [Assets] +01/30/13 11:47:50,777 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,777 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,777 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,777 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:50,779 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,780 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:50,782 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,782 [1520] DEBUG index - Prepared sql query parameters : [vtiger_assets] +01/30/13 11:47:50,785 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,785 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:50,789 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,790 [1520] DEBUG index - Prepared sql query parameters : [44] +01/30/13 11:47:50,792 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,792 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,792 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:47:50,795 [1520] DEBUG index - query being executed : select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,797 [1520] DEBUG index - 查询语句: select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,797 [1520] DEBUG index - query being executed : select vtiger_assets.asset_no,vtiger_assets.assetname,vtiger_assets.account,vtiger_assets.product ,vtiger_crmentity.crmid FROM vtiger_assets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_assets.assetsid INNER JOIN vtiger_assetscf ON vtiger_assetscf.assetsid = vtiger_assets.assetsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_products ON vtiger_products.productid = vtiger_assets.product LEFT JOIN vtiger_invoice ON vtiger_invoice.invoiceid = vtiger_assets.invoiceid WHERE vtiger_assets.assetsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_assets.asset_no LIKE BINARY '%OSSEZ%' OR vtiger_assets.product LIKE BINARY '%OSSEZ%' OR vtiger_assets.serialnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.datesold LIKE BINARY '%OSSEZ%' OR vtiger_assets.dateinservice LIKE BINARY '%OSSEZ%' OR vtiger_assets.tagnumber LIKE BINARY '%OSSEZ%' OR vtiger_assets.invoiceid LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingmethod LIKE BINARY '%OSSEZ%' OR vtiger_assets.shippingtrackingnumber LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_assets.assetname LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,800 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,801 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Entering getListViewHeader(Assets,,,,global,CustomView) method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Entering getURLstring(Assets) method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,803 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:50,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,804 [1520] DEBUG index - function getTranslatedString(Asset No) - translated to (资产编号) +01/30/13 11:47:50,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:50,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,804 [1520] DEBUG index - function getTranslatedString(Asset Name) - translated to (资产名称) +01/30/13 11:47:50,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:50,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,805 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:47:50,805 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:50,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,805 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,805 [1520] DEBUG index - Entering getListViewEntries(Assets,Assets,asset_no,assetname,account,product,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,806 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,806 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,807 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:47:50,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,807 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?) +01/30/13 11:47:50,807 [1520] DEBUG index - Prepared sql query parameters : [41,asset_no,assetname,product] +01/30/13 11:47:50,809 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,812 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,812 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,813 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,813 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,813 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,813 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,816 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,817 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,817 [1520] DEBUG index - Entering isPermitted(ModComments,index,) method ... +01/30/13 11:47:50,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,818 [1520] DEBUG index - Entering getListQuery(ModComments,) method ... +01/30/13 11:47:50,819 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,819 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,819 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,821 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,821 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,821 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,821 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,822 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,822 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,824 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,824 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,824 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:50,824 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:50,826 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:47:50,827 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:47:50,827 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:47:50,827 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:50,827 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,827 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,827 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:47:50,827 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:50,827 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:50,827 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:50,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,828 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:50,828 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:50,828 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:50,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,829 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,829 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,829 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,829 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,829 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,829 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,832 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,832 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,832 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:47:50,832 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:47:50,832 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:50,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,833 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,834 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,834 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,834 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,834 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,835 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,835 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,837 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,837 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,841 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,841 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,841 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,841 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,841 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,842 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,844 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,844 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,844 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,845 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,845 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,845 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,845 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,845 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,847 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,847 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,847 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,848 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,848 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:50,850 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,850 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,850 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,850 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,851 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,851 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,854 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,855 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,855 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,855 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,855 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:47:50,857 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,857 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,857 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,860 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,860 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,862 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,862 [1520] DEBUG index - Prepared sql query parameters : [vtiger_modcomments] +01/30/13 11:47:50,866 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,866 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,872 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,872 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,874 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,874 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,876 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,876 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,878 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,878 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,878 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,881 [1520] DEBUG index - query being executed : select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,884 [1520] DEBUG index - 查询语句: select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,884 [1520] DEBUG index - query being executed : select vtiger_modcomments.commentcontent,vtiger_modcomments.related_to,vtiger_crmentity.modifiedtime,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_modcomments.modcommentsid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_modcomments.commentcontent LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.related_to LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smcreatorid LIKE BINARY '%OSSEZ%' OR vtiger_modcomments.parent_comments LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Entering getListViewHeader(ModComments,,,,global,CustomView) method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Entering getURLstring(ModComments) method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,888 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,889 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Entering getColumnFields(ModComments) method ... +01/30/13 11:47:50,890 [1520] DEBUG index - in getColumnFields ModComments +01/30/13 11:47:50,890 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,890 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,890 [1520] DEBUG index - Prepared sql query parameters : [45] +01/30/13 11:47:50,894 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,895 [1520] DEBUG index - function getTranslatedString(Comment) - translated to (评论) +01/30/13 11:47:50,895 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:50,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,896 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (Related To) +01/30/13 11:47:50,896 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:50,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,896 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:50,896 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:50,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,896 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:50,896 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:50,897 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,897 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,897 [1520] DEBUG index - Entering getListViewEntries(ModComments,ModComments,commentcontent,related_to,modifiedtime,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,897 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,897 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,898 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:47:50,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,899 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:50,899 [1520] DEBUG index - Prepared sql query parameters : [45,commentcontent,related_to,modifiedtime,assigned_user_id] +01/30/13 11:47:50,901 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,903 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,903 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,903 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,903 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,903 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,903 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,906 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,906 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,906 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,index,) method ... +01/30/13 11:47:50,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,908 [1520] DEBUG index - Entering getListQuery(ProjectMilestone,) method ... +01/30/13 11:47:50,908 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,908 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,908 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,910 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,910 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,911 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,911 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,911 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,911 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,913 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,913 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,913 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:50,913 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:50,915 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,915 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,916 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,916 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,916 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,916 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,918 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,918 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,918 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,919 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,919 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,919 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,919 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,919 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,919 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,921 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,921 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,921 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,922 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,922 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:50,924 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,924 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,924 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,924 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,924 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,924 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,926 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,926 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,926 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,927 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:50,927 [1520] DEBUG index - Prepared sql query parameters : [ProjectMilestone] +01/30/13 11:47:50,929 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,929 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,929 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:50,929 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,933 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:50,934 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,936 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,936 [1520] DEBUG index - Prepared sql query parameters : [vtiger_projectmilestone] +01/30/13 11:47:50,939 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:50,940 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:50,946 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:50,946 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,948 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:50,948 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,950 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,951 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:50,951 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,955 [1520] DEBUG index - query being executed : select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,958 [1520] DEBUG index - 查询语句: select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:50,958 [1520] DEBUG index - query being executed : select vtiger_projectmilestone.projectmilestonename,vtiger_projectmilestone.projectmilestonedate,vtiger_crmentity.description,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_projectmilestone INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projectmilestone.projectmilestoneid INNER JOIN vtiger_projectmilestonecf ON vtiger_projectmilestonecf.projectmilestoneid = vtiger_projectmilestone.projectmilestoneid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projectmilestone.projectid WHERE vtiger_projectmilestone.projectmilestoneid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projectmilestone.projectmilestonename LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonedate LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestonetype LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projectmilestone.projectmilestone_no LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:50,961 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,961 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Entering getListViewHeader(ProjectMilestone,,,,global,CustomView) method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Entering getURLstring(ProjectMilestone) method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,964 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,965 [1520] DEBUG index - Entering getColumnFields(ProjectMilestone) method ... +01/30/13 11:47:50,965 [1520] DEBUG index - in getColumnFields ProjectMilestone +01/30/13 11:47:50,965 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,965 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,965 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,965 [1520] DEBUG index - Prepared sql query parameters : [46] +01/30/13 11:47:50,969 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,969 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,969 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,970 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:50,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,970 [1520] DEBUG index - function getTranslatedString(Project Milestone Name) - translated to (Project Milestone Name) +01/30/13 11:47:50,970 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:50,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,970 [1520] DEBUG index - function getTranslatedString(Milestone Date) - translated to (Milestone Date) +01/30/13 11:47:50,970 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:50,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,971 [1520] DEBUG index - function getTranslatedString(description) - translated to (description) +01/30/13 11:47:50,971 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:50,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,971 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:47:50,971 [1520] DEBUG index - Entering return_module_language(en_us,ProjectMilestone) method ... +01/30/13 11:47:50,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:50,971 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:50,971 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:50,972 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,972 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:50,972 [1520] DEBUG index - Entering getListViewEntries(ProjectMilestone,ProjectMilestone,projectmilestonename,projectmilestonedate,description,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:50,972 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:50,972 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:50,973 [1520] DEBUG index - Entering getTabid(ProjectMilestone) method ... +01/30/13 11:47:50,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,974 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:47:50,974 [1520] DEBUG index - Prepared sql query parameters : [46,projectmilestonename,projectmilestonedate,description,createdtime,modifiedtime] +01/30/13 11:47:50,976 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:50,977 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,977 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,977 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,977 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,978 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,978 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,980 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,980 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,980 [1520] DEBUG index - Entering isPermitted(ProjectTask,index,) method ... +01/30/13 11:47:50,980 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:50,982 [1520] DEBUG index - Entering getListQuery(ProjectTask,) method ... +01/30/13 11:47:50,982 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:50,982 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,982 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:50,983 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:50,985 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,985 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,985 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,985 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,985 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,985 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,987 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,987 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,987 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:50,988 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:50,990 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,991 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,991 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,991 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,991 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,991 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,991 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,991 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,995 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,996 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,996 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:50,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,996 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:50,996 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:50,996 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,997 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,997 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:50,997 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:50,999 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:50,999 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:50,999 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:50,999 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:50,999 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:50,999 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:51,001 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,001 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,002 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,002 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,002 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,002 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,004 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,004 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,004 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,004 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:51,004 [1520] DEBUG index - Prepared sql query parameters : [ProjectTask] +01/30/13 11:47:51,006 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,007 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:51,007 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,009 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:51,009 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,012 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,012 [1520] DEBUG index - Prepared sql query parameters : [vtiger_projecttask] +01/30/13 11:47:51,015 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:51,016 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:51,018 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,018 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:51,024 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:51,024 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,026 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:51,026 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,028 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,028 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,028 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:51,028 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,033 [1520] DEBUG index - query being executed : select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,038 [1520] DEBUG index - 查询语句: select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,038 [1520] DEBUG index - query being executed : select vtiger_projecttask.projecttaskname,vtiger_projecttask.projectid,vtiger_projecttask.projecttaskpriority,vtiger_projecttask.projecttaskprogress,vtiger_projecttask.projecttaskhours,vtiger_projecttask.startdate,vtiger_projecttask.enddate,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_projecttask INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_projecttask.projecttaskid INNER JOIN vtiger_projecttaskcf ON vtiger_projecttaskcf.projecttaskid = vtiger_projecttask.projecttaskid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_projecttask.projectid WHERE vtiger_projecttask.projecttaskid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_projecttask.projecttaskname LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasktype LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskpriority LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projectid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttasknumber LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttask_no LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskprogress LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.projecttaskhours LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.startdate LIKE BINARY '%OSSEZ%' OR vtiger_projecttask.enddate LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:51,042 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,042 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Entering getListViewHeader(ProjectTask,,,,global,CustomView) method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Entering getURLstring(ProjectTask) method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,043 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Entering getColumnFields(ProjectTask) method ... +01/30/13 11:47:51,045 [1520] DEBUG index - in getColumnFields ProjectTask +01/30/13 11:47:51,045 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,045 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,045 [1520] DEBUG index - Prepared sql query parameters : [47] +01/30/13 11:47:51,050 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,051 [1520] DEBUG index - function getTranslatedString(Project Task Name) - translated to (任务名称) +01/30/13 11:47:51,051 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,052 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:51,052 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,052 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:47:51,052 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,052 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (任务进程) +01/30/13 11:47:51,052 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,052 [1520] DEBUG index - function getTranslatedString(Worked Hours) - translated to (已工作小时) +01/30/13 11:47:51,052 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,053 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:51,053 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,053 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:47:51,053 [1520] DEBUG index - Entering return_module_language(en_us,ProjectTask) method ... +01/30/13 11:47:51,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,053 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:51,053 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:51,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,054 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:51,054 [1520] DEBUG index - Entering getListViewEntries(ProjectTask,ProjectTask,projecttaskname,projectid,projecttaskpriority,projecttaskprogress,projecttaskhours,startdate,enddate,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:51,054 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,054 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,055 [1520] DEBUG index - Entering getTabid(ProjectTask) method ... +01/30/13 11:47:51,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,056 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?) +01/30/13 11:47:51,056 [1520] DEBUG index - Prepared sql query parameters : [47,projecttaskname,projectid,projecttaskpriority,projecttaskprogress,projecttaskhours,startdate,enddate,assigned_user_id] +01/30/13 11:47:51,059 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:51,060 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,060 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,060 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,060 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,060 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,060 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,063 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,063 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,063 [1520] DEBUG index - Entering isPermitted(Project,index,) method ... +01/30/13 11:47:51,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,065 [1520] DEBUG index - Entering getListQuery(Project,) method ... +01/30/13 11:47:51,066 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,066 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:51,066 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:51,068 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,068 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,068 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,068 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,069 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,069 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,070 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,071 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,071 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:51,071 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:51,073 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:51,073 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:51,073 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:51,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,074 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,074 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:47:51,074 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:47:51,074 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:51,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,074 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,075 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,075 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,075 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,076 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,077 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,077 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,078 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:51,078 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:51,078 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:51,080 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,080 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,080 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,080 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,081 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,081 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,082 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,082 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,083 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,083 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,083 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,083 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:51,083 [1520] DEBUG index - Prepared sql query parameters : [Project] +01/30/13 11:47:51,085 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,085 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,085 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:51,085 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,087 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:51,088 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,091 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,091 [1520] DEBUG index - Prepared sql query parameters : [vtiger_project] +01/30/13 11:47:51,095 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:51,095 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:51,098 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,098 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:51,104 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:51,104 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,105 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:51,105 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,108 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,108 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:51,108 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,110 [1520] DEBUG index - query being executed : select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,114 [1520] DEBUG index - 查询语句: select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,114 [1520] DEBUG index - query being executed : select vtiger_project.projectname,vtiger_project.linktoaccountscontacts,vtiger_project.startdate,vtiger_project.targetenddate,vtiger_project.actualenddate,vtiger_project.targetbudget,vtiger_project.progress,vtiger_project.projectstatus,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_projectcf ON vtiger_projectcf.projectid = vtiger_project.projectid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_project.linktoaccountscontacts WHERE vtiger_project.projectid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_project.projectname LIKE BINARY '%OSSEZ%' OR vtiger_project.startdate LIKE BINARY '%OSSEZ%' OR vtiger_project.targetenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.actualenddate LIKE BINARY '%OSSEZ%' OR vtiger_project.projectstatus LIKE BINARY '%OSSEZ%' OR vtiger_project.projecttype LIKE BINARY '%OSSEZ%' OR vtiger_project.linktoaccountscontacts LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_project.project_no LIKE BINARY '%OSSEZ%' OR vtiger_project.targetbudget LIKE BINARY '%OSSEZ%' OR vtiger_project.projecturl LIKE BINARY '%OSSEZ%' OR vtiger_project.projectpriority LIKE BINARY '%OSSEZ%' OR vtiger_project.progress LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:51,117 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,117 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,118 [1520] DEBUG index - Entering getListViewHeader(Project,,,,global,CustomView) method ... +01/30/13 11:47:51,119 [1520] DEBUG index - Entering getURLstring(Project) method ... +01/30/13 11:47:51,119 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:51,120 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,120 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,120 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,121 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,121 [1520] DEBUG index - Entering getColumnFields(Project) method ... +01/30/13 11:47:51,121 [1520] DEBUG index - in getColumnFields Project +01/30/13 11:47:51,121 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,122 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,122 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,122 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,122 [1520] DEBUG index - Prepared sql query parameters : [48] +01/30/13 11:47:51,127 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,128 [1520] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/30/13 11:47:51,128 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,128 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:47:51,128 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,128 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:47:51,128 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,128 [1520] DEBUG index - function getTranslatedString(Target End Date) - translated to (目标结束日期) +01/30/13 11:47:51,128 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,129 [1520] DEBUG index - function getTranslatedString(Actual End Date) - translated to (实际结束日期) +01/30/13 11:47:51,129 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,129 [1520] DEBUG index - function getTranslatedString(Target Budget) - translated to (目标预算) +01/30/13 11:47:51,129 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,129 [1520] DEBUG index - function getTranslatedString(Progress) - translated to (进程) +01/30/13 11:47:51,129 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,129 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:47:51,129 [1520] DEBUG index - Entering return_module_language(en_us,Project) method ... +01/30/13 11:47:51,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,130 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:51,130 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:51,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,130 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:51,131 [1520] DEBUG index - Entering getListViewEntries(Project,Project,projectname,linktoaccountscontacts,startdate,targetenddate,actualenddate,targetbudget,progress,projectstatus,user_name,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:51,131 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,131 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,132 [1520] DEBUG index - Entering getTabid(Project) method ... +01/30/13 11:47:51,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,132 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?) +01/30/13 11:47:51,132 [1520] DEBUG index - Prepared sql query parameters : [48,projectname,linktoaccountscontacts,startdate,targetenddate,actualenddate,targetbudget,progress,projectstatus,assigned_user_id] +01/30/13 11:47:51,135 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:51,138 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,139 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,139 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,139 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,139 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,139 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,142 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,142 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,142 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:51,142 [1520] DEBUG index - Entering isPermitted(SMSNotifier,index,) method ... +01/30/13 11:47:51,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,144 [1520] DEBUG index - Entering getListQuery(SMSNotifier,) method ... +01/30/13 11:47:51,144 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,145 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:51,145 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:51,147 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,147 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,147 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,147 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,147 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,147 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,149 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,149 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,149 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:51,150 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:47:51,150 [1520] INFO VT - PearDatabase ->TRANS creating new connection +01/30/13 11:47:51,153 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:51,155 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,155 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,155 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,156 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,156 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,156 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,156 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,158 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,158 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,158 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:51,158 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:51,158 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:51,158 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:51,161 [1520] DEBUG index - Entering getColumnFields(Home) method ... +01/30/13 11:47:51,161 [1520] DEBUG index - in getColumnFields Home +01/30/13 11:47:51,161 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,161 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,161 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,161 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:47:51,163 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:51,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,163 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,163 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:51,164 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,164 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:51,164 [1520] DEBUG index - Prepared sql query parameters : [SMSNotifier] +01/30/13 11:47:51,166 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,166 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:51,166 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:51,169 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:51,169 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:51,171 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,171 [1520] DEBUG index - Prepared sql query parameters : [vtiger_smsnotifier] +01/30/13 11:47:51,174 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:51,174 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:51,176 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:51,176 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:51,182 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:51,182 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:51,184 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:51,184 [1520] DEBUG index - Prepared sql query parameters : [49] +01/30/13 11:47:51,186 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,186 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:51,186 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:51,189 [1520] DEBUG index - query being executed : select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,191 [1520] DEBUG index - 查询语句: select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') +01/30/13 11:47:51,191 [1520] DEBUG index - query being executed : select vtiger_smsnotifier.message,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.createdtime,vtiger_crmentity.modifiedtime ,vtiger_crmentity.crmid FROM vtiger_smsnotifier INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_smsnotifier.smsnotifierid INNER JOIN vtiger_smsnotifiercf ON vtiger_smsnotifiercf.smsnotifierid = vtiger_smsnotifier.smsnotifierid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_smsnotifier.smsnotifierid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_smsnotifier.message LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:51,199 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,199 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,200 [1520] DEBUG index - Entering getListViewHeader(SMSNotifier,,,,global,CustomView) method ... +01/30/13 11:47:51,200 [1520] DEBUG index - Entering getURLstring(SMSNotifier) method ... +01/30/13 11:47:51,200 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:51,200 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,201 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,201 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Entering getColumnFields(SMSNotifier) method ... +01/30/13 11:47:51,202 [1520] DEBUG index - in getColumnFields SMSNotifier +01/30/13 11:47:51,202 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,203 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:51,203 [1520] DEBUG index - Prepared sql query parameters : [50] +01/30/13 11:47:51,205 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:51,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,206 [1520] DEBUG index - function getTranslatedString(message) - translated to (消息) +01/30/13 11:47:51,206 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:51,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,207 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:47:51,207 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:51,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,207 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:47:51,207 [1520] DEBUG index - Entering return_module_language(en_us,SMSNotifier) method ... +01/30/13 11:47:51,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:51,207 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:47:51,207 [1520] DEBUG index - Entering isPermitted(SMSNotifier,EditView,) method ... +01/30/13 11:47:51,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,208 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:51,208 [1520] DEBUG index - Entering getListViewEntries(SMSNotifier,SMSNotifier,message,user_name,createdtime,modifiedtime,crmid +,Array,,,,,CustomView) method ... +01/30/13 11:47:51,208 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:51,208 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:51,209 [1520] DEBUG index - Entering getTabid(SMSNotifier) method ... +01/30/13 11:47:51,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:51,210 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?) +01/30/13 11:47:51,210 [1520] DEBUG index - Prepared sql query parameters : [50,message,assigned_user_id,createdtime,modifiedtime] +01/30/13 11:47:51,212 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:51,213 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:47:51,213 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:51,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:51,893 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:52,023 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:52,023 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:52,023 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:52,024 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:52,024 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'UnifiedSearchModules', + 'ajax' => 'true', +) +01/30/13 11:47:52,024 [1520] INFO index - About to take action HomeAjax +01/30/13 11:47:52,024 [1520] DEBUG index - in HomeAjax +01/30/13 11:47:52,024 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:47:52,024 [1520] INFO index - current module is Home +01/30/13 11:47:52,073 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:52,073 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:52,073 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:52,073 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:52,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:52,074 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:52,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:52,074 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:52,074 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:52,084 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:52,084 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:52,084 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:52,084 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:52,085 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:52,085 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:52,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,086 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:52,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,086 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:52,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,086 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:52,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,087 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:52,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,087 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:52,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,088 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:52,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,088 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:52,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,089 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:52,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,089 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,090 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:52,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,091 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:52,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,091 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:52,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,092 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:52,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,092 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,093 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:52,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,094 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:52,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,094 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,095 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:52,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,096 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:52,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,096 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:52,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,097 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:52,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,097 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:52,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,098 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:52,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,098 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:52,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,098 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:52,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,099 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:52,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,099 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:52,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,100 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:52,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,100 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:52,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,101 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:52,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,101 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:52,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,101 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:52,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,102 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:52,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,102 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:52,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,103 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:52,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,103 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,104 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:52,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,105 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:52,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:52,105 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:52,109 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:52,109 [1520] DEBUG index - Prepared sql query parameters : [391,1,Home,HomeAjax,,2013-01-30 11:47:52] +01/30/13 11:47:52,114 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:52,114 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:52,114 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:52,114 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:52,116 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:52,116 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:52,118 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:52,118 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:52,120 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:52,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:52,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,120 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:52,120 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:52,121 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:52,121 [1520] DEBUG index - skipping headers +01/30/13 11:47:52,123 [1520] DEBUG index - query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:47:52,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:52,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,138 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:52,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:52,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,139 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:52,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:52,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,140 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:52,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:52,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,141 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:52,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:52,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,142 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:52,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:52,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,143 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:52,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:52,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,144 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:52,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,144 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:52,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,145 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:52,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:52,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,146 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:52,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:52,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,146 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:52,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:52,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,147 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:52,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,147 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:52,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,148 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:52,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:52,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,149 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:52,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,149 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:52,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,149 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:52,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,150 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:52,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,150 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:52,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:52,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,151 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:52,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:52,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,152 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:52,152 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,153 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:52,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,153 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:52,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,153 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:52,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,154 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:47:52,154 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,154 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:52,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,155 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:52,155 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,155 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:52,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,156 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:52,156 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,156 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,156 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:52,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,156 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:47:52,157 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,157 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,157 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:52,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,157 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:52,157 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,157 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,157 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:52,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,158 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:52,158 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,158 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:52,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,159 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:52,159 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:52,159 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:52,159 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:52,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:52,159 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:55,943 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:47:56,074 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:47:56,074 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:47:56,075 [1520] DEBUG index - ****Starting for new session +01/30/13 11:47:56,075 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:47:56,075 [1520] DEBUG index - array ( + 'action' => 'UnifiedSearch', + 'module' => 'Home', + 'parenttab' => 'Marketing', + 'search_onlyin' => 'Accounts', + 'query_string' => 'OSSEZ', + 'x' => '29', + 'y' => '10', +) +01/30/13 11:47:56,075 [1520] INFO index - About to take action UnifiedSearch +01/30/13 11:47:56,075 [1520] DEBUG index - in UnifiedSearch +01/30/13 11:47:56,076 [1520] INFO index - current page is modules/Home/UnifiedSearch.php +01/30/13 11:47:56,076 [1520] INFO index - current module is Home +01/30/13 11:47:56,124 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:47:56,124 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:47:56,124 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:47:56,125 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:56,125 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,125 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:56,125 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,125 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:56,125 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:47:56,135 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:47:56,135 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,135 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:56,136 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:47:56,136 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:47:56,136 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:47:56,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,137 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:47:56,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,137 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:47:56,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,138 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:47:56,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,138 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:47:56,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,139 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:47:56,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,139 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:47:56,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,140 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:47:56,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,140 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:47:56,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,141 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:47:56,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,141 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:47:56,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,141 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:47:56,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,142 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:47:56,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,142 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:47:56,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,143 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:47:56,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,143 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:47:56,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,144 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:47:56,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,144 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:47:56,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,144 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:47:56,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,145 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:47:56,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,145 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:47:56,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,146 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:47:56,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,146 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,147 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:47:56,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,148 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:47:56,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,148 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:47:56,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,149 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:47:56,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,149 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:47:56,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,149 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:47:56,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,150 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:47:56,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,150 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:47:56,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,151 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:47:56,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,151 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:47:56,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,152 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:47:56,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,152 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:47:56,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,152 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:47:56,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,153 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:47:56,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,153 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:47:56,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,154 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:47:56,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,154 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,155 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:47:56,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,156 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:47:56,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,156 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:47:56,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:47:56,157 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:47:56,161 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:47:56,161 [1520] DEBUG index - Prepared sql query parameters : [392,1,Home,UnifiedSearch,,2013-01-30 11:47:56] +01/30/13 11:47:56,164 [1520] DEBUG index - Current user is: admin +01/30/13 11:47:56,164 [1520] DEBUG index - Current theme is: softed +01/30/13 11:47:56,164 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:47:56,165 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:47:56,166 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:47:56,166 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:47:56,168 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:47:56,168 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:47:56,170 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:47:56,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:56,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,171 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:47:56,171 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:47:56,171 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:47:56,171 [1520] DEBUG index - including headers +01/30/13 11:47:56,171 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:47:56,172 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:47:56,175 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:56,175 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:56,177 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:47:56,178 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:47:56,178 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,178 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:47:56,178 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,178 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:47:56,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,179 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:47:56,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,179 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:47:56,180 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,180 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:47:56,180 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,180 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:47:56,180 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,181 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:47:56,181 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:47:56,181 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:47:56,181 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:47:56,181 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:47:56,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,188 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:47:56,188 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:56,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:56,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,189 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:47:56,189 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:47:56,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:56,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,190 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:47:56,190 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:47:56,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:56,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,192 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:47:56,192 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:47:56,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,193 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:56,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,193 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:47:56,193 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:47:56,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:56,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,194 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:47:56,194 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:56,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:56,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,195 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:47:56,196 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:56,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:47:56,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:47:56,197 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:47:56,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,197 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:56,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,198 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:47:56,198 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:56,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:56,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,199 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:47:56,199 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:56,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:56,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,200 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:47:56,200 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:56,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,201 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:56,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,201 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:47:56,201 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:47:56,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:56,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:47:56,202 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:56,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:56,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,203 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:47:56,204 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:47:56,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,204 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:56,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,204 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:47:56,205 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:47:56,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,205 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:56,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,206 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:47:56,206 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:47:56,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:56,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,207 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:47:56,207 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:47:56,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:56,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,209 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:47:56,209 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:47:56,209 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:56,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,210 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:47:56,210 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:47:56,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,210 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:47:56,210 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:47:56) method ... +01/30/13 11:47:56,211 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:47:56,211 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:47:56) method ... +01/30/13 11:47:56,211 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:47:56,211 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,211 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,212 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:47:56,212 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:47:56,212 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:47:56,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,217 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,217 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,226 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:47:56,230 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:47:56,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,230 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:47:56,231 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:56,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:47:56,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:47:56,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,235 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:47:56,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,235 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,235 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,236 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:47:56,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,237 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:47:56,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,237 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:47:56,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,238 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,239 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:47:56,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,240 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:47:56,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,240 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:47:56,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,241 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:47:56,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,241 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:47:56,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,242 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:47:56,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,242 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:47:56,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,242 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,243 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:47:56,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,244 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:56,244 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:47:56,244 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:47:56,248 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:47:56,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,248 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:47:56,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,249 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:47:56,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,249 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:47:56,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,250 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:47:56,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,250 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:47:56,251 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:47:56,253 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:47:56,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,253 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:47:56,253 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:47:56,258 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:47:56,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:56,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,263 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:47:56,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:47:56,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,264 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:47:56,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:47:56,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,264 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:47:56,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,264 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:47:56,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:47:56,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,264 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:47:56,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:47:56,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,265 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:47:56,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:47:56,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,265 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:47:56,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:47:56,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,265 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:47:56,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:47:56,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,266 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:47:56,266 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:47:56,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,266 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:47:56,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:47:56,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,267 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:47:56,268 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:47:56,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,269 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:47:56,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:47:56,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,269 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:47:56,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:47:56,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,270 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:47:56,270 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:47:56,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,270 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:47:56,270 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:47:56,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,271 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:47:56,271 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:47:56,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,271 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:47:56,271 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:47:56,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,272 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:47:56,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:47:56,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,272 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:47:56,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:47:56,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,273 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:47:56,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:47:56,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,273 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:47:56,273 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:47:56,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,273 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:47:56,274 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:47:56,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,274 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:47:56,274 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:47:56,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,274 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:47:56,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:47:56,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,274 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:47:56,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:47:56,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,275 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:47:56,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:47:56,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,275 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:47:56,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:47:56,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,275 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:47:56,275 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:47:56,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,276 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:47:56,276 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:47:56,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,276 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:47:56,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:47:56,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,277 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:47:56,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:47:56,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,277 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:47:56,277 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:47:56,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,278 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:47:56,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:47:56,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,279 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:47:56,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:47:56,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,279 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:47:56,282 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:47:56,298 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:56,298 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,298 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:56,299 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:56,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,299 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:47:56,299 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:56,309 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,309 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,309 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:56,309 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:47:56,310 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,311 [1520] DEBUG index - Entering getListQuery(Accounts,) method ... +01/30/13 11:47:56,311 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,311 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,311 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:56,312 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:56,314 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:56,314 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:56,314 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,314 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:56,314 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:56,315 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:56,315 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Exiting getListQuery method ... +01/30/13 11:47:56,315 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:47:56,315 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:56,319 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:47:56,319 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:47:56,319 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,319 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:47:56,319 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,320 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:47:56,320 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:47:56,322 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,322 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:47:56,322 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:56,326 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:47:56,326 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:56,329 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:56,329 [1520] DEBUG index - Prepared sql query parameters : [vtiger_account] +01/30/13 11:47:56,334 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:56,334 [1520] DEBUG index - Prepared sql query parameters : [vtiger_accountbillads] +01/30/13 11:47:56,338 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:47:56,339 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:47:56,341 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE tablename = ? and presence in (0,2) +01/30/13 11:47:56,341 [1520] DEBUG index - Prepared sql query parameters : [vtiger_crmentity] +01/30/13 11:47:56,346 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:47:56,347 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:56,348 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:47:56,348 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:47:56,351 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,351 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,351 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname, tablename FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) +01/30/13 11:47:56,351 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:47:56,355 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:56,360 [1520] DEBUG index - 查询语句: select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') +01/30/13 11:47:56,360 [1520] DEBUG index - query being executed : select vtiger_account.account_no,vtiger_account.accountname,vtiger_accountbillads.bill_city,vtiger_account.website,vtiger_account.phone,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name ,vtiger_crmentity.crmid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and (vtiger_account.accountname LIKE BINARY '%OSSEZ%' OR vtiger_account.account_no LIKE BINARY '%OSSEZ%' OR vtiger_account.phone LIKE BINARY '%OSSEZ%' OR vtiger_account.website LIKE BINARY '%OSSEZ%' OR vtiger_account.fax LIKE BINARY '%OSSEZ%' OR vtiger_account.tickersymbol LIKE BINARY '%OSSEZ%' OR vtiger_account.otherphone LIKE BINARY '%OSSEZ%' OR vtiger_account.parentid LIKE BINARY '%OSSEZ%' OR vtiger_account.email1 LIKE BINARY '%OSSEZ%' OR vtiger_account.employees LIKE BINARY '%OSSEZ%' OR vtiger_account.email2 LIKE BINARY '%OSSEZ%' OR vtiger_account.ownership LIKE BINARY '%OSSEZ%' OR vtiger_account.rating LIKE BINARY '%OSSEZ%' OR vtiger_account.industry LIKE BINARY '%OSSEZ%' OR vtiger_account.siccode LIKE BINARY '%OSSEZ%' OR vtiger_account.account_type LIKE BINARY '%OSSEZ%' OR vtiger_account.annualrevenue LIKE BINARY '%OSSEZ%' OR vtiger_account.emailoptout LIKE BINARY '%OSSEZ%' OR vtiger_account.notify_owner LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.smownerid LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.createdtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedtime LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.modifiedby LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_street LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_street LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_city LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_city LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_state LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_state LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_code LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_code LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_country LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_country LIKE BINARY '%OSSEZ%' OR vtiger_accountbillads.bill_pobox LIKE BINARY '%OSSEZ%' OR vtiger_accountshipads.ship_pobox LIKE BINARY '%OSSEZ%' OR vtiger_crmentity.description LIKE BINARY '%OSSEZ%') LIMIT 0, 20 +01/30/13 11:47:56,365 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,365 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,366 [1520] DEBUG index - Entering getListViewHeader(Accounts,,,,global,CustomView) method ... +01/30/13 11:47:56,366 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:47:56,367 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:47:56,367 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,367 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,367 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,368 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,368 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,369 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:47:56,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,369 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:47:56,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,369 [1520] DEBUG index - function getTranslatedString(City) - translated to (城市) +01/30/13 11:47:56,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,370 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:47:56,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,370 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:47:56,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,370 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:47:56,370 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:56,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,371 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:47:56,371 [1520] DEBUG index - Entering getListViewEntries(Accounts,Accounts,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC11,OSSEZ,San Mateo,,,胡昱铖,138 +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,Array,,,,,CustomView) method ... +01/30/13 11:47:56,372 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,372 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,373 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,373 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:47:56,373 [1520] DEBUG index - Prepared sql query parameters : [6,account_no,accountname,bill_city,website,phone,assigned_user_id] +01/30/13 11:47:56,377 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,account_no,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:56,377 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,377 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,378 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,379 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,379 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,bill_city,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:56,379 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,379 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,380 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,381 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,381 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,website,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:56,381 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,382 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,383 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,383 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,384 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,phone,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:56,384 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,384 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,385 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,385 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,386 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +ACC12,OSSEZ 1,San Mateo,,,胡昱铖,139 +,assigned_user_id,Accounts,Accounts,138,0,list,,,4) method ... +01/30/13 11:47:56,386 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,386 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,387 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,387 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,388 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,389 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:56,390 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,390 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,390 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,395 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:56,395 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:47:56,397 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,account_no,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:56,397 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,397 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,398 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,399 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,399 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,bill_city,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:56,400 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,400 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,401 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,website,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:56,402 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,402 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,403 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,403 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,404 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,phone,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:56,404 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,404 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,405 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,405 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,405 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,406 [1520] DEBUG index - Entering getValue(Array,account_no,accountname,bill_city,website,phone,user_name,crmid +,assigned_user_id,Accounts,Accounts,139,1,list,,,4) method ... +01/30/13 11:47:56,406 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,406 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,407 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:47:56,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:47:56,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:47:56,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:47:56,407 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:47:56,408 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:47:56,408 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,408 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,408 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,409 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:47:56,410 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:47:56,410 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:47:56,410 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:47:56,414 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:47:56,414 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:47:56,416 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:47:56,418 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:47:56,418 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:47:56,418 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:00,478 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:48:00,608 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:48:00,609 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:48:00,609 [1520] DEBUG index - ****Starting for new session +01/30/13 11:48:00,609 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:48:00,609 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'UnifiedSearchModules', + 'ajax' => 'true', +) +01/30/13 11:48:00,610 [1520] INFO index - About to take action HomeAjax +01/30/13 11:48:00,610 [1520] DEBUG index - in HomeAjax +01/30/13 11:48:00,610 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:48:00,610 [1520] INFO index - current module is Home +01/30/13 11:48:00,659 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:48:00,659 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:48:00,659 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:48:00,659 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:00,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:00,660 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:00,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:00,660 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:00,660 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:48:00,669 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:00,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:00,669 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:00,669 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:48:00,669 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:48:00,670 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:48:00,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,670 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:48:00,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,671 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:48:00,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,671 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:48:00,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,672 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:00,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,672 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:48:00,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,673 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:48:00,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,673 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:48:00,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,673 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:48:00,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,674 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:48:00,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,674 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:48:00,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,675 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:48:00,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,675 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,676 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:48:00,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,677 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:48:00,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,677 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:48:00,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,678 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:48:00,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,678 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:48:00,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,679 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:48:00,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,679 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:48:00,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:48:00,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,681 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:48:00,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,681 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:48:00,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,681 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:48:00,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,682 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:48:00,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,682 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:48:00,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,683 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:48:00,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,683 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:48:00,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,684 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:48:00,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,684 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:48:00,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,684 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:48:00,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,685 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:48:00,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,685 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:48:00,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,686 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:48:00,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,686 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:48:00,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,687 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:48:00,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,687 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:48:00,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,687 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:48:00,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,688 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:48:00,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,688 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:48:00,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,689 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:48:00,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,689 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:48:00,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,690 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:48:00,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:00,690 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:48:00,695 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:48:00,695 [1520] DEBUG index - Prepared sql query parameters : [393,1,Home,HomeAjax,,2013-01-30 11:48:00] +01/30/13 11:48:00,698 [1520] DEBUG index - Current user is: admin +01/30/13 11:48:00,698 [1520] DEBUG index - Current theme is: softed +01/30/13 11:48:00,698 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:48:00,698 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:48:00,700 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:48:00,700 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:48:00,702 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:48:00,702 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:48:00,704 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:48:00,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:48:00,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,704 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:48:00,705 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:48:00,705 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:48:00,705 [1520] DEBUG index - skipping headers +01/30/13 11:48:00,707 [1520] DEBUG index - query being executed : select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2) +01/30/13 11:48:00,722 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,722 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:48:00,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,723 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:48:00,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:48:00,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,724 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:48:00,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:00,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,724 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:00,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:48:00,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,725 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:48:00,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:48:00,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,726 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:48:00,726 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,726 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:48:00,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,727 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:48:00,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:48:00,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,728 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:48:00,728 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,728 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,728 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:48:00,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,729 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:48:00,729 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,729 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:48:00,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,730 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:48:00,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,730 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:48:00,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,730 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:48:00,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:48:00,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,731 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:48:00,731 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,732 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:48:00,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,732 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:48:00,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:48:00,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,733 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:48:00,733 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,733 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,733 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:48:00,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,734 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:48:00,734 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,734 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,734 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:48:00,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,735 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:48:00,735 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,735 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:48:00,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,735 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:48:00,735 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,736 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:48:00,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,737 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:48:00,737 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,737 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,737 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:48:00,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,737 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:48:00,737 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,737 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,738 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:48:00,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,739 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:48:00,739 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,739 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:48:00,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,740 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:48:00,740 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,740 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:48:00,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,740 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:48:00,740 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,740 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,741 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:48:00,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,741 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:48:00,741 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,741 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,741 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:48:00,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,742 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:48:00,742 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,742 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,742 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:48:00,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,743 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:48:00,743 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,743 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:48:00,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,743 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:48:00,743 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:00,744 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:00,744 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:48:00,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:00,744 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:48:05,440 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:48:05,576 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:48:05,576 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:48:05,576 [1520] DEBUG index - ****Starting for new session +01/30/13 11:48:05,577 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:48:05,577 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'record' => '138', + 'parenttab' => 'Marketing', +) +01/30/13 11:48:05,577 [1520] INFO index - About to take action DetailView +01/30/13 11:48:05,577 [1520] DEBUG index - in DetailView +01/30/13 11:48:05,577 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:48:05,577 [1520] INFO index - current module is Accounts +01/30/13 11:48:05,628 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:48:05,628 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:48:05,628 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:48:05,628 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:05,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,628 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:05,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,629 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:05,629 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:48:05,640 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:05,640 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,640 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:05,640 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:48:05,640 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:48:05,641 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:48:05,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,641 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:48:05,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,642 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:48:05,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,642 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:48:05,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,643 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:05,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,643 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:48:05,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,643 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:48:05,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,644 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:48:05,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,644 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:48:05,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,645 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:48:05,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,645 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,646 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:48:05,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,647 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:48:05,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,647 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:48:05,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,648 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:48:05,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,648 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,649 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:48:05,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,650 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:48:05,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,650 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,651 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:48:05,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,652 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:48:05,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,652 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:48:05,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,653 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:48:05,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,653 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:48:05,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,654 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:48:05,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,654 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:48:05,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,655 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:48:05,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,655 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:48:05,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,655 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:48:05,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,656 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:48:05,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,656 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:48:05,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,657 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:48:05,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,657 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,658 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:48:05,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,659 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:48:05,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,659 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:48:05,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,660 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:48:05,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,660 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:48:05,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,661 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:48:05,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:05,661 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:48:05,665 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:48:05,665 [1520] DEBUG index - Prepared sql query parameters : [394,1,Accounts,DetailView,138,2013-01-30 11:48:05] +01/30/13 11:48:05,669 [1520] DEBUG index - Current user is: admin +01/30/13 11:48:05,669 [1520] DEBUG index - Current theme is: softed +01/30/13 11:48:05,669 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:48:05,669 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:48:05,671 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:48:05,671 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:48:05,673 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:48:05,673 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:48:05,674 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:48:05,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,675 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:05,675 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:05,675 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,676 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,676 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:05,676 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:48:05,686 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,686 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:05,686 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:48:05,687 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:48:05,687 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:48:05,690 [1520] INFO index - in track view method Accounts +01/30/13 11:48:05,690 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,690 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:48:05,692 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:48:05,692 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,693 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:48:05,693 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:48:05,693 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:48:05,696 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:48:05,696 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:48:05,700 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:48:05,700 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:48:05,700 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:48:05,700 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:48:05,700 [1520] DEBUG index - including headers +01/30/13 11:48:05,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:48:05,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:48:05,704 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,704 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:05,706 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:48:05,706 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:48:05,706 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:05,708 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:48:05,708 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:48:05,709 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:48:05,709 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,709 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,710 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:48:05,711 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,711 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:48:05,711 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,711 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:48:05,712 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:48:05,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,718 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:48:05,718 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:48:05,719 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:48:05,719 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,719 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:48:05,719 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:48:05,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:48:05,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,721 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:48:05,721 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:48:05,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:48:05,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,722 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:48:05,723 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:48:05,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,723 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:48:05,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,723 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:48:05,724 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:48:05,724 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:48:05,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,725 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:48:05,725 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:48:05,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:48:05,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,726 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:48:05,726 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:48:05,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:48:05,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,727 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:48:05,727 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:48:05,727 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,728 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:48:05,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,728 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:48:05,728 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:48:05,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:48:05,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,729 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:48:05,729 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:48:05,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:48:05,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,730 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:48:05,731 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:48:05,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,731 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:48:05,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,732 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:48:05,732 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:48:05,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:48:05,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,733 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:48:05,733 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:48:05,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:48:05,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,734 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:48:05,734 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:48:05,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,734 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:48:05,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,735 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:48:05,735 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:48:05,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,736 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:48:05,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,736 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:48:05,736 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:48:05,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,737 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:48:05,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,738 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:48:05,738 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:48:05,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,738 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:48:05,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,739 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:48:05,739 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:48:05,739 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:48:05,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,740 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:48:05,740 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:48:05,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,740 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:48:05) method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:48:05) method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:48:05,741 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:48:05,743 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:48:05,743 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:48:05,743 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:48:05,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,746 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,746 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,748 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,749 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,750 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,751 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,753 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:48:05,759 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:48:05,759 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,759 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:48:05,759 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:05,761 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,761 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,762 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:48:05,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,762 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:48:05,762 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,763 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,764 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,765 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:48:05,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,767 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:48:05,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,767 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:48:05,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,767 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:48:05,768 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,768 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:48:05,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,768 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:48:05,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,769 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:48:05,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,769 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:48:05,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,769 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,770 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:48:05,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,772 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:48:05,772 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,772 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:48:05,772 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:48:05,772 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:05,775 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:48:05,776 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,776 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:48:05,776 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,777 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:48:05,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,777 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:48:05,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,778 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:48:05,778 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,778 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:48:05,778 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:48:05,781 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:48:05,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,781 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:48:05,782 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:48:05,784 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:48:05,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,789 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:05,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:48:05,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,790 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:48:05,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:48:05,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,790 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:48:05,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,790 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:05,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:48:05,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,791 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:48:05,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:48:05,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,791 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:48:05,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:48:05,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,791 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:48:05,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:48:05,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,792 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:48:05,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:48:05,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,792 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:48:05,792 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:48:05,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,792 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:48:05,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:48:05,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,793 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:48:05,795 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:48:05,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,795 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:48:05,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:48:05,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,795 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:48:05,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:48:05,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,796 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:48:05,796 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:48:05,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,796 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:48:05,797 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:48:05,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,797 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:48:05,797 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:48:05,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,797 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:48:05,797 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:48:05,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,798 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:48:05,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:48:05,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,798 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:48:05,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:48:05,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,799 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:48:05,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:48:05,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,799 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:48:05,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:48:05,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,800 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:48:05,800 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:48:05,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,800 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:48:05,800 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:48:05,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,800 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:48:05,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:48:05,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,800 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:48:05,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:48:05,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,801 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:48:05,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:48:05,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,801 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:48:05,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:48:05,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,801 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:48:05,802 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:48:05,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,802 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:48:05,802 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:48:05,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,803 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:48:05,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:48:05,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,803 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:48:05,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:48:05,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,804 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:48:05,804 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:48:05,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,804 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:48:05,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:48:05,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,805 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:48:05,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,805 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:48:05,806 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:48:05,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:05,808 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:05,808 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:05,808 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,808 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:05,809 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:48:05,809 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,812 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:48:05,812 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,815 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:48:05,815 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,817 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:48:05,817 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,820 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:48:05,820 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:05,822 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,822 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,823 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:48:05,823 [1520] DEBUG index - id is 138 +01/30/13 11:48:05,823 [1520] DEBUG index - name is OSSEZ +01/30/13 11:48:05,823 [1520] INFO index - Account detail view +01/30/13 11:48:05,824 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:48:05,824 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:05,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:05,824 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:48:05,824 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:48:05,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,827 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:48:05,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,827 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:48:05,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,827 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:48:05,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,828 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:48:05,828 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:48:05,828 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:48:05,838 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:48:05,839 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:48:05,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,839 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:48:05,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,840 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,840 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:48:05,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,841 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:48:05,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,841 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,841 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:48:05,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,842 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:48:05,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,842 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,843 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:48:05,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,843 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:48:05,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,844 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,844 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:48:05,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,845 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:48:05,845 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,845 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,845 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,846 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:48:05,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,846 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:48:05,846 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,846 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,846 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,847 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:48:05,847 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:48:05,847 [1520] INFO index - in getAccountName 8 +01/30/13 11:48:05,847 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:48:05,848 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:48:05,849 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:48:05,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,850 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:48:05,850 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,850 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,850 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,850 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:48:05,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,851 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:48:05,851 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,851 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,851 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,852 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:48:05,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,852 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:48:05,852 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,853 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,853 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,853 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:48:05,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,854 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:48:05,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,854 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,854 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:48:05,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,855 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:48:05,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,855 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,856 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:48:05,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,856 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:48:05,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,857 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,857 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:48:05,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,858 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:48:05,858 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:48:05,858 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:48:05,858 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:48:05,858 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:48:05,858 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:48:05,860 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:48:05,860 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:48:05,860 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:48:05,863 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:48:05,863 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:48:05,863 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,863 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:48:05,867 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 394 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:48:05,868 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,868 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:05,870 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,870 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:48:05,870 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,870 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:48:05,874 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,874 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:48:05,874 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,874 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:48:05,878 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,878 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:48:05,878 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:48:05,878 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:48:05,880 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:48:05,880 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:48:05,910 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:48:05,910 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:48:05,910 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:48:05,910 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:48:05,911 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:48:05,911 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:48:05,911 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:48:05,911 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:48:05,911 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:48:05,912 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:48:05,912 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:48:05,912 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:48:05,912 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:48:05,912 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:48:05,913 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:48:05,913 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:48:05,913 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:48:05,913 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:48:05,913 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:48:05,914 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:48:05,914 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:48:05,914 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:48:05,914 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:48:05,914 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:48:05,915 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,915 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,915 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,916 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:48:05,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,917 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:48:05,917 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:48:05,918 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:48:05,918 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:48:05,918 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:48:05,918 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,918 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:48:05,922 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 394 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:48:05,924 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,924 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:05,926 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,927 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:48:05,927 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,927 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:48:05,931 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,931 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:48:05,931 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,931 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:48:05,935 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,935 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:48:05,935 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:48:05,935 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:48:05,937 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:48:05,938 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:48:05,946 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:48:05,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,947 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,947 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,948 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:48:05,948 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:48:05,948 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,949 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:48:05,953 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 394 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:48:05,954 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,954 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:05,956 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,956 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:48:05,956 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,956 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:48:05,960 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,960 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:48:05,960 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:48:05,960 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:48:05,964 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:48:05,964 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:48:05,964 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:48:05,964 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:48:05,966 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:48:05,966 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:48:05,977 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:48:05,978 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:48:05,978 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:48:05,978 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:48:05,978 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:48:05,978 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,978 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,978 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,979 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:48:05,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,980 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:48:05,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,980 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,981 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:48:05,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,981 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:48:05,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,982 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,982 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:48:05,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,983 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:48:05,983 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:48:05,983 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:48:05,984 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:48:05,984 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:48:05,987 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:48:05,987 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:48:05,987 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:48:05,987 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:48:05,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,988 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:05,988 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:48:05,989 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:48:05,989 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:48:05,991 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:48:05,991 [1520] INFO index - in getOwnerName 5 +01/30/13 11:48:05,991 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:48:05,991 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:05,991 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:05,993 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:48:05,993 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:48:05,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:05,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:05,996 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:48:05,996 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:05,996 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:05,996 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:48:05,996 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:48:05,998 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:48:05,998 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:48:05,999 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:48:05,999 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:48:05,999 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:48:06,001 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:06,001 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:06,003 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:06,003 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:06,007 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:48:06,007 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:48:06,007 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:48:06,007 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:48:06,008 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:48:06,008 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:48:06,008 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:48:06,008 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:48:06,009 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:48:06,011 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:48:06,011 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,011 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,012 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:48:06,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,013 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:48:06,013 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,013 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,013 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,014 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:48:06,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,015 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:48:06,015 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:48:06,015 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:48:06,015 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:57) method ... +01/30/13 11:48:06,015 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:48:06,016 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,016 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,016 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,016 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:48:06,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,017 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:48:06,017 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,018 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,019 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:48:06,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,020 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:48:06,020 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,020 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,020 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,021 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:48:06,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,021 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:48:06,021 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,022 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,022 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,022 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:48:06,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,023 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:48:06,023 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,023 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,023 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,024 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:48:06,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,025 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:48:06,025 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,025 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,025 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,025 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:48:06,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,026 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:48:06,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,026 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,027 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:48:06,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,027 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:48:06,027 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,028 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,028 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,028 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:48:06,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,029 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:48:06,029 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,029 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,029 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,030 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:48:06,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,030 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:48:06,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,030 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,030 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,031 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:48:06,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,031 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:48:06,032 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,032 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,032 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,032 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:48:06,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,033 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:48:06,033 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,033 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,034 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:48:06,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,034 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:48:06,034 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,034 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,034 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,035 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:48:06,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,036 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:48:06,036 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,036 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,036 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,036 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,037 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:48:06,037 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,038 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:48:06,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,038 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:48:06,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,038 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:48:06,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,039 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:48:06,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,039 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:48:06,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,039 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:48:06,039 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:48:06,039 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:48:06,039 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:48:06,040 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:48:06,040 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:06,041 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:48:06,041 [1520] INFO index - in getOwnerName 1 +01/30/13 11:48:06,042 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:48:06,042 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:48:06,042 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:48:06,044 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:48:06,044 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:06,046 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:48:06,046 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:48:06,046 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:48:06,046 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:48:06,046 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,047 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:48:06,047 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:48:06,047 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:48:06,048 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:48:06,048 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:06,049 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:48:06,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,050 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:48:06,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,050 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:48:06,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,051 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:48:06,051 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:48:06,053 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,053 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,053 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,053 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,054 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:48:06,054 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,055 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:48:06,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,056 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:48:06,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,056 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:48:06,056 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:48:06,060 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,060 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:48:06,060 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:48:06,076 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:48:06,077 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,077 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:48:06,077 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:48:06,077 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:48:06,079 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:48:06,079 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,079 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:06,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:06,079 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:48:06,079 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:48:06,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,082 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:48:06,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,082 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:48:06,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,083 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:48:06,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,083 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:48:06,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,083 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:48:06,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,084 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:48:06,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,084 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:48:06,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,084 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:48:06,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,084 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:48:06,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,085 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:48:06,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,085 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:48:06,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,085 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:48:06,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,086 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:48:06,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,086 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:48:06,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,086 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:48:06,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,087 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:48:06,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,087 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:48:06,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,088 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:48:06,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,088 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:48:06,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,088 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:48:06,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,089 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:48:06,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,089 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:48:06,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,089 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:48:06,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,089 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:48:06,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,090 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:48:06,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,090 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:48:06,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,090 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:48:06,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,091 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:48:06,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,091 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:48:06,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,091 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:48:06,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,092 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:48:06,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,092 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:48:06,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,092 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:48:06,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,093 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:48:06,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,093 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:48:06,093 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:48:06,093 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:48:06,093 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:48:06,094 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:48:06,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,094 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:48:06,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,094 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:48:06,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,095 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:48:06,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,095 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:48:06,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,096 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:48:06,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,096 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:48:06,097 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,097 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:48:06,097 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,097 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:48:06,097 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:48:06,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,099 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,099 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,099 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =? +01/30/13 11:48:06,099 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:48:06,100 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where setdefault=1 and entitytype=? +01/30/13 11:48:06,101 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:48:06,102 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:48:06,102 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:48:06,103 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:48:06,104 [1520] DEBUG index - Entering when status=0 +01/30/13 11:48:06,104 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:48:06,104 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:48:06,107 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,107 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:48:06,107 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:48:06,111 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:48:06,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,112 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:48:06,112 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:48:06,114 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,114 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:48:06,115 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,115 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:48:06,115 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:48:06,126 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:48:06,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,126 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:48:06,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,126 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,126 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:48:06,127 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:48:06,127 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:48:06,127 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,127 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:48:06,127 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:48:06,127 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:48:06,138,1] +01/30/13 11:48:06,130 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,130 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,130 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:48:06,130 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:48:06,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,138 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,138 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:48:06,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,138 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:48:06,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,139 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,139 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,139 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,140 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,140 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,140 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:48:06,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,141 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:48:06,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,141 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:48:06,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,142 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:48:06,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,142 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:48:06,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,142 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:48:06,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,143 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:48:06,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,143 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:48:06,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,143 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:48:06,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,143 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:48:06,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,144 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:48:06,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,144 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:48:06,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,144 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:48:06,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,145 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:48:06,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,145 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:48:06,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,145 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:48:06,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,145 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:48:06,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,146 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:48:06,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,146 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:48:06,236 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,236 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,236 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,236 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,236 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:48:06,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:06,239 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:48:06,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,239 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:48:06,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,239 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:48:06,240 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,240 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,240 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,240 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,240 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:48:06,240 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:48:06,244 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:48:06,244 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:48:06,244 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:48:06,244 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:48:06,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,244 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:48:06,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,244 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:06,244 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:48:06,252 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,253 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:48:06,253 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:48:06,253 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:48:06,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,254 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:06,254 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:48:06,264 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:48:06,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,264 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,265 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,265 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,265 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,265 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,265 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,265 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,266 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,266 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,266 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:48:06,266 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:48:06,266 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:48:06,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,266 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:48:06,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,267 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:06,267 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:48:06,272 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:48:06,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,272 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,274 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,274 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,274 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,276 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:48:06,276 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:48:06,276 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:48:06,276 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,276 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:06,277 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:48:06,277 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:06,277 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:48:06,277 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:48:06,302 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:06,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:06,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,302 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:48:06,302 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:06,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,303 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:48:06,303 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,303 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:48:06,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:48:06,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:06,303 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:48:06,304 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:48:06,304 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:48:06,305 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:44,413 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:48:44,546 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:48:44,546 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:48:44,546 [1520] DEBUG index - ****Starting for new session +01/30/13 11:48:44,547 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:48:44,547 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:48:44,547 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:48:44,547 [1520] DEBUG index - in CalendarAjax +01/30/13 11:48:44,547 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:48:44,547 [1520] INFO index - current module is Calendar +01/30/13 11:48:44,582 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:48:44,582 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:48:44,582 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:48:44,582 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:44,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:44,583 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:44,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:44,583 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:48:44,583 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:48:44,594 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:48:44,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:48:44,594 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:48:44,594 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:48:44,594 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:48:44,595 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:48:44,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,595 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:48:44,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,596 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:48:44,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,596 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:48:44,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,597 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:48:44,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,597 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:48:44,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,598 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:48:44,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,598 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:48:44,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,599 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:48:44,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,599 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:48:44,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,600 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:48:44,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,600 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:48:44,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,601 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:48:44,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,601 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:48:44,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,602 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:48:44,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,602 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:48:44,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,603 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:48:44,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,603 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:48:44,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,604 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:48:44,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,604 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:48:44,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,605 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:48:44,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,605 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:48:44,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,606 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:48:44,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,607 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:48:44,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,607 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:48:44,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,607 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:48:44,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,608 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:48:44,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,608 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:48:44,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,609 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:48:44,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,609 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:48:44,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,610 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:48:44,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,610 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:48:44,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,611 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:48:44,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,611 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:48:44,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,612 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:48:44,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,612 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:48:44,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,613 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:48:44,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,613 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:48:44,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,614 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:48:44,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,614 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:48:44,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,615 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:48:44,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,615 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:48:44,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,616 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:48:44,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,616 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:48:44,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,617 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:48:44,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,617 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:48:44,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,618 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:48:44,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:48:44,618 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:48:44,618 [1520] DEBUG index - Current user is: admin +01/30/13 11:48:44,618 [1520] DEBUG index - Current theme is: softed +01/30/13 11:48:44,619 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:48:44,619 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:48:44,620 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:48:44,621 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:48:44,622 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:48:44,622 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:48:44,624 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:48:44,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:48:44,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:48:44,625 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:48:44,625 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:48:44,625 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:48:44,625 [1520] DEBUG index - skipping headers +01/30/13 11:48:44,626 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:48:44,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:48:44,631 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:48:44,631 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:48:44,631 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:48:44,632 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:48:44,636 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:49')) +01/30/13 11:48:44,639 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:49:24,739 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:49:24,861 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:49:24,861 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:49:24,862 [1520] DEBUG index - ****Starting for new session +01/30/13 11:49:24,862 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:49:24,862 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:49:24,862 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:49:24,862 [1520] DEBUG index - in CalendarAjax +01/30/13 11:49:24,862 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:49:24,863 [1520] INFO index - current module is Calendar +01/30/13 11:49:24,894 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:49:24,895 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:49:24,895 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:49:24,895 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:24,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:24,895 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:24,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:24,896 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:49:24,896 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:49:24,904 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:24,904 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:24,904 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:49:24,904 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:49:24,905 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:49:24,905 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:49:24,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,906 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:49:24,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,906 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:49:24,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,907 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:49:24,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,907 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:49:24,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,908 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:49:24,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,908 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:49:24,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,909 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:49:24,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,909 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:49:24,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,910 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:49:24,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,910 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:49:24,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,911 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:49:24,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,911 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:49:24,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,912 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:49:24,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,912 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:49:24,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,913 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:49:24,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,913 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:49:24,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,914 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:49:24,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,914 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:49:24,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,915 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:49:24,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,915 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:49:24,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,916 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:49:24,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,916 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,917 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:49:24,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,918 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:49:24,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,918 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:49:24,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,919 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:49:24,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,919 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:49:24,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,920 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:49:24,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,920 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:49:24,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,921 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:49:24,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,921 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:49:24,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,922 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:49:24,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,922 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:49:24,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,923 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:49:24,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,923 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:49:24,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,924 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:49:24,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,924 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:49:24,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,925 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:49:24,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,925 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:49:24,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,926 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:49:24,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,926 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:49:24,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,927 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:49:24,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,927 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:49:24,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,928 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:49:24,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:24,928 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:49:24,929 [1520] DEBUG index - Current user is: admin +01/30/13 11:49:24,929 [1520] DEBUG index - Current theme is: softed +01/30/13 11:49:24,929 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:49:24,929 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:49:24,931 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:49:24,931 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:49:24,933 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:49:24,933 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:49:24,934 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:49:24,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:49:24,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:49:24,935 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:49:24,935 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:49:24,935 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:49:24,935 [1520] DEBUG index - skipping headers +01/30/13 11:49:24,936 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:49:24,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:49:24,941 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:49:24,942 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:49:24,942 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:49:24,942 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:49:24,946 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:50')) +01/30/13 11:49:24,949 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:49:59,610 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:49:59,777 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:49:59,777 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:49:59,778 [1520] DEBUG index - ****Starting for new session +01/30/13 11:49:59,778 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:49:59,778 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Logout', +) +01/30/13 11:49:59,779 [1520] INFO index - About to take action Logout +01/30/13 11:49:59,779 [1520] DEBUG index - in Logout +01/30/13 11:49:59,779 [1520] INFO index - current page is modules/Users/Logout.php +01/30/13 11:49:59,779 [1520] INFO index - current module is Users +01/30/13 11:49:59,810 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:49:59,810 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:49:59,810 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:49:59,810 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:59,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:59,811 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:59,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:59,811 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:49:59,811 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:49:59,823 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:49:59,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:49:59,823 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:49:59,823 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:49:59,823 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:49:59,824 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:49:59,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,824 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:49:59,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,825 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:49:59,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,825 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:49:59,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,826 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:49:59,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,826 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:49:59,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,827 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:49:59,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,827 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:49:59,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,828 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:49:59,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,828 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:49:59,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,829 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:49:59,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,829 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:49:59,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,830 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:49:59,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,830 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:49:59,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,831 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:49:59,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,831 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:49:59,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,832 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:49:59,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,832 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:49:59,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,833 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:49:59,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,833 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:49:59,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,834 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:49:59,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,834 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:49:59,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,835 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:49:59,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,835 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:49:59,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,836 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:49:59,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,836 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:49:59,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,837 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:49:59,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,837 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:49:59,837 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,838 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:49:59,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,838 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:49:59,838 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,839 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:49:59,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,839 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:49:59,839 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,840 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:49:59,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,840 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:49:59,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,841 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:49:59,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,841 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:49:59,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,842 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:49:59,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,842 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:49:59,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,843 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:49:59,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,843 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:49:59,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,844 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:49:59,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,844 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:49:59,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,845 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:49:59,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,845 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:49:59,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,846 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:49:59,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,846 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:49:59,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,847 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:49:59,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:49:59,847 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:49:59,852 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:49:59,852 [1520] DEBUG index - Prepared sql query parameters : [395,1,Users,Logout,,2013-01-30 11:49:59] +01/30/13 11:49:59,855 [1520] DEBUG index - Current user is: admin +01/30/13 11:49:59,855 [1520] DEBUG index - Current theme is: softed +01/30/13 11:49:59,855 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:49:59,856 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:49:59,857 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:49:59,858 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:49:59,860 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:49:59,860 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:49:59,861 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:49:59,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:49:59,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:49:59,863 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:49:59,863 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:49:59,863 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:49:59,863 [1520] DEBUG index - skipping headers +01/30/13 11:49:59,889 [1520] INFO GS - PearDatabase ->DatabaseConnection - Illegal Access +01/30/13 11:50:00,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:00,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:00,104 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_systems where server_type=? +01/30/13 11:50:00,104 [1520] DEBUG index - Prepared sql query parameters : [ftp_backup] +01/30/13 11:50:00,156 [1520] DEBUG index - Prepared sql query being executed : SELECT max(login_id) AS login_id from vtiger_loginhistory where user_name=? and user_ip=? +01/30/13 11:50:00,156 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4] +01/30/13 11:50:00,162 [1520] DEBUG index - Prepared sql query being executed : Update vtiger_loginhistory set logout_time =?, status=? where login_id = ? +01/30/13 11:50:00,162 [1520] DEBUG index - Prepared sql query parameters : [2013/01/30 11:50:00,Signed off,49] +01/30/13 11:50:00,169 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:50:00,169 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:00,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:00,249 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:00,371 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:50:00,374 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:00,374 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:00,374 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:00,375 [1520] DEBUG index - The current user does not have a session. Going to the login page +01/30/13 11:50:00,375 [1520] DEBUG index - Entering return_module_language(,Users) method ... +01/30/13 11:50:00,376 [1520] WARN index - Unable to find the module language file for language: and module: Users +01/30/13 11:50:00,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:00,379 [1520] DEBUG index - Entering return_application_language(en_us) method ... +01/30/13 11:50:00,381 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:00,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:50:26,514 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:26,635 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:50:26,637 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:26,637 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:26,638 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:26,638 [1520] DEBUG index - We are authenticating user now +01/30/13 11:50:26,638 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Authenticate', + 'return_module' => 'Users', + 'return_action' => 'Login', + 'user_name' => 'admin', + 'user_password' => 'admin', +) +01/30/13 11:50:26,638 [1520] INFO index - About to take action Authenticate +01/30/13 11:50:26,638 [1520] DEBUG index - in Authenticate +01/30/13 11:50:26,639 [1520] INFO index - current page is modules/Users/Authenticate.php +01/30/13 11:50:26,639 [1520] INFO index - current module is Users +01/30/13 11:50:26,671 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:26,671 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:26,671 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:26,671 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,672 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,672 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,672 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:26,672 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:26,684 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,684 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,684 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:26,684 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:26,684 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:26,684 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:26,684 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:26,686 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:26,686 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:26,688 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:26,688 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:26,690 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:26,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:26,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:26,691 [1520] DEBUG index - skipping headers +01/30/13 11:50:26,695 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:26,695 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:26,695 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:26,695 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,695 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,695 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:26,695 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:26,696 [1520] DEBUG user - Starting user load for admin +01/30/13 11:50:26,696 [1520] DEBUG user - Using integrated/SQL authentication +01/30/13 11:50:26,697 [1520] DEBUG index - Prepared sql query being executed : SELECT crypt_type FROM vtiger_users WHERE user_name=? +01/30/13 11:50:26,697 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:50:26,700 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_users where user_name=? AND user_password=? +01/30/13 11:50:26,700 [1520] DEBUG index - Prepared sql query parameters : [admin,$1$ad000000$hzXFXvL3XVlnUE/X.1n9t/] +01/30/13 11:50:26,703 [1520] DEBUG index - query being executed : SELECT * from vtiger_users where user_name='admin' +01/30/13 11:50:26,711 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:26,712 [1520] DEBUG index - Prepared sql query parameters : [396,1,Users,Authenticate,,2013-01-30 11:50:26] +01/30/13 11:50:26,717 [1520] DEBUG index - Prepared sql query being executed : Insert into vtiger_loginhistory (user_name, user_ip, logout_time, login_time, status) values (?,?,?,?,?) +01/30/13 11:50:26,717 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4,0000-00-00 00:00:00,2013/01/30 11:50:26,Signed in] +01/30/13 11:50:26,721 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:26,721 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:26,721 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:26,721 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,722 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:26,722 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:26,722 [1520] DEBUG index - Entering into retrieve_entity_info(1, Users) method. +01/30/13 11:50:26,722 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:50:26,722 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:26,725 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_attachments where attachmentsid=? +01/30/13 11:50:26,725 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:26,727 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2role where userid=? +01/30/13 11:50:26,727 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:26,729 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid=? +01/30/13 11:50:26,729 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:26,731 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:26,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:26,731 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:50:26,731 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:26,744 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id=? and currency_status='Active' and deleted=0 +01/30/13 11:50:26,744 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:50:26,746 [1520] DEBUG index - Exit from retrieve_entity_info(1, Users) method. +01/30/13 11:50:26,747 [1520] DEBUG index - authenticated_user_theme is softed +01/30/13 11:50:26,747 [1520] DEBUG index - authenticated_user_language is zh_cn +01/30/13 11:50:26,747 [1520] DEBUG index - authenticated_user_id is 1 +01/30/13 11:50:26,747 [1520] DEBUG index - app_unique_key is 7fbc51092369f141c526d6d14cb13651 +01/30/13 11:50:26,748 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:50:26,832 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:26,953 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:26,953 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:26,953 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:26,953 [1520] DEBUG index - Prepared sql query being executed : select internal_mailer from vtiger_users where id=? +01/30/13 11:50:26,953 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:26,955 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:26,955 [1520] DEBUG index - +01/30/13 11:50:27,018 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:27,137 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:27,137 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:27,138 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:27,138 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:27,138 [1520] DEBUG index - array ( + 'action' => 'index', + 'module' => 'Home', +) +01/30/13 11:50:27,138 [1520] INFO index - About to take action index +01/30/13 11:50:27,138 [1520] DEBUG index - in index +01/30/13 11:50:27,139 [1520] INFO index - current page is modules/Home/index.php +01/30/13 11:50:27,139 [1520] INFO index - current module is Home +01/30/13 11:50:27,170 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:27,170 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:27,170 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:27,170 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:27,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,171 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:27,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,171 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:27,171 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:27,182 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:27,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,182 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:27,183 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:27,183 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:27,183 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:27,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,184 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:27,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,184 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:27,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,185 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:27,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,185 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:27,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,186 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:27,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,186 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:27,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,187 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:27,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,188 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:27,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,188 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:27,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,189 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:27,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,189 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:27,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,189 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:27,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,190 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:27,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,190 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:27,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,191 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:27,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,191 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:27,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,192 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:27,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,192 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:27,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,193 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:27,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,193 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:27,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,194 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:27,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,194 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:27,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,195 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:27,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,195 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:27,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,196 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:27,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,196 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:27,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,197 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:27,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,197 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:27,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,198 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:27,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,198 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:27,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,198 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:27,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,199 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:27,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,200 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:27,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,200 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:27,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,201 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:27,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,201 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:27,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,202 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:27,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,202 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:27,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,203 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:27,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,203 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:27,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,204 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:27,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,204 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:27,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,205 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:27,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,205 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:27,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,206 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:27,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,206 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:27,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:27,206 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:27,210 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:27,211 [1520] DEBUG index - Prepared sql query parameters : [397,1,Home,index,,2013-01-30 11:50:27] +01/30/13 11:50:27,214 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:27,214 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:27,214 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:27,214 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:27,216 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:27,216 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:27,218 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:27,218 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:27,219 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:27,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,220 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:27,220 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:27,220 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:27,220 [1520] DEBUG index - including headers +01/30/13 11:50:27,220 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:27,221 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:27,224 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:27,224 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:27,227 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:50:27,227 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:50:27,228 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,228 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:50:27,228 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,228 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:50:27,229 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,229 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:50:27,229 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,229 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:50:27,230 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,230 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:50:27,230 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,230 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:50:27,230 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,231 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:50:27,231 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:27,231 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:50:27,231 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:50:27,231 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:50:27,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:27,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,241 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:50:27,241 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:50:27,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:27,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,242 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:50:27,242 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:50:27,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:27,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,243 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:50:27,243 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:50:27,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:27,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,245 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:50:27,245 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:50:27,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,246 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:27,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,246 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:50:27,246 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:50:27,247 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:27,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,247 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:27,248 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:27,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:27,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,249 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:50:27,249 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:50:27,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:50:27,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,250 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:50:27,250 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:50:27,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,250 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:27,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,251 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:50:27,251 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:50:27,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:27,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,252 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:50:27,252 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:50:27,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:27,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,253 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:50:27,253 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:50:27,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,254 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:27,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,254 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:50:27,254 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:50:27,255 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:27,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,255 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:50:27,256 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:50:27,256 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:27,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,257 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:50:27,257 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:50:27,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,257 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:27,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,258 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:50:27,258 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:50:27,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,258 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:27,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,259 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:50:27,259 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:50:27,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,259 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:27,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,260 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:50:27,260 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:50:27,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:27,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,261 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:50:27,261 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:50:27,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:27,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,262 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:50:27,262 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:50:27,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,263 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:50:27,263 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:50:27) method ... +01/30/13 11:50:27,263 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:50:27,263 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:50:27) method ... +01/30/13 11:50:27,264 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:50:27,264 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:27,264 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:27,264 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:27,265 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:27,265 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:50:27,265 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:50:27,265 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:50:27,269 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,269 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,269 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,269 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,271 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,273 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,274 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,277 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,278 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,279 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,279 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:50:27,283 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:27,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,283 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:27,283 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:27,285 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:27,286 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:27,286 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:27,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,286 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:27,287 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,288 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:50:27,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,288 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:27,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,288 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,289 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:27,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,290 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:27,290 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,290 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:50:27,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,291 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:50:27,292 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,292 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:50:27,292 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,292 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:50:27,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,293 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:50:27,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,293 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:50:27,294 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,294 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:27,294 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,294 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:50:27,294 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,295 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:50:27,296 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,296 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:50:27,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,296 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:27,296 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,296 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:50:27,297 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:50:27,297 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:27,301 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:50:27,301 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,301 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:50:27,302 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,302 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:50:27,302 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,302 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:50:27,303 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,303 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:50:27,303 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,303 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:27,303 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:50:27,306 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:50:27,306 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:27,306 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:50:27,306 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:50:27,309 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:50:27,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,316 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:50:27,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:27,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,316 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:27,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:27,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,317 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:27,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:27,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,317 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:27,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:27,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,317 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:27,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:27,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,317 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:27,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:27,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,318 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:27,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:27,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,318 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:27,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:27,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,319 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:50:27,319 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:27,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,319 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:27,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:50:27,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,320 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:50:27,322 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:27,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,322 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:27,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:50:27,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,323 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:50:27,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:50:27,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,324 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:50:27,324 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:50:27,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,324 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:50:27,324 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:27,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,325 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:27,325 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:27,325 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,325 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:50:27,325 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:50:27,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,326 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:50:27,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:50:27,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,326 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:50:27,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:50:27,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,327 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:50:27,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:27,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,327 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:27,327 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:27,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,328 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:50:27,328 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:27,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,328 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:27,328 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:27,328 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,328 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:27,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:27,329 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,329 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:27,329 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:27,329 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,329 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:27,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:27,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,330 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:27,330 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:27,330 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,330 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:27,330 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:27,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,331 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:27,331 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:27,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,331 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:27,331 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:27,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,332 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:27,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:27,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,332 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:27,332 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:27,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,333 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:27,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:27,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,334 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:27,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,334 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:50:27,346 [1520] DEBUG index - query being executed : SELECT * FROM vtiger_tab +01/30/13 11:50:27,357 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,) method ... +01/30/13 11:50:27,358 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,358 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,) method ... +01/30/13 11:50:27,358 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,358 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,) method ... +01/30/13 11:50:27,359 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,359 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,) method ... +01/30/13 11:50:27,359 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,359 [1520] DEBUG index - Entering isPermitted(Documents,DetailView,) method ... +01/30/13 11:50:27,360 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,360 [1520] DEBUG index - Entering isPermitted(Calendar,DetailView,) method ... +01/30/13 11:50:27,360 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,360 [1520] DEBUG index - Entering isPermitted(HelpDesk,DetailView,) method ... +01/30/13 11:50:27,360 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,361 [1520] DEBUG index - Entering isPermitted(Products,DetailView,) method ... +01/30/13 11:50:27,361 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,361 [1520] DEBUG index - Entering isPermitted(Faq,DetailView,) method ... +01/30/13 11:50:27,361 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,361 [1520] DEBUG index - Entering isPermitted(Vendors,DetailView,) method ... +01/30/13 11:50:27,362 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,362 [1520] DEBUG index - Entering isPermitted(PriceBooks,DetailView,) method ... +01/30/13 11:50:27,362 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,362 [1520] DEBUG index - Entering isPermitted(Quotes,DetailView,) method ... +01/30/13 11:50:27,363 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,363 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,DetailView,) method ... +01/30/13 11:50:27,363 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,363 [1520] DEBUG index - Entering isPermitted(SalesOrder,DetailView,) method ... +01/30/13 11:50:27,364 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,364 [1520] DEBUG index - Entering isPermitted(Invoice,DetailView,) method ... +01/30/13 11:50:27,364 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,364 [1520] DEBUG index - Entering isPermitted(Campaigns,DetailView,) method ... +01/30/13 11:50:27,365 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,365 [1520] DEBUG index - Entering isPermitted(PBXManager,DetailView,) method ... +01/30/13 11:50:27,365 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,365 [1520] DEBUG index - Entering isPermitted(ServiceContracts,DetailView,) method ... +01/30/13 11:50:27,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,366 [1520] DEBUG index - Entering isPermitted(Services,DetailView,) method ... +01/30/13 11:50:27,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,366 [1520] DEBUG index - Entering isPermitted(Assets,DetailView,) method ... +01/30/13 11:50:27,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,367 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:50:27,367 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,367 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,DetailView,) method ... +01/30/13 11:50:27,367 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,367 [1520] DEBUG index - Entering isPermitted(ProjectTask,DetailView,) method ... +01/30/13 11:50:27,368 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,368 [1520] DEBUG index - Entering isPermitted(Project,DetailView,) method ... +01/30/13 11:50:27,368 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,368 [1520] DEBUG index - Entering isPermitted(SMSNotifier,DetailView,) method ... +01/30/13 11:50:27,369 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,369 [1520] DEBUG index - Entering isPermitted(Rss,DetailView,) method ... +01/30/13 11:50:27,369 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,369 [1520] DEBUG index - Entering isPermitted(Dashboard,DetailView,) method ... +01/30/13 11:50:27,370 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,370 [1520] DEBUG index - Entering isPermitted(Reports,DetailView,) method ... +01/30/13 11:50:27,370 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,370 [1520] DEBUG index - Prepared sql query being executed : select vtiger_homestuff.stuffid,stufftype,stufftitle,setype from vtiger_homestuff + left join vtiger_homedefault on vtiger_homedefault.stuffid=vtiger_homestuff.stuffid + where visible=0 and userid=? order by stuffsequence desc +01/30/13 11:50:27,370 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:27,374 [1520] DEBUG index - function getTranslatedString(My Recent FAQs) - translated to (最新常见问答) +01/30/13 11:50:27,374 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:50:27,375 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,375 [1520] DEBUG index - function getTranslatedString(Pending Activities) - translated to (即将进行的活动) +01/30/13 11:50:27,375 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:27,375 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,376 [1520] DEBUG index - function getTranslatedString(Top Purchase Orders) - translated to (最新采购订单) +01/30/13 11:50:27,376 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:50:27,376 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,376 [1520] DEBUG index - function getTranslatedString(My New Leads) - translated to (最新潜在客户) +01/30/13 11:50:27,376 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:50:27,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,377 [1520] DEBUG index - function getTranslatedString(Top Invoices) - translated to (最新发货单) +01/30/13 11:50:27,377 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:50:27,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,378 [1520] DEBUG index - function getTranslatedString(Top Sales Orders) - translated to (最新销售订单) +01/30/13 11:50:27,378 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:50:27,378 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,378 [1520] DEBUG index - function getTranslatedString(My Group Allocation) - translated to (最新部门任务) +01/30/13 11:50:27,378 [1520] DEBUG index - function getTranslatedString(Upcoming Activities) - translated to (近期活动) +01/30/13 11:50:27,379 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:27,379 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,379 [1520] DEBUG index - function getTranslatedString(Top Trouble Tickets) - translated to (最新故障单) +01/30/13 11:50:27,379 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:50:27,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,380 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,380 [1520] DEBUG index - function getTranslatedString(Top Quotes) - translated to (最新报价单) +01/30/13 11:50:27,380 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:50:27,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,381 [1520] DEBUG index - function getTranslatedString(Top Potentials) - translated to (最新销售机会) +01/30/13 11:50:27,381 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:50:27,381 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,381 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,382 [1520] DEBUG index - Entering isPermitted(Dashboard,index,) method ... +01/30/13 11:50:27,382 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,382 [1520] DEBUG index - function getTranslatedString(Top Accounts) - translated to (最新客户) +01/30/13 11:50:27,382 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:50:27,383 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,383 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:27,383 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,383 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_home_layout where userid=? +01/30/13 11:50:27,383 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:27,386 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:27,386 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:27,386 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:27,387 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:27,387 [1520] DEBUG index - Prepared sql query being executed : SELECT tag,tag_id,COUNT(object_id) AS quantity + FROM vtiger_freetags INNER JOIN vtiger_freetagged_objects + ON (vtiger_freetags.id = tag_id) + WHERE 1=1 + AND tagger_id = ? + GROUP BY tag + ORDER BY quantity DESC LIMIT 0, 100 +01/30/13 11:50:27,387 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:27,393 [1520] DEBUG index - Prepared sql query being executed : SELECT login_time, logout_time FROM vtiger_loginhistory WHERE user_name=? ORDER BY login_id DESC LIMIT 2 +01/30/13 11:50:27,393 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:50:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,402 [1520] DEBUG index - function getTranslatedString(LBL_REPORTCHARTS) - translated to (报表) +01/30/13 11:50:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,402 [1520] DEBUG index - function getTranslatedString(LBL_DEFAULT_WIDGET) - translated to (默认组件) +01/30/13 11:50:27,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:27,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,403 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,403 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,403 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:27,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:27,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,403 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:27,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:27,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,404 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:27,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:27,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,404 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:27,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:27,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,404 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:27,404 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:27,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,405 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:27,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:27,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,405 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:27,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:27,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,405 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:27,405 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:27,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,406 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:50:27,406 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:27,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,406 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:27,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:27,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,406 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:27,406 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:27,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,406 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:27,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:27,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,407 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:27,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:27,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,407 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:27,407 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:27,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,407 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:27,407 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:27,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,408 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:27,408 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:27,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,408 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:27,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:27,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,408 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:27,408 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:27,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,409 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:27,409 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:27,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,409 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:27,409 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:27,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,409 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:50:27,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:27,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,409 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:27,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:27,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,410 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:27,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,410 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_NAME) - translated to (报表名称) +01/30/13 11:50:27,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,410 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_TYPE) - translated to (报表类型) +01/30/13 11:50:27,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,413 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,413 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,414 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,415 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,415 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,416 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,417 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,417 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,418 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,419 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,419 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,419 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,420 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,421 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,421 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,422 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,423 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,423 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,424 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,424 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,425 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,426 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,426 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,427 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,428 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,428 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,428 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,430 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,430 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,430 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,432 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,432 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,432 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,434 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,434 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,434 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,435 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,436 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,436 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,436 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,436 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,437 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,438 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:50:27,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,438 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,438 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,438 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,439 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,439 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,439 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,440 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,440 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,440 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,440 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,441 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,441 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,441 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,442 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:27,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:27,442 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:50:27,442 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:50:27,442 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:27,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:27,839 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:27,862 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:27,867 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:27,911 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:27,971 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:27,971 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:27,971 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:27,972 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:27,972 [1520] DEBUG index - array ( + 'module' => 'Dashboard', + 'action' => 'DashboardAjax', + 'file' => 'HomepageDB', +) +01/30/13 11:50:27,972 [1520] INFO index - About to take action DashboardAjax +01/30/13 11:50:27,972 [1520] DEBUG index - in DashboardAjax +01/30/13 11:50:27,972 [1520] INFO index - current page is modules/Dashboard/DashboardAjax.php +01/30/13 11:50:27,972 [1520] INFO index - current module is Dashboard +01/30/13 11:50:28,009 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:28,009 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:28,009 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:28,009 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,010 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,010 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,010 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:28,019 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,019 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,019 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,019 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:28,020 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:28,020 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:28,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,021 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:28,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,021 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:28,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,022 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:28,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,023 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:28,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,023 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:28,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,024 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:28,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,024 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:28,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,025 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:28,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,025 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:28,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,026 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:28,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,026 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,027 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,027 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,028 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,028 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,029 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,030 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,030 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,031 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:28,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,031 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,032 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,032 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,033 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,034 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,035 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,035 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,036 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,036 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,037 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,037 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,038 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,038 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,039 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,039 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,040 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,040 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,041 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,041 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,042 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,043 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,043 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,044 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,044 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,045 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,045 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:28,050 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:28,051 [1520] DEBUG index - Prepared sql query parameters : [398,1,Dashboard,DashboardAjax,,2013-01-30 11:50:28] +01/30/13 11:50:28,054 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:28,054 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:28,054 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:28,054 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:28,056 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:28,056 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:28,058 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:28,058 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:28,060 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:28,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:50:28,060 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Dashboard +01/30/13 11:50:28,062 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,062 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:28,062 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:28,062 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:28,062 [1520] DEBUG index - skipping headers +01/30/13 11:50:28,063 [1520] DEBUG index - Entering isPermitted(Dashboard,HomepageDB,) method ... +01/30/13 11:50:28,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,075 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_leaddetails le on le.leadid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (le.converted = 0 OR le.converted IS NULL) +01/30/13 11:50:28,077 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_troubletickets tt ON tt.ticketid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (tt.status != 'Closed' OR tt.status IS NULL) +01/30/13 11:50:28,079 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_potential pot ON pot.potentialid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (pot.sales_stage NOT IN ('成功结案','失败结案') OR pot.sales_stage IS NULL) +01/30/13 11:50:28,082 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_activity act ON act.activityid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND act.activitytype != 'Emails' AND + ((act.status!='Completed' AND act.status!='Deferred') OR act.status IS NULL) + AND ((act.eventstatus!='Held' AND act.eventstatus!='Not Held') OR act.eventstatus IS NULL) +01/30/13 11:50:28,085 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:50:28,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,086 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:50:28,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,086 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:50:28,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,087 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:50:28,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,087 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:50:28,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,088 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:50:28,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,088 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:50:28,089 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,089 [1520] DEBUG index - query being executed : SELECT setype, count(setype) setype_count FROM vtiger_crmentity se WHERE + se.deleted = 0 AND se.smownerid=1 AND se.setype in ('Accounts','Contacts','Quotes','SalesOrder','PurchaseOrder','Invoice','Campaigns') GROUP BY se.setype +01/30/13 11:50:28,095 [1520] DEBUG index - query being executed : SELECT cvid,entitytype FROM vtiger_customview WHERE viewname='All' AND entitytype in ('Leads','HelpDesk','Potentials','Calendar','Accounts','Campaigns','Contacts','Invoice','PurchaseOrder','Quotes','SalesOrder') +01/30/13 11:50:28,098 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,098 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,100 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,100 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,102 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,103 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,104 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,104 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,106 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,106 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,108 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,108 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,109 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,109 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,111 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,111 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,116 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,116 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,118 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,118 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,120 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,120 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,131 [1520] DEBUG index - Entering calculate_font_name(zh_cn) method ... +01/30/13 11:50:28,131 [1520] DEBUG index - Exiting calculate_font_name method ... +01/30/13 11:50:28,143 [1520] DEBUG index - Entering get_tickspacing(15) method ... +01/30/13 11:50:28,143 [1520] DEBUG index - Exiting get_tickspacing method ... +01/30/13 11:50:28,198 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:28,198 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:28,199 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:28,199 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:28,199 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":1,"widgetType":"Default"},{"widgetId":3,"widgetType":"Default"},{"widgetId":4,"widgetType":"Default"},{"widgetId":5,"widgetType":"Default"},{"widgetId":6,"widgetType":"Default"},{"widgetId":7,"widgetType":"Default"},{"widgetId":8,"widgetType":"Default"},{"widgetId":9,"widgetType":"Default"},{"widgetId":10,"widgetType":"Default"},{"widgetId":11,"widgetType":"Default"},{"widgetId":12,"widgetType":"Default"},{"widgetId":13,"widgetType":"Default"}]', +) +01/30/13 11:50:28,199 [1520] INFO index - About to take action HomeAjax +01/30/13 11:50:28,200 [1520] DEBUG index - in HomeAjax +01/30/13 11:50:28,200 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:50:28,200 [1520] INFO index - current module is Home +01/30/13 11:50:28,246 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:28,246 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:28,246 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:28,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,247 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,247 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,247 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:28,255 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,255 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,255 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:28,256 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:28,256 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:28,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,257 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:28,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,258 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:28,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,258 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:28,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,259 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:28,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,259 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:28,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,260 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:28,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,260 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:28,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,261 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:28,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,261 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:28,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,262 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:28,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,263 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:28,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,263 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:28,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,264 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:28,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,264 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:28,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,265 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:28,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,265 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:28,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,266 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:28,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,266 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:28,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,267 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:28,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,267 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:28,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,268 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:28,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,268 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,269 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:28,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,270 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:28,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,270 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:28,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,271 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:28,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,271 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:28,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,272 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:28,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,272 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:28,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,273 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:28,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,273 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:28,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,274 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:28,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,274 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:28,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,275 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:28,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,275 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:28,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,276 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:28,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,276 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:28,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,277 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:28,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,277 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:28,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,278 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:28,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,279 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:28,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,279 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,280 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:28,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,280 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:28,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,281 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:28,285 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:28,285 [1520] DEBUG index - Prepared sql query parameters : [399,1,Home,HomeAjax,,2013-01-30 11:50:28] +01/30/13 11:50:28,296 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:28,297 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:28,297 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:28,297 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:28,298 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:28,299 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:28,300 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:28,300 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:28,302 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:28,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:28,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,303 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:28,303 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:28,303 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:28,303 [1520] DEBUG index - skipping headers +01/30/13 11:50:28,317 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:28,317 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:28,322 [1520] DEBUG top accounts_list - Entering getTopAccounts() method ... +01/30/13 11:50:28,324 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:28,324 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,325 [1520] DEBUG index - query being executed : select vtiger_potential.potentialname,vtiger_account.accountid, vtiger_account.accountname, vtiger_account.tickersymbol, sum(vtiger_potential.amount) as amount from vtiger_potential inner join vtiger_crmentity on (vtiger_potential.potentialid=vtiger_crmentity.crmid) inner join vtiger_account on (vtiger_potential.related_to=vtiger_account.accountid) WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid>0 AND vtiger_crmentity.smownerid='1' and vtiger_potential.sales_stage not in ('Closed Won', 'Closed Lost','成功结案','失败结案') group by vtiger_account.accountid, vtiger_account.tickersymbol order by amount desc LIMIT 0,5 +01/30/13 11:50:28,330 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:50:28,330 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:50:28,330 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,330 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,330 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:50:28,330 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:50:28,333 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,333 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,334 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,335 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,336 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,336 [1520] DEBUG top accounts_list - Exiting getTopAccounts method ... +01/30/13 11:50:28,339 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:28,340 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:50:28,342 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:50:28,342 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,343 [1520] DEBUG top opportunity_list - Entering getTopPotentials() method ... +01/30/13 11:50:28,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,344 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:28,344 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:50:28,344 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,345 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,345 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,345 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:50:28,349 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,350 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,350 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,350 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,350 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,350 [1520] DEBUG index - query being executed : SELECT vtiger_crmentity.crmid, vtiger_potential.potentialname, + vtiger_potential.amount, potentialid + FROM vtiger_potential + IGNORE INDEX(PRIMARY) INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid > 0 AND vtiger_potential.sales_stage not in ('Closed Won','Closed Lost','成功结案','失败结案') AND vtiger_crmentity.smownerid='1' AND vtiger_potential.amount > 0 ORDER BY amount DESC LIMIT 5 +01/30/13 11:50:28,355 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,355 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,355 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,355 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,355 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,356 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,357 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:50:28,358 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,359 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,362 [1520] DEBUG top opportunity_list - Exiting getTopPotentials method ... +01/30/13 11:50:28,363 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:28,364 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:28,366 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:50:28,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,370 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,371 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:50:28,373 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,374 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,374 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,374 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,374 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,374 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,381 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,381 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,382 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,382 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,382 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,382 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,382 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:50:28,382 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,385 [1520] DEBUG index - Entering getCvIdOfAll(Quotes) +01/30/13 11:50:28,385 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:50:28,386 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:50:28,387 [1520] DEBUG index - Exiting getCvIdOfAll(Quotes) +01/30/13 11:50:28,388 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,388 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,388 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,390 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,390 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,390 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,392 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,393 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:28,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,394 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:50:28,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,394 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:28,394 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:50:28,398 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:28,399 [1520] DEBUG index - Prepared sql query parameters : [20,49,51,53,54] +01/30/13 11:50:28,412 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:50:28,416 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,416 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:50:28,418 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:28,418 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:28,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,418 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,419 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,420 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,421 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:28,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:28,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:28,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:28,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:28,426 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:50:28,429 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:28,430 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,430 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:50:28,433 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:28,433 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,467 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,467 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:50:28,469 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,469 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:50:28,471 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,472 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:50:28,475 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,475 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:50:28,479 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:28,479 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:50:28,529 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,529 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:50:28,532 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,532 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:50:28,534 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,534 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:50:28,536 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,537 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:50:28,539 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,539 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:50:28,541 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,541 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:50:28,543 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,543 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:50:28,547 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,547 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:50:28,549 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,550 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:50:28,552 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:28,552 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:28,586 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,586 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:50:28,588 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,589 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:50:28,591 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,591 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:50:28,594 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,594 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:50:28,596 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:50:28,597 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:28,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,599 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:50:28,601 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,601 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:50:28,604 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:28,604 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:50:28,636 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,637 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:50:28,639 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,639 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:50:28,641 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,641 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:50:28,643 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,644 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:50:28,646 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,646 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:50:28,648 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,648 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:50:28,650 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,651 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:50:28,653 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,653 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:50:28,655 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,655 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:50:28,657 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,658 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:50:28,660 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,660 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:50:28,662 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:28,663 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:50:28,665 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:28,669 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:28,669 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:28,672 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:28,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:28,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,675 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:28,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:28,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,676 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:50:28,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:28,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,677 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:28,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:28,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,678 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:50:28,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:28,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,679 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:28,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:28,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,679 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:50:28,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,679 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:28,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,680 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:50:28,680 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:28,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,680 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:28,681 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:28,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,681 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:28,681 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:28,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,682 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:28,682 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:28,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,682 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:50:28,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:28,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,683 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:28,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:28,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:50:28,683 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:28,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,683 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:28,684 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:28,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,684 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:50:28,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:28,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,685 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:28,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:28,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,685 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:50:28,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:28,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,686 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:28,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:28,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,686 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:50:28,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:28,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,686 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:28,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:28,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,687 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:50:28,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:28,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,688 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:28,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:28,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,688 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:28,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:28,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,688 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:28,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:28,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,688 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:50:28,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:28,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,689 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:28,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:28,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,689 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:50:28,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:28,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,690 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:28,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:28,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,690 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:50:28,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:28,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,691 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:50:28,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:28,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,691 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:50:28,691 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:28,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,692 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:28,692 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:28,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,692 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:50:28,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:28,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,693 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:50:28,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:28,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,693 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:50:28,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:28,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,694 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:50:28,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:28,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,695 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:50:28,695 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:28,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,695 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:28,695 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:28,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,696 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:50:28,696 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:28,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,697 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:50:28,697 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:28,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,697 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:50:28,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:28,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,698 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:28,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:28,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,698 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:50:28,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:28,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,699 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:28,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:28,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,699 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:50:28,699 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:28,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,699 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:50:28,700 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:28,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,700 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:50:28,700 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:28,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,700 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:28,700 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:28,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,701 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:50:28,701 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:28,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,701 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:28,701 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:28,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,701 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:50:28,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:28,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,702 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:28,702 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:28,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,702 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:50:28,702 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:28,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,703 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:28,703 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:28,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,703 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:50:28,704 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,704 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,749 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,749 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:28,752 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,752 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,752 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,752 [1520] DEBUG index - Prepared sql query parameters : [35] +01/30/13 11:50:28,754 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,755 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,755 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:50:28,757 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,757 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,788 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,788 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:50:28,793 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,793 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,794 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,794 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:50:28,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:28,796 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:28,797 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:28,797 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:50:28,800 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:28,800 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:50:28,803 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:28,803 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:50:28,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,806 [1520] DEBUG index - function getTranslatedString(Accepted) - translated to (已接受) +01/30/13 11:50:28,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,806 [1520] DEBUG index - function getTranslatedString(Rejected) - translated to (已拒绝) +01/30/13 11:50:28,807 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:50:28) method ... +01/30/13 11:50:28,807 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:50:28,807 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,807 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,818 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,818 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,821 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:28,821 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:28,821 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:28,822 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,822 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,822 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,822 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:28,822 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,823 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:28,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,823 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,823 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:28,826 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:28,826 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:28,828 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,828 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:50:28,832 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:28,832 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:50:28,832 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,833 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,833 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:50:28,835 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,835 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,835 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,836 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,836 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,836 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,836 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,836 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,836 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,836 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,837 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,837 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,837 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,837 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,838 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,838 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,838 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,838 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,838 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,838 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,839 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,839 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,839 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,839 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,839 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,839 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,839 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,839 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,840 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,840 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,840 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,840 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,840 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,841 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,841 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:50:28,841 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:50:28,842 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,842 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:28,844 [1520] DEBUG index - query being executed : SELECT vtiger_quotes.quoteid, vtiger_quotes.subject, vtiger_quotes.potentialid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') and ( vtiger_quotes.quotestage <> '已接受') and ( vtiger_quotes.quotestage <> '已拒绝') and ( vtiger_quotes.validtill >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_quotes.quoteid > 0 LIMIT 5 +01/30/13 11:50:28,846 [1520] DEBUG index - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:50:28,846 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:28,847 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:50:28,847 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:28,847 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:28,848 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:28,848 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:28,849 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:28,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,849 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:50:28,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:28,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,849 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:50:28,850 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:28,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:28,851 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:28,851 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:28,854 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:28,855 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:50:28,857 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:50:28,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:28,858 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.setmetrics = 1 order by vtiger_customview.entitytype +01/30/13 11:50:28,862 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:50:28,862 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:50:28,862 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:50:28,862 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,862 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:28,865 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:50:28,865 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:28,867 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:50:28,867 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:50:28,868 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:28,868 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:50:28,868 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:50:28,868 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:50:28,869 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,869 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:28,870 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:50:28,870 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:28,872 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:50:28,872 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:50:28,872 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:28,873 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:50:28,873 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:50:28,873 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:50:28,873 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,873 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:28,877 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:50:28,877 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:28,879 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:50:28,879 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:50:28,879 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:28,879 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:50:28,879 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:50:28,880 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:50:28,880 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,880 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:28,881 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:50:28,882 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:28,883 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:50:28,883 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:50:28,884 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:28,884 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:50:28,884 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:50:28,884 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:50:28,884 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:28,884 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:28,886 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:50:28,886 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:28,888 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:50:28,888 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:50:28,888 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:28,888 [1520] INFO metrics - Metrics :: Successfully got MetricList to be displayed +01/30/13 11:50:28,888 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,888 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:50:28,891 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,891 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,891 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,892 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,892 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,892 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,892 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,892 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:28,899 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,899 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,900 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:28,901 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,902 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,902 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,902 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:28,904 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:28,904 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:28,904 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,904 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:28,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,906 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:28,906 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,906 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:28,906 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:50:28,909 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:28,910 [1520] DEBUG metrics - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:50:28,922 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,923 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:28,924 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:28,924 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:28,925 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,925 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:28,927 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:28,927 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:28,927 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:28,927 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:50:28,930 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:28,930 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:50:28,933 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:28,933 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:50:28,935 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:50:28,935 [1520] DEBUG metrics - Prepared sql query parameters : [5,1] +01/30/13 11:50:28,938 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:28,939 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,939 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,939 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:28,940 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:28,941 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:28,942 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,943 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,943 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,943 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,944 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,944 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,944 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,945 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,945 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,945 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:50:28,946 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,946 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,947 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.account_type = 'Prospect') )) AND vtiger_account.accountid > 0 +01/30/13 11:50:28,949 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,949 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:50:28,951 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:28,951 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:28,951 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:28,951 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,951 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,951 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,951 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,952 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,952 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:50:28,957 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,957 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,957 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:28,957 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:28,957 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,957 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,958 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,958 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,958 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,958 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:50:28,959 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,959 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,960 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,960 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:50:28,962 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:28,962 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:28,963 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,964 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:28,964 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,964 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:28,964 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,964 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:28,964 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:50:28,968 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:28,968 [1520] DEBUG metrics - Prepared sql query parameters : [13,25,28,29] +01/30/13 11:50:28,976 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,976 [1520] DEBUG metrics - Prepared sql query parameters : [36] +01/30/13 11:50:28,977 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:28,978 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:28,978 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,978 [1520] DEBUG metrics - Prepared sql query parameters : [33] +01/30/13 11:50:28,979 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:28,980 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:28,980 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:28,980 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:28,981 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:28,982 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:28,982 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:28,982 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:50:28,984 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:28,984 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:50:28,986 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:28,986 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:50:28,987 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:50:28,988 [1520] DEBUG metrics - Prepared sql query parameters : [14,1] +01/30/13 11:50:28,990 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:28,990 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,990 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:28,990 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:28,992 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:28,992 [1520] DEBUG metrics - Prepared sql query parameters : [Contacts] +01/30/13 11:50:28,996 [1520] DEBUG metrics - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:28,996 [1520] DEBUG metrics - in getColumnFields Contacts +01/30/13 11:50:28,997 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:28,997 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,997 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:28,997 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:28,997 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:28,997 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:50:29,004 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,005 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,005 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:50:29,007 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,007 [1520] DEBUG metrics - Prepared sql query parameters : [Products] +01/30/13 11:50:29,010 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - Entering getColumnFields(Products) method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - in getColumnFields Products +01/30/13 11:50:29,010 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,010 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,010 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:50:29,016 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,016 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,016 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,016 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:50:29,017 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,017 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,017 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,017 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,017 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,017 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:50:29,019 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,019 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,019 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,019 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,021 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,021 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,023 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,023 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,023 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,023 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,024 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,024 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,024 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,024 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,024 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,024 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,025 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,025 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,025 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,025 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,025 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,026 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,026 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,026 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,026 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,026 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,026 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,026 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,026 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,026 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,026 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,027 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,027 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,027 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:50:29,027 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:50:29,027 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,028 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,028 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,028 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:50:29,028 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,028 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,029 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_troubletickets.ticketid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_troubletickets.status <> 'Closed') )) AND vtiger_troubletickets.ticketid > 0 +01/30/13 11:50:29,031 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,031 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:50:29,036 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,036 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,036 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,036 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:50:29,042 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,042 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,042 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,042 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,043 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,043 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,043 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,043 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,043 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,043 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:50:29,045 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,045 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,045 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,045 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,049 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:29,049 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:50:29,053 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:29,053 [1520] DEBUG metrics - Prepared sql query parameters : [7,13,15,16] +01/30/13 11:50:29,064 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,064 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:29,066 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,066 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,066 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,066 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,069 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,069 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,070 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,071 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,072 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:50:29,073 [1520] DEBUG metrics - Prepared sql query parameters : [2,1] +01/30/13 11:50:29,075 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,075 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,075 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,075 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,075 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,075 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,076 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,076 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,076 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,076 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,076 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,076 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,076 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,076 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,076 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,076 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,077 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,077 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,077 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,077 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,077 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,078 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,078 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,078 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,078 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,078 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,078 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,078 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,078 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,078 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,078 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,079 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,079 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,079 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,079 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,079 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,080 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,080 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,080 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:50:29,080 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:50:29,080 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:50:29,080 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,080 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,080 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,080 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:50:29,081 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:50:29,081 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,081 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = vtiger_crmentity.crmid INNER JOIN vtiger_leadsubdetails ON vtiger_leaddetails.leadid = vtiger_leadsubdetails.leadsubscriptionid WHERE vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( vtiger_leaddetails.leadstatus = 'Hot') )) AND vtiger_leaddetails.leadid > 0 +01/30/13 11:50:29,084 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,084 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,084 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,084 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,086 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,086 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,086 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,086 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,089 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,090 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:29,090 [1520] DEBUG metrics - Prepared sql query parameters : [Potentials] +01/30/13 11:50:29,093 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:29,093 [1520] DEBUG metrics - Prepared sql query parameters : [2,1,3] +01/30/13 11:50:29,101 [1520] DEBUG metrics - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:50:29,101 [1520] DEBUG metrics - Prepared sql query parameters : [113] +01/30/13 11:50:29,102 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,102 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,139 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,139 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:50:29,141 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,142 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,142 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,142 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:29,144 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,144 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,145 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,145 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:50:29,148 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,148 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:50:29,150 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,151 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:50:29,153 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:50:29,153 [1520] DEBUG metrics - Prepared sql query parameters : [11,1] +01/30/13 11:50:29,156 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:29,156 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,157 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,157 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:29,159 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,159 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,159 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,160 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:50:29,163 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,163 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,163 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,163 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,165 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,166 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,168 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,168 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,168 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,168 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,169 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,169 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,169 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,169 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,169 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,169 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,170 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,170 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,170 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,170 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,170 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,171 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,171 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,171 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,171 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,171 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,172 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,172 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,172 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,172 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,172 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,173 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,173 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,173 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,173 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,173 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,174 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:50:29,174 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:50:29,174 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,174 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,174 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,175 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,175 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,176 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_potential.potentialid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_potential.sales_stage = 'Closed Won') )) AND vtiger_potential.potentialid > 0 +01/30/13 11:50:29,179 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,179 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,179 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,179 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,181 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,182 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,182 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,182 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,184 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,185 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:50:29,188 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,188 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:50:29,190 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,190 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:50:29,192 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:50:29,192 [1520] DEBUG metrics - Prepared sql query parameters : [17,1] +01/30/13 11:50:29,195 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:50:29,195 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,196 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,196 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:50:29,198 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:29,198 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,198 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,198 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:29,200 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,200 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,200 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,200 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,202 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,202 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,204 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,204 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,204 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,204 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,205 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,205 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,206 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,206 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,206 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,207 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,207 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,207 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,208 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,208 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,209 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:50:29,209 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,209 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,210 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,210 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,210 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,211 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') )) AND vtiger_quotes.quoteid > 0 +01/30/13 11:50:29,213 [1520] INFO metrics - Metrics :: Successfully build the Metrics +01/30/13 11:50:29,213 [1520] DEBUG metrics - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:29,213 [1520] DEBUG metrics - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:29,213 [1520] DEBUG metrics - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:29,213 [1520] DEBUG metrics - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:29,213 [1520] DEBUG metrics - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:29,216 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,216 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:29,217 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:50:29,218 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,219 [1520] DEBUG metrics - Entering getMyTickets() method ... +01/30/13 11:50:29,219 [1520] DEBUG metrics - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:29,219 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,219 [1520] DEBUG metrics - Prepared sql query being executed : SELECT vtiger_troubletickets.*, vtiger_crmentity.* + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + INNER JOIN vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_crmentity.smownerid = ? and vtiger_crmentity.deleted = 0 and vtiger_troubletickets.ticketid > 0 and vtiger_troubletickets.status <> 'Closed' AND vtiger_crmentity.setype='HelpDesk' ORDER BY createdtime DESC LIMIT 0,5 +01/30/13 11:50:29,219 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,223 [1520] DEBUG metrics - Entering getParentLink(22) method ... +01/30/13 11:50:29,223 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:50:29,223 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,225 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:50:29,225 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,227 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:50:29,227 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:50:29,227 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:50:29,227 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:50:29,229 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:50:29,229 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:50:29,230 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:50:29,231 [1520] DEBUG metrics - Entering getParentLink(29) method ... +01/30/13 11:50:29,231 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:50:29,231 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,232 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:50:29,232 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,234 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:50:29,235 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:50:29,235 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,235 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,237 [1520] DEBUG metrics - Exiting getMyTickets method ... +01/30/13 11:50:29,238 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,239 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:50:29,243 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:50:29) method ... +01/30/13 11:50:29,243 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,243 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,243 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:50:29,243 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,244 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:50:29,244 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:50:29,244 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:50:29,244 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:50:29,244 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:50:29,245 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,245 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:50:29,245 [1520] DEBUG metrics - Prepared sql query parameters : [9,16] +01/30/13 11:50:29,253 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,253 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,253 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:50:29,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,254 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,254 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,254 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,255 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and vtiger_activity.activitytype not in ('Emails') AND ( vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and ( vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held') ) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:50:29,260 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:50:29,260 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,260 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:45:00) method ... +01/30/13 11:50:29,261 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,261 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:50:29,261 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,261 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:29,261 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,263 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,263 [1520] DEBUG metrics - Prepared sql query parameters : [8] +01/30/13 11:50:29,265 [1520] DEBUG metrics - Entering fetchUserGroupids(1) method ... +01/30/13 11:50:29,265 [1520] DEBUG metrics - Entering getAllUserGroups(1) method... +01/30/13 11:50:29,265 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_users2group where userid=? +01/30/13 11:50:29,265 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,267 [1520] DEBUG metrics - Entering fetchUserRole(1) method ... +01/30/13 11:50:29,268 [1520] DEBUG metrics - Prepared sql query being executed : select roleid from vtiger_user2role where userid=? +01/30/13 11:50:29,268 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,269 [1520] DEBUG metrics - Exiting fetchUserRole method ... +01/30/13 11:50:29,269 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2role where roleid=? +01/30/13 11:50:29,270 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:50:29,272 [1520] DEBUG metrics - Entering getParentRole(H2) method ... +01/30/13 11:50:29,272 [1520] DEBUG metrics - Entering getRoleInformation(H2) method ... +01/30/13 11:50:29,272 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:50:29,272 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:50:29,273 [1520] DEBUG metrics - Exiting getRoleInformation method ... +01/30/13 11:50:29,274 [1520] DEBUG metrics - Exiting getParentRole method ... +01/30/13 11:50:29,274 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2rs where roleandsubid in (?,?) +01/30/13 11:50:29,274 [1520] DEBUG metrics - Prepared sql query parameters : [H1,H2] +01/30/13 11:50:29,276 [1520] DEBUG metrics - Entering getAllParentGroups(3) method... +01/30/13 11:50:29,276 [1520] DEBUG metrics - Prepared sql query being executed : select groupid from vtiger_group2grouprel where containsgroupid=? +01/30/13 11:50:29,276 [1520] DEBUG metrics - Prepared sql query parameters : [3] +01/30/13 11:50:29,278 [1520] DEBUG metrics - Exiting getAllParentGroups method... +01/30/13 11:50:29,278 [1520] DEBUG metrics - Exiting getAllUserGroups method... +01/30/13 11:50:29,278 [1520] DEBUG metrics - Exiting fetchUserGroupids method ... +01/30/13 11:50:29,278 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:50:29,279 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,279 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:50:29,279 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,279 [1520] DEBUG metrics - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:29,280 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,280 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:50:29,280 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,280 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:50:29,281 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,281 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:50:29,281 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,282 [1520] DEBUG metrics - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:50:29,282 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,283 [1520] DEBUG metrics - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:50:29,283 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,283 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:50:29,284 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,284 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:50:29,284 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,285 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:50:29,285 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,286 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:50:29,286 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,286 [1520] DEBUG metrics - Entering isPermitted(Documents,index,) method ... +01/30/13 11:50:29,287 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,287 [1520] INFO metrics - Here is the where clause for the list view: select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:50:29,287 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:50:29,287 [1520] DEBUG metrics - Prepared sql query parameters : [3,3,3,3,3,3,3,3,3,3,3,3] +01/30/13 11:50:29,301 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,301 [1520] DEBUG metrics - Prepared sql query parameters : [9] +01/30/13 11:50:29,305 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:50:29,305 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,307 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,307 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,307 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,307 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:50:29,310 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,310 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,310 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,310 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,310 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,310 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,310 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,310 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,318 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,318 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,318 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,318 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,318 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,318 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,319 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,319 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:50:29,319 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,322 [1520] DEBUG metrics - Entering getCvIdOfAll(SalesOrder) +01/30/13 11:50:29,322 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:50:29,322 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:50:29,324 [1520] DEBUG metrics - Exiting getCvIdOfAll(SalesOrder) +01/30/13 11:50:29,324 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,324 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,324 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,324 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,326 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,326 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,326 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,326 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,330 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:29,330 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:50:29,334 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:29,334 [1520] DEBUG metrics - Prepared sql query parameters : [22,61,63,65,66,85] +01/30/13 11:50:29,350 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,350 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:50:29,352 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,352 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,352 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,352 [1520] DEBUG metrics - Prepared sql query parameters : [27] +01/30/13 11:50:29,354 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,354 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,354 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,354 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,356 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,356 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,410 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,410 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:50:29,413 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,413 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,413 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,413 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:29,415 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,415 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,416 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,416 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:50:29,418 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,418 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,460 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,460 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:50:29,463 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,463 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:50:29,465 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,466 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:50:29,468 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:50:29) method ... +01/30/13 11:50:29,469 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,469 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,469 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,478 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,478 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,478 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,478 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,481 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,481 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,483 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:50:29,484 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,484 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,484 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:50:29,486 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,486 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,486 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,487 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,487 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,487 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,487 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,488 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,488 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,488 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,488 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,488 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,489 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,489 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,489 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,490 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,490 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,490 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,490 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,490 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,490 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,491 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,491 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:50:29,491 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:50:29,491 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,491 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,493 [1520] DEBUG metrics - query being executed : SELECT vtiger_salesorder.salesorderid, vtiger_salesorder.subject, vtiger_salesorder.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_salesorder.salesorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_salesorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_salesorder.salesorderid > 0 LIMIT 5 +01/30/13 11:50:29,495 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:50:29,495 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:50:29,495 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:50:29,495 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:50:29,495 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Entering getURLstring(SalesOrder) method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,496 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,497 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,497 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,497 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,498 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:50:29,498 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,498 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,498 [1520] DEBUG metrics - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:50:29,498 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:29,499 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,499 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:29,499 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,502 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,502 [1520] DEBUG metrics - Prepared sql query parameters : [10] +01/30/13 11:50:29,504 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:50:29,504 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,506 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,506 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,506 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,506 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:50:29,510 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,510 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,511 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,511 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,511 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,511 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,511 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,511 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,511 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:50:29,518 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,518 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,518 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,518 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,518 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,518 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,518 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,519 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,519 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:50:29,519 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:50:29,522 [1520] DEBUG metrics - Entering getCvIdOfAll(Invoice) +01/30/13 11:50:29,522 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:50:29,522 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:50:29,524 [1520] DEBUG metrics - Exiting getCvIdOfAll(Invoice) +01/30/13 11:50:29,524 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,524 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,524 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,524 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:50:29,526 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,526 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,526 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,526 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,529 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,530 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:29,530 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:50:29,534 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:29,534 [1520] DEBUG metrics - Prepared sql query parameters : [23,67,69,71,72] +01/30/13 11:50:29,548 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,549 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:50:29,551 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,551 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,551 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,551 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,553 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,553 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,619 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,619 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:50:29,621 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,622 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,622 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,622 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:29,624 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,625 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,625 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,625 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:50:29,627 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,627 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,628 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,628 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,631 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,631 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,633 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,634 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,636 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,636 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,644 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,645 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,645 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,645 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,647 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,648 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,651 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,652 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,652 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,652 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,654 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,654 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,655 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,655 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,655 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,655 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,655 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,656 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,656 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,656 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,656 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,656 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,657 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,657 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,657 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,657 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,657 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,658 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,658 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,658 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,658 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,658 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,659 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,659 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,659 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,659 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,659 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,659 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,660 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,660 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,660 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,660 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,660 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,661 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,661 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,662 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,662 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,662 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,662 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,665 [1520] DEBUG metrics - query being executed : SELECT vtiger_invoice.invoiceid, vtiger_invoice.subject, vtiger_invoice.salesorderid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_invoice.invoiceid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_invoice.invoicestatus <> 'Paid') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_invoice.invoiceid > 0 LIMIT 5 +01/30/13 11:50:29,668 [1520] DEBUG metrics - Entering getNavigationValues(1,4,20) method ... +01/30/13 11:50:29,669 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:50:29,669 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:50:29,669 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:50:29,669 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:50:29,669 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,669 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,670 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Entering getURLstring(Invoice) method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,670 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,671 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,672 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,672 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,672 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:50:29,672 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,672 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,672 [1520] DEBUG metrics - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:50:29,672 [1520] DEBUG metrics - Entering getEntityName(SalesOrder) method ... +01/30/13 11:50:29,673 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,673 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:50:29,675 [1520] DEBUG metrics - Prepared sql query being executed : SELECT subject,salesorderid FROM vtiger_salesorder WHERE salesorderid IN (?,?) +01/30/13 11:50:29,675 [1520] DEBUG metrics - Prepared sql query parameters : [79,83] +01/30/13 11:50:29,677 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:29,677 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,677 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:29,677 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,684 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,684 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,684 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,685 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,685 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,685 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,685 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:29,685 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,686 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,686 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:29,686 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,686 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,686 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,687 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,687 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:29,687 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,689 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,689 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,689 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,690 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,690 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,690 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,690 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:29,690 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:50:29,691 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,691 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,691 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,691 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,692 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,696 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,696 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,696 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:29,696 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:29,696 [1520] DEBUG metrics - Prepared sql query parameters : [89] +01/30/13 11:50:29,699 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,699 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,699 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:29,700 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:29,700 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,700 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,701 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,701 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:29,702 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,703 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,703 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,703 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,704 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,704 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,704 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,704 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:29,704 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:50:29,705 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,705 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,705 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,705 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,706 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,710 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,710 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,710 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:29,710 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:29,710 [1520] DEBUG metrics - Prepared sql query parameters : [90] +01/30/13 11:50:29,714 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,714 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,715 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,715 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,715 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,715 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,716 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:29,716 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,716 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,716 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:29,716 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,716 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,716 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,717 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,717 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:29,717 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,719 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,719 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,719 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,720 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,720 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,720 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,720 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:29,720 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:50:29,721 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,721 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,721 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,721 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,722 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,726 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,726 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,726 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:29,726 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:29,726 [1520] DEBUG metrics - Prepared sql query parameters : [91] +01/30/13 11:50:29,728 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,728 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,728 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,729 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,729 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,729 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,729 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:29,729 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:29,730 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,730 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:29,730 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,730 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,730 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,731 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,731 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:29,731 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,733 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,733 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,733 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,733 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,733 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:29,734 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,734 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,735 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,739 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:29,739 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,739 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:29,739 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:29,740 [1520] DEBUG metrics - Prepared sql query parameters : [92] +01/30/13 11:50:29,743 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,743 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:50:29,745 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:50:29,745 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,746 [1520] DEBUG metrics - Entering getNewLeads() method ... +01/30/13 11:50:29,746 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:29,746 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,746 [1520] DEBUG metrics - Prepared sql query being executed : select lead_view from vtiger_users where id =? +01/30/13 11:50:29,746 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,748 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:50:29,749 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.firstname, vtiger_leaddetails.lastname, vtiger_leaddetails.leadid, vtiger_leaddetails.company + from vtiger_leaddetails inner join vtiger_crmentity on vtiger_leaddetails.leadid = vtiger_crmentity.crmid + where vtiger_crmentity.deleted =0 AND vtiger_leaddetails.converted =0 AND vtiger_leaddetails.leadid > 0 AND + vtiger_leaddetails.leadstatus not in ("Lost Lead", "Junk Lead","丢失的潜在客户","没有潜在价值") + AND vtiger_crmentity.createdtime >=? AND vtiger_crmentity.smownerid = ? LIMIT 0,5 +01/30/13 11:50:29,749 [1520] DEBUG metrics - Prepared sql query parameters : [2013-01-30 00:00:00,1] +01/30/13 11:50:29,754 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,754 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,757 [1520] DEBUG metrics - Exiting getNewLeads method ... +01/30/13 11:50:29,758 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,759 [1520] DEBUG metrics - Prepared sql query parameters : [12] +01/30/13 11:50:29,760 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:50:29,761 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,762 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:29,762 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,763 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,763 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:50:29,765 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,765 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,765 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,765 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,765 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,765 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,765 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,765 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,772 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,772 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,772 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,772 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,773 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,773 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,773 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,773 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:50:29,773 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,776 [1520] DEBUG metrics - Entering getCvIdOfAll(PurchaseOrder) +01/30/13 11:50:29,776 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:50:29,776 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:50:29,778 [1520] DEBUG metrics - Exiting getCvIdOfAll(PurchaseOrder) +01/30/13 11:50:29,778 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,778 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,778 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,778 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,780 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,780 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,780 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,780 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:50:29,783 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,783 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,784 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:29,784 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:50:29,789 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:29,789 [1520] DEBUG metrics - Prepared sql query parameters : [21,55,57,59,60] +01/30/13 11:50:29,803 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,803 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,805 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,805 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,805 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,805 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:50:29,807 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,807 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,862 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,862 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:50:29,864 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,864 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,864 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:29,865 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:50:29,866 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:50:29,867 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:50:29,867 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:29,868 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:50:29,870 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:29,870 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:50:29,872 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:29,873 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:50:29,875 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:50:29) method ... +01/30/13 11:50:29,875 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,875 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,876 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,886 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:50:29,886 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,886 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,886 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:50:29,888 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:29,888 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:50:29,891 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:29,891 [1520] DEBUG metrics - Prepared sql query parameters : [Vendors] +01/30/13 11:50:29,896 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:50:29,896 [1520] DEBUG metrics - Entering getColumnFields(Vendors) method ... +01/30/13 11:50:29,896 [1520] DEBUG metrics - in getColumnFields Vendors +01/30/13 11:50:29,897 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:50:29,897 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,897 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:50:29,897 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,897 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,898 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:50:29,904 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:50:29,904 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,904 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,904 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:50:29,904 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:50:29,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,905 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:50:29,905 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,905 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:29,905 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:50:29,908 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,908 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,908 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,908 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,909 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,909 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,909 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,909 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,909 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,910 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,910 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,910 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,911 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,911 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,911 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,911 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,911 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,911 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,912 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,912 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,912 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:50:29,912 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:50:29,912 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:29,912 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:50:29,914 [1520] DEBUG metrics - query being executed : SELECT vtiger_purchaseorder.purchaseorderid, vtiger_purchaseorder.subject, vtiger_purchaseorder.vendorid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_purchaseorder.purchaseorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_purchaseorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_purchaseorder.purchaseorderid > 0 LIMIT 5 +01/30/13 11:50:29,916 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:50:29,917 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:29,917 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,918 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:50:29,918 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:50:29,918 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:29,918 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:50:29,919 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:29,919 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,919 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:50:29,919 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:29,919 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,919 [1520] DEBUG metrics - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:50:29,920 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:29,920 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:50:29,920 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:29,920 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:50:29,924 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:29,924 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:50:29,926 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:50:29) method ... +01/30/13 11:50:29,926 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,926 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:50:29,927 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:50:29,928 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,928 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:50:29,929 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:50:29,929 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:50:29,929 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and (vtiger_activity.activitytype not in ('Emails')) AND (vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and (vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held')) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:50:29,934 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:50:29,934 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,934 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:45:00) method ... +01/30/13 11:50:29,935 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,935 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:40:00) method ... +01/30/13 11:50:29,935 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:50:29,935 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:29,935 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:50:29,940 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:29,940 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:29,940 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:29,941 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:29,941 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":14,"widgetType":"Default"}]', +) +01/30/13 11:50:29,941 [1520] INFO index - About to take action HomeAjax +01/30/13 11:50:29,941 [1520] DEBUG index - in HomeAjax +01/30/13 11:50:29,941 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:50:29,941 [1520] INFO index - current module is Home +01/30/13 11:50:29,989 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:29,989 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:29,990 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:29,990 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:29,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:29,990 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:29,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:29,990 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:29,991 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:29,999 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:29,999 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:29,999 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:29,999 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:29,999 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:30,000 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:30,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,001 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:30,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,001 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:30,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,002 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:30,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,002 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:30,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,003 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:30,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,003 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:30,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,004 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:30,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,004 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:30,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,005 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:30,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,005 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:30,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,006 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:30,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,006 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:30,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,007 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:30,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,007 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:30,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,008 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:30,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,008 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:30,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,009 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:30,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,009 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:30,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,010 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:30,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,010 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:30,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,011 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:30,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,011 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,012 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:30,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,013 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:30,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,013 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:30,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,014 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:30,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,014 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:30,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,015 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:30,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,015 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:30,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,016 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:30,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,016 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:30,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,017 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:30,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,017 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:30,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,018 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:30,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,018 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:30,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,019 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:30,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,019 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:30,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,020 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:30,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,020 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:30,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,021 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:30,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,021 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:30,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,022 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:30,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,022 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:30,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,023 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:30,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,023 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:30,028 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:30,028 [1520] DEBUG index - Prepared sql query parameters : [400,1,Home,HomeAjax,,2013-01-30 11:50:30] +01/30/13 11:50:30,032 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:30,032 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:30,032 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:30,032 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:30,033 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:30,034 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:30,035 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:30,036 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:30,037 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:30,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:50:30,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,038 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:30,038 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:30,038 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:30,038 [1520] DEBUG index - skipping headers +01/30/13 11:50:30,050 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:50:30,050 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:50:30,053 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:50:30,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,057 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:50:30,062 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,062 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,062 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,063 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,063 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,063 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:30,063 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:50:30,067 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,067 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,067 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,067 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,067 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,067 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,067 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,067 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,068 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,068 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,068 [1520] DEBUG index - Entering getCvIdOfAll(Faq) +01/30/13 11:50:30,068 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:50:30,068 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:50:30,089 [1520] DEBUG index - Exiting getCvIdOfAll(Faq) +01/30/13 11:50:30,089 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,090 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:30,090 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:50:30,092 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,092 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:30,092 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:50:30,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,095 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,096 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:30,096 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:50:30,103 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?) and displaytype in (1,2,3,4) +01/30/13 11:50:30,103 [1520] DEBUG index - Prepared sql query parameters : [15,37] +01/30/13 11:50:30,110 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:50:30,114 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:30,114 [1520] DEBUG index - Prepared sql query parameters : [33] +01/30/13 11:50:30,115 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:30,116 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:30,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,116 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:30,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,116 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:30,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:30,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:30,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:30,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:30,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:30,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,123 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:30,124 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:50:30,127 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:30,127 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,127 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:50:30,131 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:30,131 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:30,172 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,172 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:50:30,174 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,174 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:50:30,176 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,176 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:50:30,177 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,178 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:50:30,179 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:30,180 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:50:30,229 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,229 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:50:30,232 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,232 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:50:30,234 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,234 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:50:30,236 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,236 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:50:30,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,238 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:50:30,240 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,240 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:50:30,242 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,242 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:50:30,244 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,244 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:50:30,246 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,246 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:50:30,248 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:30,249 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:30,282 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,282 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:50:30,284 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,284 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:50:30,286 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,287 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:50:30,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,289 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:50:30,292 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:50:30,292 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:30,294 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,294 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:50:30,296 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,296 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:50:30,300 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:30,300 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:50:30,333 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,333 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:50:30,335 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,335 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:50:30,337 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,338 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:50:30,340 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,340 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:50:30,342 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,342 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:50:30,344 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,345 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:50:30,346 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,347 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:50:30,349 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,349 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:50:30,351 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,351 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:50:30,354 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,354 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:50:30,356 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,356 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:50:30,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:30,358 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:50:30,360 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:30,365 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:30,365 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:30,368 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:30,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:30,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,371 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:30,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:30,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,371 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:50:30,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:30,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,372 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:30,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:30,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,373 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:50:30,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,373 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,374 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:50:30,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:30,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,375 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:30,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:30,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,376 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:50:30,376 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:30,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,377 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:30,377 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:30,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,377 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:30,378 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:30,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,379 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:30,379 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:30,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,379 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:50:30,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:30,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,381 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:30,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:30,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,381 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:50:30,381 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:30,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,382 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:30,382 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:30,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,383 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:50:30,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:30,384 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,384 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:30,384 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:30,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,385 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:50:30,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:30,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,386 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:30,386 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:30,387 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,387 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:50:30,387 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:30,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,388 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:30,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:30,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,389 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:50:30,389 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:30,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,389 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:30,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:30,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,390 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:30,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:30,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,390 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:30,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:30,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,391 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:50:30,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,391 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,392 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:50:30,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:30,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,392 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:30,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:30,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,392 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:50:30,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:30,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,393 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:50:30,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:30,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,393 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:50:30,393 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:30,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,394 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:30,394 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:30,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,394 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:50:30,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:30,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,395 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:50:30,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:30,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,395 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:50:30,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:30,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,396 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:50:30,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:30,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,396 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:50:30,397 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:30,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,397 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:30,397 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:30,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,397 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:50:30,397 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:30,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,398 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:50:30,398 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:30,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,398 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:50:30,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:30,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,399 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:30,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:30,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,399 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:50:30,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:30,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,399 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:30,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:30,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,400 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:50:30,400 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:30,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,400 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:50:30,400 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:30,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,400 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:50:30,400 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:30,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,401 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:30,401 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:30,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,401 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:50:30,401 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:30,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,402 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:30,402 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:30,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,402 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:50:30,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:30,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,403 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:30,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:30,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,403 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:50:30,403 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:30,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,403 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:30,403 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:30,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,404 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:50:30,404 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:30,404 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:30,442 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:30,442 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:50:30,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:30,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:30,444 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:30,445 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:50:30,447 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:30,447 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:50:30,449 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:30,449 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:50:30,457 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:30,457 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:50:30,460 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:50:30,460 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:50:30,460 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:50:30,461 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,461 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,461 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:30,461 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:50:30,471 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,472 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,472 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:50:30,472 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,473 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:30,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,473 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:30,473 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:50:30,475 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,475 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,475 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,476 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,476 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,476 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,476 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,476 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,477 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,477 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,477 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,477 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,477 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,478 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,478 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,478 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,478 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,479 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,479 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,479 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:50:30,479 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:50:30,479 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:50:30,479 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,479 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,479 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:50:30,480 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,480 [1520] DEBUG index - query being executed : SELECT vtiger_faq.id, vtiger_faq.question, vtiger_faq.product_id FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_faq.id = vtiger_crmentity.crmid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_faq.status <> 'Obsolete') )) AND vtiger_faq.id > 0 LIMIT 0,5 +01/30/13 11:50:30,483 [1520] DEBUG index - Entering getNavigationValues(1,5,20) method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,483 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,484 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,485 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:50:30,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,485 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:50:30,486 [1520] DEBUG index - Entering getEntityName(Products) method ... +01/30/13 11:50:30,486 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:30,486 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:50:30,488 [1520] DEBUG index - Prepared sql query being executed : SELECT productname,productid FROM vtiger_products WHERE productid IN (?,?,?,?,?) +01/30/13 11:50:30,488 [1520] DEBUG index - Prepared sql query parameters : [52,53,54,55,56] +01/30/13 11:50:30,491 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:30,491 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,491 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:30,491 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:30,493 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,493 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,494 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,494 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,495 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,495 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,495 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,495 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,495 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,496 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,496 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:30,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,499 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,499 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,499 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,500 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:30,500 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:50:30,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,500 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,501 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,501 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,501 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,506 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:30,506 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:30,506 [1520] DEBUG index - Prepared sql query parameters : [62] +01/30/13 11:50:30,508 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,509 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,509 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,509 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,510 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,510 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,510 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,510 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,510 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,511 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,511 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:30,512 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,513 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,513 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,514 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,514 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,515 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:30,515 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:50:30,515 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,515 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,516 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,516 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,521 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:30,521 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:30,521 [1520] DEBUG index - Prepared sql query parameters : [63] +01/30/13 11:50:30,523 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,523 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,523 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,524 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,524 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,525 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,525 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,525 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,525 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,526 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,526 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:30,526 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,528 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,529 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,529 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:30,529 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:50:30,529 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,530 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,530 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,535 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:30,535 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:30,535 [1520] DEBUG index - Prepared sql query parameters : [64] +01/30/13 11:50:30,538 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,538 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,538 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,539 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,539 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,539 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,539 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,540 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,540 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:30,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,542 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,542 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,543 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,543 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,544 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:30,544 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:50:30,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,544 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,544 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,544 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,545 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,549 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:30,550 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:30,550 [1520] DEBUG index - Prepared sql query parameters : [65] +01/30/13 11:50:30,552 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,552 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,552 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,553 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,553 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:30,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:30,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,553 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:30,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,554 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,554 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,554 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,554 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:30,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,557 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,557 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,557 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,558 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,558 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:30,558 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:50:30,558 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,559 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:30,559 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:30,559 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:50:30,560 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:30,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:30,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,564 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:30,564 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:30,564 [1520] DEBUG index - Prepared sql query parameters : [66] +01/30/13 11:50:30,571 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:30,571 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:30,571 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:30,572 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:30,572 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:50:30,572 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:50:30,572 [1520] DEBUG index - in CalendarAjax +01/30/13 11:50:30,572 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:50:30,573 [1520] INFO index - current module is Calendar +01/30/13 11:50:30,612 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:30,612 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:30,613 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:30,613 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:30,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,613 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:30,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,613 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:30,613 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:30,621 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:30,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:30,621 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:30,622 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:30,622 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:30,623 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:30,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,623 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:30,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,624 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:30,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,624 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:30,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,625 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:30,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,625 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:30,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,625 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:30,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,626 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:30,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,626 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:30,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,627 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:30,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,627 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:30,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,628 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:30,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,628 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:30,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,629 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:30,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,629 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:30,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,630 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:30,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,630 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:30,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,631 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:30,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,631 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:30,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,632 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:30,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,632 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:30,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,632 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:30,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,633 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:30,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,633 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:30,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,634 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:30,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,634 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:30,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,634 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:30,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,635 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:30,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,635 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:30,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,636 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:30,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,636 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:30,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,637 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:30,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,637 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:30,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,638 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:30,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,638 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:30,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,639 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:30,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,639 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:30,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,640 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:30,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,640 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:30,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,641 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:30,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,641 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:30,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,641 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:30,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,642 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:30,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,642 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:30,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,643 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:30,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,643 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:30,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,644 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:30,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:30,644 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:30,645 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:30,645 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:30,645 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:30,645 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:30,646 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:30,647 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:30,648 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:30,648 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:30,650 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:30,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:30,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:30,651 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:30,651 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:30,651 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:30,651 [1520] DEBUG index - skipping headers +01/30/13 11:50:30,652 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:50:30,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:30,657 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:30,658 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:50:30,658 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:50:30,658 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:50:30,662 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:51')) +01/30/13 11:50:30,665 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:50:38,881 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:39,010 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:39,010 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:39,011 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:39,011 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:39,011 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'index', +) +01/30/13 11:50:39,011 [1520] INFO index - About to take action index +01/30/13 11:50:39,011 [1520] DEBUG index - in index +01/30/13 11:50:39,012 [1520] INFO index - current page is modules/Contacts/index.php +01/30/13 11:50:39,012 [1520] INFO index - current module is Contacts +01/30/13 11:50:39,044 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:39,045 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:39,045 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:39,045 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,045 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,045 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:39,046 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:39,056 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,057 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,057 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:39,057 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:39,058 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:39,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,058 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:39,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,059 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:39,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,059 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:39,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,060 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:39,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,060 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:39,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,061 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:39,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,061 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:39,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,062 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:39,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,062 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:39,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,062 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:39,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,063 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:39,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,063 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:39,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,064 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:39,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,064 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:39,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,065 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:39,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,065 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:39,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,066 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:39,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,066 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:39,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,067 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:39,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,067 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:39,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,068 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:39,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,068 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:39,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,068 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:39,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,069 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:39,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,069 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:39,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,070 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:39,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,070 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:39,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,071 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:39,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,071 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:39,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,072 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:39,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,072 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:39,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,073 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:39,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,073 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:39,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,073 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:39,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,074 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:39,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,074 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:39,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,075 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:39,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,075 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:39,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,076 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:39,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,076 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:39,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,077 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:39,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,077 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:39,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,078 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:39,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,078 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:39,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,079 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:39,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,079 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:39,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,079 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:39,083 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:39,083 [1520] DEBUG index - Prepared sql query parameters : [401,1,Contacts,index,,2013-01-30 11:50:39] +01/30/13 11:50:39,086 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:39,086 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:39,086 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:39,086 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:39,088 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:39,088 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:39,090 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:39,090 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:39,091 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:39,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,092 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:39,092 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:39,092 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:39,092 [1520] DEBUG index - including headers +01/30/13 11:50:39,092 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,093 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,096 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:39,096 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:39,099 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:50:39,100 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:50:39,100 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,100 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:50:39,100 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,101 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:50:39,101 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,101 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:50:39,101 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,101 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:50:39,102 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,102 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:50:39,102 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,102 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:50:39,103 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:50:39,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,112 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:50:39,112 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:50:39,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:39,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,113 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:50:39,113 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:50:39,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:50:39,115 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:50:39,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:39,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,117 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:50:39,117 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:50:39,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,117 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:39,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,118 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:50:39,118 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:50:39,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:39,119 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:39,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,120 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:50:39,120 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:50:39,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:50:39,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,121 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:50:39,121 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:50:39,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,122 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:39,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,123 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:50:39,123 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:50:39,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:39,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,124 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:50:39,124 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:50:39,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:39,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,125 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:50:39,125 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:50:39,126 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,126 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:39,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,126 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:50:39,127 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:50:39,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:39,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,128 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:50:39,128 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:50:39,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:39,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,129 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:50:39,129 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:50:39,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,130 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:39,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,130 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:50:39,130 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:50:39,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,131 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:39,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,131 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:50:39,132 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:50:39,132 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,132 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:39,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,133 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:50:39,133 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:50:39,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:39,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,134 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:50:39,134 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:50:39,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:39,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,136 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:50:39,136 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:50:39,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,136 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:50:39,136 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:50:39) method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:50:39) method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,137 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,138 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,138 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:50:39,138 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:50:39,138 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:50:39,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:50:39,155 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:39,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,156 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:39,156 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:39,158 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,158 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:50:39,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,160 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:50:39,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,160 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,160 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:50:39,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,161 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:50:39,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,161 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:39,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,163 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:50:39,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,163 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:39,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,163 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:50:39,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,164 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:50:39,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,164 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,165 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:50:39,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,166 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:50:39,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,166 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:50:39,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,167 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:50:39,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,167 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:39,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,168 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:50:39,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,168 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:39,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,168 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:50:39,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,169 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:39,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,169 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:50:39,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,170 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:50:39,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,170 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:50:39,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,171 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:50:39,171 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:50:39,171 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:39,176 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:50:39,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,176 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:50:39,177 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,177 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:50:39,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,178 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:50:39,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,179 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:50:39,179 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,179 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:39,179 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:50:39,181 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:50:39,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,182 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:50:39,182 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:50:39,185 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:50:39,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,194 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,195 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:39,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:39,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,195 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:39,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,195 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,195 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:39,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,196 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:39,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:39,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,196 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:39,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:39,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,196 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:39,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:39,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,197 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:50:39,197 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:39,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,197 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:39,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:50:39,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,198 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:50:39,200 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:39,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,201 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:39,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:50:39,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,201 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:50:39,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:50:39,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,202 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:50:39,202 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:50:39,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,203 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:50:39,203 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:39,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,203 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:39,203 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:39,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,204 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:50:39,204 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:50:39,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,204 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:50:39,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:50:39,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,205 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:50:39,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:50:39,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,206 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:50:39,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:39,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,206 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:39,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:39,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,206 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:50:39,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:39,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,207 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:39,207 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:39,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,207 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:39,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:39,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,207 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:39,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:39,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,208 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:39,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:39,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,208 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:39,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:39,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,208 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:39,208 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:39,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,209 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:39,209 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:39,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,209 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:39,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:39,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,210 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:39,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:39,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,210 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:39,211 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:39,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,211 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:39,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:39,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,212 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:39,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,212 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:50:39,213 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:50:39,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,257 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,257 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,257 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,258 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,259 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:50:39,259 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,260 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:50:39,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,261 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:50:39,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,262 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:50:39,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,263 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:50:39,264 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,265 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:50:39,265 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,266 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:39,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,267 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:50:39,268 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,268 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:50:39,268 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,269 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,269 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,269 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,269 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:39,270 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:39,284 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,284 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,284 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:50:39,284 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,284 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:50:39,284 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:50:39,288 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:50:39,289 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,289 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,290 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:50:39,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,291 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:50:39,291 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:50:39,291 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:50:39,291 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:50:39,291 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:39,291 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:50:39,292 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:50:39,292 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:50:39,293 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:50:39,293 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:50:39,295 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:39,295 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:39,299 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:39,299 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:39,301 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:39,301 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:50:39,301 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:50:39,302 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:50:39,302 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:50:39,304 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:50:39,304 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:50:39,304 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:50:39,305 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:50:39,306 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:39,307 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:50:39,307 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,307 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:50:39,310 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,310 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,310 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,310 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,310 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,310 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,311 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,311 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,312 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,312 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =? +01/30/13 11:50:39,312 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:50:39,313 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where setdefault=1 and entitytype=? +01/30/13 11:50:39,314 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:50:39,315 [1520] DEBUG index - Entering isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:50:39,316 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:50:39,316 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:39,321 [1520] DEBUG index - Entering when status=0 +01/30/13 11:50:39,321 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:50:39,321 [1520] DEBUG index - Exiting isPermittedCustomView(7,index,Contacts) method.... +01/30/13 11:50:39,322 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,322 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:50:39,322 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:39,328 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,329 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:50:39,329 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:39,331 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:50:39,331 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:50:39,332 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:50:39,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,333 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:50:39,334 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:50:39,334 [1520] DEBUG index - Entering isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:50:39,334 [1520] DEBUG index - Entering when status=0 +01/30/13 11:50:39,334 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:50:39,334 [1520] DEBUG index - Exiting isPermittedCustomView(7,EditView,Contacts) method.... +01/30/13 11:50:39,334 [1520] DEBUG index - Entering isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:50:39,335 [1520] DEBUG index - Entering when status=0 +01/30/13 11:50:39,335 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:50:39,335 [1520] DEBUG index - Exiting isPermittedCustomView(7,Delete,Contacts) method.... +01/30/13 11:50:39,335 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,335 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:39,335 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:39,338 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,338 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:39,338 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:39,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,342 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,342 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:50:39,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,343 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:50:39,344 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,344 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:50:39,344 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:50:39,351 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:50:39,351 [1520] DEBUG index - Prepared sql query parameters : [4,4,6,7,8] +01/30/13 11:50:39,373 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:50:39,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:39,377 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:50:39,379 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:39,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:39,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:39,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,383 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,384 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,385 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,386 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:39,387 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:39,388 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:50:39,391 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:50:39,391 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,391 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:50:39,394 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:39,395 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:39,436 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,437 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:50:39,439 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,439 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:50:39,442 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,442 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:50:39,444 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,444 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:50:39,446 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:39,447 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:50:39,493 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,494 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:50:39,496 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,496 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:50:39,498 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,499 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:50:39,501 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,501 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:50:39,503 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,504 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:50:39,506 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,506 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:50:39,508 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,508 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:50:39,510 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,510 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:50:39,512 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,513 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:50:39,515 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:39,515 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:39,549 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,550 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:50:39,552 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,552 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:50:39,554 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,554 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:50:39,556 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,556 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:50:39,558 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:50:39,559 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:39,561 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,561 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:50:39,563 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,563 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:50:39,566 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:50:39,566 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:50:39,597 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,598 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:50:39,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,600 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:50:39,602 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,602 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:50:39,604 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,605 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:50:39,606 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,607 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:50:39,609 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,609 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:50:39,611 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,611 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:50:39,613 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,614 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:50:39,616 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,616 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:50:39,619 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,619 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:50:39,622 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,622 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:50:39,624 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:50:39,624 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:50:39,627 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:39,631 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:39,632 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:39,635 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:39,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:39,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,636 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:50:39,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:50:39,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,636 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:50:39,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:39,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,637 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:50:39,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:50:39,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,638 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:50:39,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:39,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,638 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:50:39,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:50:39,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,639 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:50:39,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:39,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,639 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:50:39,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:50:39,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,639 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:50:39,639 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:39,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,639 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:39,640 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:50:39,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,640 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:50:39,640 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:39,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,640 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:50:39,640 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:50:39,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,640 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:50:39,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:39,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,641 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:50:39,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:50:39,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,641 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:50:39,641 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:39,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,641 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:50:39,641 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:50:39,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,641 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:50:39,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,642 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:50:39,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,642 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:50:39,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:39,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,642 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:50:39,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:50:39,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,643 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:50:39,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,643 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,643 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:50:39,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,644 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,644 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:50:39,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:39,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,644 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:50:39,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:50:39,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,644 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:50:39,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:39,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,645 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:50:39,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:50:39,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,645 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:50:39,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:39,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,645 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:50:39,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:50:39,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,646 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:50:39,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:39,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,646 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:50:39,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:50:39,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,646 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:50:39,646 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:39,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,647 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:50:39,647 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:50:39,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,647 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:50:39,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,647 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:50:39,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:50:39,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,647 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:50:39,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:39,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,649 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:50:39,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:50:39,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,649 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:50:39,649 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:39,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,649 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:50:39,650 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:50:39,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,650 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:50:39,650 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:39,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,650 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:50:39,650 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:50:39,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,650 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:50:39,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:39,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,651 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:50:39,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:50:39,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,651 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:50:39,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:39,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,651 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:50:39,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:50:39,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,651 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:50:39,652 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:39,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,652 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:50:39,652 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:50:39,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,652 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:50:39,652 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:39,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,652 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:50:39,652 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:50:39,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,653 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:50:39,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:39,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,653 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:50:39,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:50:39,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,653 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:50:39,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:39,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,653 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:50:39,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:50:39,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,654 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:50:39,654 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:39,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,654 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:50:39,654 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:50:39,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,654 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:50:39,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,710 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:39,710 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:39,712 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,712 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,744 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:50:39,744 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:50:39,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:39,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:39,791 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:50:39,792 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:39,795 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:50:39,795 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:39,798 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:50:39,798 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:39,800 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,800 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:50:39,803 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:50:39,803 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:50:39,803 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,804 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,804 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:39,804 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:50:39,818 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,818 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,819 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,819 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:50:39,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,819 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:39,819 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:50:39,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:50:39,821 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:39,823 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:39,823 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:39,823 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:39,823 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,823 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,824 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:39,824 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,824 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:39,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,824 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:50:39,824 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:39,826 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:50:39,826 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:50:39,828 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,828 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,828 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,828 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,828 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,828 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,828 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,829 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,829 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,829 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,829 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,829 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,829 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,830 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,830 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,830 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,830 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,830 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,830 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,830 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,831 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,831 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,831 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,831 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,831 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,831 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,831 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,832 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,832 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,832 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,832 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,832 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,832 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,833 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,833 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,833 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,833 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,834 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,834 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 +01/30/13 11:50:39,836 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.contact_no, vtiger_contactdetails.firstname, vtiger_contactdetails.lastname, vtiger_contactdetails.title, vtiger_contactdetails.accountid, vtiger_contactdetails.email, vtiger_contactdetails.phone, vtiger_crmentity.smownerid, vtiger_contactdetails.contactid FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_contactdetails.contactid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_contactdetails.contactid > 0 LIMIT 0, 20 +01/30/13 11:50:39,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,840 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,840 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,842 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,843 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,844 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:50:39,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,844 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:50:39,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,844 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:50:39,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,845 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:50:39,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,845 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:50:39,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,845 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:50:39,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,846 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:50:39,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,846 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:50:39,846 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,847 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:50:39,848 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:50:39,848 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:39,848 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:50:39,852 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?) +01/30/13 11:50:39,852 [1520] DEBUG index - Prepared sql query parameters : [16,8,14,20,18,10,2,] +01/30/13 11:50:39,854 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:50:39,854 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:50:39,854 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:50:39,856 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:50:39,857 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,1,1] +01/30/13 11:50:39,859 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:50:39,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,859 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:50:39,859 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:39,861 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,861 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,862 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,862 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,862 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,862 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,863 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,863 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,863 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,864 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,864 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,864 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,864 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,865 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,865 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,865 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,865 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,866 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,866 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,866 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,866 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,866 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,867 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,867 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,867 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,867 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,868 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,868 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,868 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,868 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,869 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,869 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,870 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,870 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,870 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,871 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,871 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,872 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,872 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,872 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,872 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,873 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,873 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,876 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,876 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,877 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,877 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,877 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,877 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,877 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:50:39,879 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,880 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,880 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,880 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,880 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,881 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,881 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,881 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,882 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,882 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,882 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,882 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,882 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,883 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,883 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,883 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,883 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,883 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,884 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,884 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,884 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,884 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,884 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,885 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,885 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,885 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,885 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,886 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,886 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,886 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,886 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,887 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,887 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,888 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,888 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,890 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,890 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,890 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,890 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,890 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,890 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,891 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,894 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,894 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,894 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,895 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,895 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,895 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,895 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:50:39,897 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,897 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,897 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,898 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,898 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,899 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,899 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,900 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,900 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,901 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,901 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,902 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,902 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,902 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,903 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,903 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,903 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,903 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,904 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,904 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,904 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,904 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,905 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,905 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,905 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,905 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,906 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,906 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,908 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,908 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,908 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,908 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,908 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,908 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,909 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,912 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,912 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,912 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,912 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,913 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,913 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,913 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:50:39,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,915 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,916 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,916 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,917 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,917 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,918 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,918 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,919 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,919 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,919 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,919 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,920 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,920 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,921 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,921 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,921 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,922 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,922 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,922 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,922 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,923 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,923 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,923 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,924 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,925 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,925 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,925 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,926 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,926 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,926 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,927 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,930 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,930 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,930 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,930 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,930 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,931 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,931 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,931 [1520] DEBUG index - Prepared sql query parameters : [25] +01/30/13 11:50:39,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,933 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,933 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,934 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,934 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,934 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,934 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,935 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,935 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,935 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,936 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,936 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,937 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,937 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,938 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,938 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,938 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,938 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,938 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,939 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,939 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,939 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,939 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,940 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,940 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,940 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,940 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,940 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,941 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,941 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,941 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,941 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,942 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,942 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,942 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,943 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,943 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,943 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,944 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,944 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,947 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,948 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,948 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,948 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,948 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,948 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,948 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,948 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:50:39,953 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,953 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,953 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,954 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,954 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,954 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,955 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,955 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,955 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,955 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,955 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,956 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,956 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,956 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,956 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,956 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,957 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,957 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,958 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,958 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,958 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,958 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,959 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,959 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,959 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,959 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,959 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,960 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,960 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,960 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,960 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,960 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,961 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,961 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,961 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,962 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,963 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,963 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,963 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,964 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,964 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,964 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,965 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,968 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,968 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,968 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,968 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,969 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,969 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,969 [1520] DEBUG index - Prepared sql query parameters : [27] +01/30/13 11:50:39,972 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,972 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,972 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,972 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,973 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,973 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,973 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,973 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,974 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,974 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,974 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,974 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,975 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,975 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,975 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,975 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,975 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,976 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,976 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,976 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,976 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,977 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,977 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,977 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,977 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,977 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,978 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,978 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,978 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,978 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,979 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,979 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,979 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,979 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,980 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,980 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:39,981 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,981 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,981 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,981 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,981 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,982 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:39,982 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:39,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:39,982 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,982 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,983 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,983 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,986 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:39,986 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:39,986 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:39,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:39,987 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:39,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,987 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:39,987 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:39,987 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:50:39,992 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,992 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,992 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,993 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,993 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,993 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,993 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,994 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,994 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,994 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,994 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,994 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,995 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:39,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,995 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:39,995 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,995 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,995 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,996 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:39,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:39,996 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:39,996 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,997 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,997 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,997 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,997 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,998 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,998 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,998 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,998 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,998 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,999 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:39,999 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:39,999 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:39,999 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:39,1000 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,000 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,000 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:40,001 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,001 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,001 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,001 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,002 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,002 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:40,002 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:40,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,003 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,003 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,003 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,003 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,006 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:40,006 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:40,007 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,007 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:40,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,007 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:40,007 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:40,007 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:40,009 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,009 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,010 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,010 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,010 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,010 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,011 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,011 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,011 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,012 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,012 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,012 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,012 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,013 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,013 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,013 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,013 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,014 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:40,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,014 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:40,014 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,014 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,014 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,015 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,015 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,015 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,015 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,016 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,016 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,016 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,016 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,017 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,017 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,017 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,017 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,018 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,018 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:40,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,018 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,018 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,019 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,019 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,019 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:40,020 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:40,020 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,020 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,020 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,020 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,021 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,024 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:40,024 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:40,024 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,024 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:40,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,025 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:40,025 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:40,025 [1520] DEBUG index - Prepared sql query parameters : [30] +01/30/13 11:50:40,027 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,027 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,027 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,028 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,028 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,028 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,028 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,029 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,029 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,029 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,029 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,029 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,030 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,030 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,030 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,030 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,031 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,031 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:40,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,032 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:40,032 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,032 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,032 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,032 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,033 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,033 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,033 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,033 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,034 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,034 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,034 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,034 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,034 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,035 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,035 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,035 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,035 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:40,036 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,036 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,036 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,036 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,037 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,037 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:40,037 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:40,038 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,038 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,038 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,038 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,038 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,042 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:40,042 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:40,042 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,042 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:40,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,042 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:40,042 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:40,042 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:50:40,045 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,045 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,045 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,045 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,046 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,046 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,046 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,046 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,047 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,047 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,047 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,047 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,048 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,048 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,048 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,048 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,048 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,049 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:50:40,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,049 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:50:40,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,049 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,050 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,050 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,050 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,050 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,051 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,051 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,051 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,051 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,052 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,052 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,052 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,052 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,053 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,053 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:40,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,054 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,054 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,054 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,054 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,055 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:40,055 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:40,055 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,055 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,056 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,056 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,056 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,059 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:40,059 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:40,060 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,060 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:40,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,060 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:40,060 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:40,060 [1520] DEBUG index - Prepared sql query parameters : [130] +01/30/13 11:50:40,063 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,063 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,063 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,063 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,065 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,065 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,065 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,065 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,066 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,066 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,066 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,066 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,066 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,067 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,067 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,067 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,067 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,068 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,068 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,068 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,068 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,069 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,069 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,069 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,069 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,069 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,070 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,070 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,070 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,070 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,071 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:50:40,071 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,071 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,071 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,071 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,072 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,072 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:50:40,072 [1520] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/30/13 11:50:40,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,073 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:50:40,073 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:50:40,073 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:50:40,074 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:50:40,077 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:50:40,077 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:50:40,077 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,077 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:40,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,078 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:50:40,078 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:50:40,078 [1520] DEBUG index - Prepared sql query parameters : [132] +01/30/13 11:50:40,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,080 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:50:40,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,081 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:50:40,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,081 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:50:40,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,081 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:50:40,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,081 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:50:40,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,082 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:50:40,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,082 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:50:40,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,082 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:50:40,082 [1520] DEBUG index - Entering AlphabeticalSearch(Contacts,index,lastname,true,basic,,,,,7,) method ... +01/30/13 11:50:40,082 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:50:40,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,083 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:50:40,083 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,083 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,085 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,085 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:50:40,085 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,085 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,087 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,087 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:50:40,087 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,087 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,089 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,089 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:50:40,090 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,090 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,091 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,092 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:50:40,092 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,092 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,096 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,096 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:50:40,096 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,096 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,098 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,098 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:50:40,098 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,098 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,100 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,100 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:50:40,100 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,100 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,102 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,102 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:50:40,102 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,102 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,104 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,104 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:50:40,104 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,104 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,106 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,106 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:50:40,106 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,106 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,108 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,108 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:50:40,108 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,108 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,110 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,110 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:50:40,110 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,110 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,112 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,112 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:50:40,112 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,112 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,114 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,114 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:50:40,114 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,115 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,116 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,117 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:50:40,117 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,117 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,119 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,119 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:50:40,119 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,119 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,121 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,121 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:50:40,122 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,122 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,123 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,123 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:50:40,123 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,123 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,125 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,125 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:50:40,125 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,126 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,127 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,127 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:50:40,127 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,127 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,129 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,130 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:50:40,130 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,130 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,132 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,132 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:50:40,132 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,132 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,133 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,134 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:50:40,134 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,134 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,135 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,136 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:50:40,136 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,136 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,137 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,137 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:50:40,138 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,138 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,139 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,139 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,139 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,139 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:50:40,139 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,139 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,141 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:50:40,141 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,141 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,141 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:50:40,141 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,141 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:50:40,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,143 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:50:40,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,143 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:50:40,144 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,144 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:50:40,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,145 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:50:40,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,146 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:50:40,146 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,146 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:50:40,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,148 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:50:40,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,148 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:50:40,148 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,148 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,150 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,151 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:50:40,151 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,151 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,152 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,153 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:50:40,153 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,153 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,155 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,155 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:50:40,155 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,155 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,159 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,159 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:50:40,159 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,160 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,162 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,162 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:50:40,162 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,162 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,164 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,164 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:50:40,164 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,164 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,167 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,167 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:50:40,167 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,167 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,169 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,169 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:50:40,169 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,169 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,171 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,171 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:50:40,172 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,172 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,174 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,174 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:50:40,174 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,174 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,176 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,176 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:50:40,176 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,176 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:50:40,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,178 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:50:40,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,178 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:50:40,178 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:50:40,178 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:50:40,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,180 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:50:40,180 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:50:40,180 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:50:40,180 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,180 [1520] DEBUG index - Entering getFieldsResultForMerge(4) method ... +01/30/13 11:50:40,180 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND fieldname NOT IN (?,?) AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:50:40,180 [1520] DEBUG index - Prepared sql query parameters : [4,portal,imagename,4,70,69,4] +01/30/13 11:50:40,183 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:50:40,183 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:50:40,183 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:50:40,183 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:50:40,186 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:50:40,186 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:50:40,186 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:50:40,186 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,186 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:50:40,186 [1520] DEBUG index - Prepared sql query parameters : [1,4] +01/30/13 11:50:40,207 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:50:40,207 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:50:40,207 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,211 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:50:40,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,211 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:50:40,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,211 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:50:40,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,212 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:50:40,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,212 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:50:40,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,212 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:50:40,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,213 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:50:40,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,213 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:50:40,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,213 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:50:40,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,214 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:50:40,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,214 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:50:40,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,214 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:50:40,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,214 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:50:40,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,215 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:50:40,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,215 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:50:40,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,215 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:50:40,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,216 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:50:40,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,216 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:50:40,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,216 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:50:40,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,216 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:50:40,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,217 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:50:40,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,217 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:50:40,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,217 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:50:40,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,218 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:50:40,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,218 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:50:40,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,218 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:50:40,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,219 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:50:40,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,219 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:50:40,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,219 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:50:40,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,219 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:50:40,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,220 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:50:40,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,220 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:50:40,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,220 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:50:40,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,221 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:50:40,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,221 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:50:40,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,221 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:50:40,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,222 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:50:40,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,222 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:50:40,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,222 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:50:40,222 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:50:40,223 [1520] DEBUG index - Prepared sql query parameters : [4,1] +01/30/13 11:50:40,225 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:50:40,225 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:50:40,225 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Contacts,1) method ... +01/30/13 11:50:40,225 [1520] INFO index - in getProfile2FieldList Contacts vtiger_profile id is 1 +01/30/13 11:50:40,225 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:50:40,225 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:50:40,225 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:50:40,231 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:40,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:40,231 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:50:40,232 [1520] DEBUG index - Prepared sql query parameters : [4,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:50:40,234 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:50:40,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:40,235 [1520] DEBUG index - Entering fetchWordTemplateList(Contacts) method ... +01/30/13 11:50:40,235 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:50:40,235 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:50:40,237 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:50:40,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:50:40,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:50:40,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,243 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,244 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:50:40,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,244 [1520] DEBUG index - function getTranslatedString(联系人) - translated to (联系人) +01/30/13 11:50:40,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,244 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,244 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,245 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,245 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,245 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,246 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,246 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,247 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,249 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:50:40,250 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:50:40,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,250 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:50:40,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,250 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:50:40,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,250 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:50:40,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,251 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:50:40,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,251 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:50:40,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,252 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:50:40,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,252 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:50:40,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,252 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:50:40,255 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:40,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:40,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,256 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:50:40,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,256 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,256 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:50:40,263 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:40,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:40,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,263 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:50:40,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:50:40,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:40,263 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:50:40,264 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:50:40,264 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:50:40,264 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:43,263 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:43,390 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:43,391 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:43,391 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:43,391 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:43,391 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'title', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:50:43,392 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:50:43,392 [1520] DEBUG index - in TooltipAjax +01/30/13 11:50:43,392 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:50:43,392 [1520] INFO index - current module is Tooltip +01/30/13 11:50:43,427 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:43,427 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:43,428 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:43,428 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:43,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:43,428 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:43,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:43,428 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:43,429 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:43,438 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:43,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:43,438 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:43,438 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:43,439 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:43,439 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:43,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,440 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:43,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,440 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:43,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,441 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:43,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,441 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:43,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,442 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:43,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,442 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:43,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,443 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:43,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,443 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:43,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,444 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:43,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,444 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:43,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,445 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:43,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,445 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:43,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,446 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:43,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,446 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:43,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,447 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:43,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,447 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:43,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,447 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:43,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,448 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:43,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,448 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:43,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,449 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:43,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,449 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:43,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,450 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:43,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,450 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:43,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,451 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:43,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,451 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:43,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,451 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:43,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,452 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:43,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,452 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:43,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,453 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:43,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,453 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:43,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,454 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:43,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,454 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:43,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,455 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:43,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,455 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:43,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,456 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:43,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,456 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:43,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,457 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:43,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,457 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:43,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,457 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:43,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,458 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:43,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,458 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:43,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,459 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:43,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,459 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:43,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,460 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:43,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,460 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:43,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,461 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:43,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:43,461 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:43,466 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:43,466 [1520] DEBUG index - Prepared sql query parameters : [402,1,Tooltip,TooltipAjax,,2013-01-30 11:50:43] +01/30/13 11:50:43,469 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:43,469 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:43,469 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:43,469 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:43,471 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:43,471 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:43,473 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:43,473 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:43,475 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:43,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:50:43,475 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:50:43,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:43,476 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:43,476 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:43,476 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:43,476 [1520] DEBUG index - skipping headers +01/30/13 11:50:43,478 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:50:43,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:43,484 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:43,484 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:43,484 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:50:43,484 [1520] DEBUG index - Prepared sql query parameters : [4,title] +01/30/13 11:50:43,487 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:50:43,488 [1520] DEBUG index - Prepared sql query parameters : [76] +01/30/13 11:50:47,286 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:47,416 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:47,416 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:47,417 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:47,417 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:47,417 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'firstname', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:50:47,417 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:50:47,417 [1520] DEBUG index - in TooltipAjax +01/30/13 11:50:47,417 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:50:47,418 [1520] INFO index - current module is Tooltip +01/30/13 11:50:47,450 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:47,450 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:47,450 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:47,450 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:47,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:47,451 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:47,451 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:47,451 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:47,451 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:47,459 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:47,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:47,460 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:47,460 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:47,460 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:47,461 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:47,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,461 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:47,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,462 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:47,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,462 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:47,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,463 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:47,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,463 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:47,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,464 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:47,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,464 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:47,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,464 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:47,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,465 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:47,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,465 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:47,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,466 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:47,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,466 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:47,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,467 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:47,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,467 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:47,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,468 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:47,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,468 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:47,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,469 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:47,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,469 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:47,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,470 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:47,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,470 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:47,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,471 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:47,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,471 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:47,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,471 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:47,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,472 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:47,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,472 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:47,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,473 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:47,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,473 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:47,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,473 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:47,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,474 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:47,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,474 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:47,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,475 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:47,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,475 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:47,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,476 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:47,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,476 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:47,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,477 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:47,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,477 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:47,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,478 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:47,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,478 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:47,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,479 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:47,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,479 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:47,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,479 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:47,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,480 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:47,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,480 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:47,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,481 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:47,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,481 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:47,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,482 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:47,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:47,482 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:47,487 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:47,487 [1520] DEBUG index - Prepared sql query parameters : [403,1,Tooltip,TooltipAjax,,2013-01-30 11:50:47] +01/30/13 11:50:47,491 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:47,491 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:47,492 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:47,492 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:47,493 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:47,493 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:47,495 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:47,495 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:47,497 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:47,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:50:47,497 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:50:47,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:47,498 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:47,498 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:47,498 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:47,498 [1520] DEBUG index - skipping headers +01/30/13 11:50:47,499 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:50:47,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:47,506 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:47,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:47,506 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:50:47,506 [1520] DEBUG index - Prepared sql query parameters : [4,firstname] +01/30/13 11:50:47,509 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:50:47,509 [1520] DEBUG index - Prepared sql query parameters : [67] +01/30/13 11:50:53,072 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:53,195 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:53,195 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:53,195 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:53,196 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:53,196 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'assigned_user_id', + 'id' => '25', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:50:53,196 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:50:53,196 [1520] DEBUG index - in TooltipAjax +01/30/13 11:50:53,196 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:50:53,196 [1520] INFO index - current module is Tooltip +01/30/13 11:50:53,229 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:53,229 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:53,229 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:53,229 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:53,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:53,230 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:53,230 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:53,230 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:53,230 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:53,239 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:53,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:53,239 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:53,239 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:53,239 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:53,240 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:53,240 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,241 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:53,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,241 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:53,241 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,242 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:53,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,242 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:53,242 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,242 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:53,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,243 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:53,243 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,243 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:53,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,244 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:53,244 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,244 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:53,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,245 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:53,245 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,245 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:53,246 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,246 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:53,246 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,246 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:53,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,247 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:53,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,247 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:53,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,248 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:53,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,248 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:53,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,249 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:53,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,249 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:53,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,249 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:53,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,250 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:53,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,250 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,251 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:53,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,252 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:53,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,252 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:53,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,253 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:53,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,253 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:53,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,254 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:53,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,254 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:53,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,255 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:53,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,255 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:53,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,256 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:53,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,256 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:53,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,257 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:53,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,257 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:53,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,258 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:53,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,258 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:53,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,259 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:53,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,259 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:53,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,259 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:53,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,260 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:53,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,260 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:53,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,261 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:53,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,261 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:53,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:53,262 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:53,265 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:53,266 [1520] DEBUG index - Prepared sql query parameters : [404,1,Tooltip,TooltipAjax,,2013-01-30 11:50:53] +01/30/13 11:50:53,269 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:53,269 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:53,269 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:53,269 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:53,270 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:53,271 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:53,272 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:53,273 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:53,274 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:53,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:50:53,275 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:50:53,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:53,275 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:53,275 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:53,276 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:53,276 [1520] DEBUG index - skipping headers +01/30/13 11:50:53,277 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:50:53,277 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:53,283 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:53,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:53,283 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:50:53,284 [1520] DEBUG index - Prepared sql query parameters : [4,assigned_user_id] +01/30/13 11:50:53,286 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:50:53,286 [1520] DEBUG index - Prepared sql query parameters : [87] +01/30/13 11:50:55,206 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:50:55,331 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:50:55,332 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:50:55,332 [1520] DEBUG index - ****Starting for new session +01/30/13 11:50:55,332 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:50:55,332 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'email', + 'id' => '22', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:50:55,332 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:50:55,333 [1520] DEBUG index - in TooltipAjax +01/30/13 11:50:55,333 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:50:55,333 [1520] INFO index - current module is Tooltip +01/30/13 11:50:55,366 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:50:55,366 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:50:55,366 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:50:55,366 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:55,366 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:55,366 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:55,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:55,367 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:50:55,367 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:50:55,375 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:50:55,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:55,376 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:50:55,376 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:50:55,376 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:50:55,377 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:50:55,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,377 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:50:55,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,378 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:50:55,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,378 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:50:55,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,379 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:50:55,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,379 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:50:55,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,380 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:50:55,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,380 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:50:55,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,381 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:50:55,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,381 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:50:55,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,382 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:50:55,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,382 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:50:55,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,383 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:50:55,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,383 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:50:55,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,384 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:50:55,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,384 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:50:55,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,385 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:50:55,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,385 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:50:55,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,386 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:50:55,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,386 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:50:55,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,387 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:50:55,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,387 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:50:55,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,387 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:50:55,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,388 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:50:55,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,388 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:50:55,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,389 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:50:55,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,389 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:50:55,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,389 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:50:55,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,390 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:50:55,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,390 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:50:55,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,391 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:50:55,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,391 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:50:55,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,392 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:50:55,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,392 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:50:55,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,393 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:50:55,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,393 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:50:55,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,394 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:50:55,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,394 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:50:55,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,395 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:50:55,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,395 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:50:55,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,395 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:50:55,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,396 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:50:55,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,396 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:50:55,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,397 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:50:55,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,397 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:50:55,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,398 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:50:55,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,398 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:50:55,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:50:55,399 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:50:55,402 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:50:55,403 [1520] DEBUG index - Prepared sql query parameters : [405,1,Tooltip,TooltipAjax,,2013-01-30 11:50:55] +01/30/13 11:50:55,406 [1520] DEBUG index - Current user is: admin +01/30/13 11:50:55,406 [1520] DEBUG index - Current theme is: softed +01/30/13 11:50:55,406 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:50:55,406 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:50:55,408 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:50:55,408 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:50:55,410 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:50:55,410 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:50:55,412 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:50:55,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:50:55,413 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:50:55,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:50:55,413 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:50:55,413 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:50:55,414 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:50:55,414 [1520] DEBUG index - skipping headers +01/30/13 11:50:55,415 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:50:55,415 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:50:55,421 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:50:55,421 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:50:55,421 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:50:55,422 [1520] DEBUG index - Prepared sql query parameters : [4,email] +01/30/13 11:50:55,424 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:50:55,424 [1520] DEBUG index - Prepared sql query parameters : [80] +01/30/13 11:51:04,126 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:51:04,249 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:51:04,249 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:51:04,249 [1520] DEBUG index - ****Starting for new session +01/30/13 11:51:04,250 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:51:04,250 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'ContactsAjax', + 'parenttab' => 'Marketing', + 'file' => 'MassEdit', + 'mode' => 'ajax', + 'idstring' => '23;22;', + 'viewname' => '7', + 'excludedRecords' => '', +) +01/30/13 11:51:04,250 [1520] INFO index - About to take action ContactsAjax +01/30/13 11:51:04,250 [1520] DEBUG index - in ContactsAjax +01/30/13 11:51:04,250 [1520] INFO index - current page is modules/Contacts/ContactsAjax.php +01/30/13 11:51:04,251 [1520] INFO index - current module is Contacts +01/30/13 11:51:04,284 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:51:04,284 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:51:04,284 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:51:04,284 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:04,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,285 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:04,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,285 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:51:04,285 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:51:04,293 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:51:04,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,293 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:51:04,293 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:51:04,294 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:51:04,294 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:51:04,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,295 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:51:04,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,295 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:51:04,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,296 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:51:04,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,296 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:51:04,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,297 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:51:04,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,297 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:51:04,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,298 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:51:04,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,298 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:51:04,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,299 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:51:04,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,299 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:51:04,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,300 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:51:04,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,300 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:51:04,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,301 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:51:04,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,301 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:51:04,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,301 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:51:04,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,302 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:51:04,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,302 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:51:04,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,303 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:51:04,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,303 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:51:04,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,304 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:51:04,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,304 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,305 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:51:04,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,306 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:51:04,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,306 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:51:04,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,307 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:51:04,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,307 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:51:04,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,308 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:51:04,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,308 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:51:04,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,309 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:51:04,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,309 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:51:04,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,309 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:51:04,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,310 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:51:04,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,310 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:51:04,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,311 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:51:04,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,311 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:51:04,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,312 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:51:04,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,312 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:51:04,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,313 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:51:04,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,313 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:51:04,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,314 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:51:04,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,314 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:51:04,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,314 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:51:04,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,315 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:51:04,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,315 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:51:04,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:51:04,316 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:51:04,321 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:51:04,321 [1520] DEBUG index - Prepared sql query parameters : [406,1,Contacts,ContactsAjax,,2013-01-30 11:51:04] +01/30/13 11:51:04,326 [1520] DEBUG index - Current user is: admin +01/30/13 11:51:04,326 [1520] DEBUG index - Current theme is: softed +01/30/13 11:51:04,326 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:51:04,326 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:51:04,328 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:51:04,328 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:51:04,330 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:51:04,330 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:51:04,332 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:51:04,332 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,332 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,333 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:51:04,333 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:51:04,333 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:51:04,333 [1520] DEBUG index - skipping headers +01/30/13 11:51:04,334 [1520] DEBUG index - Entering isPermitted(Contacts,MassEdit,) method ... +01/30/13 11:51:04,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:51:04,340 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:51:04,341 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:51:04,341 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,341 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,341 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:51:04,341 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:51:04,349 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,349 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,350 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:51:04,350 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:51:04,350 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:51:04,351 [1520] DEBUG index - Entering getBlocks(Contacts,create_view,mass_edit,Array,) method ... +01/30/13 11:51:04,351 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,351 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,351 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:51:04,351 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:51:04,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,354 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:51:04,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,354 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:51:04,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,355 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:51:04,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,355 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:51:04,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,355 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:51:04,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,356 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:51:04,356 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype = 1 AND vtiger_field.masseditable NOT IN (0,2) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:51:04,356 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:51:04,369 [1520] DEBUG index - Entering getBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1, +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1, +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1, +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1, +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1, +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1, +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1, +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1, +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1, +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1, +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1, +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1, +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1, +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1, +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1, +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1, +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1, +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1, +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1, +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1, +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1, +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1, +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1, +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1, +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1, +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1, +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1, +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1, +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1, +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1, +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1, +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1, +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1, +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1, +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1, +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1, +,Array,4,Array) method ... +01/30/13 11:51:04,370 [1520] DEBUG index - Entering getOutputHtml(55,firstname,First Name,100,Array,1,Contacts) method ... +01/30/13 11:51:04,370 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,salutationtype) method ... +01/30/13 11:51:04,370 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,371 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:51:04,371 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:51:04,371 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:51:04,371 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:51:04,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:51:04,371 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:51:04,373 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:51:04,373 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:51:04,373 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:51:04,375 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:51:04,376 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:51:04,376 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,376 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:51:04,380 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 406 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #327 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #327 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:51:04,380 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:51:04,380 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:51:04,382 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,383 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:51:04,383 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,383 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:51:04,386 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,387 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:51:04,387 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,387 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:51:04,391 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,391 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:51:04,391 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:51:04,391 [1520] DEBUG index - Prepared sql query parameters : [salutationtype] +01/30/13 11:51:04,393 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct salutationtype FROM vtiger_salutationtype inner join vtiger_role2picklist on vtiger_salutationtype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:51:04,393 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:51:04,405 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:51:04,405 [1520] DEBUG index - function getTranslatedString(Mr.) - translated to (先生) +01/30/13 11:51:04,406 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:51:04,406 [1520] DEBUG index - function getTranslatedString(Mrs.) - translated to (女士) +01/30/13 11:51:04,406 [1520] DEBUG index - function getTranslatedString(Dr.) - translated to (博士) +01/30/13 11:51:04,406 [1520] DEBUG index - function getTranslatedString(Prof.) - translated to (专家) +01/30/13 11:51:04,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,406 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:51:04,406 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,407 [1520] DEBUG index - Entering getOutputHtml(255,lastname,Last Name,100,Array,1,Contacts) method ... +01/30/13 11:51:04,407 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:51:04,408 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:51:04,408 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:51:04,408 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:51:04,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,408 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:51:04,408 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,409 [1520] DEBUG index - Entering getOutputHtml(11,phone,Office Phone,100,Array,1,Contacts) method ... +01/30/13 11:51:04,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,410 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:51:04,410 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,410 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Account Name,100,Array,1,Contacts) method ... +01/30/13 11:51:04,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,411 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:51:04,411 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,411 [1520] DEBUG index - Entering getOutputHtml(11,mobile,Mobile,100,Array,1,Contacts) method ... +01/30/13 11:51:04,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:51:04,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:51:04,412 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:51:04,412 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:51:04,413 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Contacts) method ... +01/30/13 11:51:04,413 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:51:04,413 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:51:04,413 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:51:04,413 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:51:04,414 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,414 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:51:04,418 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 406 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #344 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #344 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:51:04,418 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:51:04,418 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:51:04,421 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,421 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:51:04,421 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,421 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:51:04,424 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,424 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:51:04,424 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:51:04,424 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:51:04,428 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:51:04,428 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:51:04,428 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? diff --git a/logs/vtigercrm.log.3 b/logs/vtigercrm.log.3 new file mode 100644 index 0000000..7892bd3 --- /dev/null +++ b/logs/vtigercrm.log.3 @@ -0,0 +1,35695 @@ +01/30/13 11:41:45,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,144 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:41:45,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:41:45,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:41:45,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,148 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:41:45,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,148 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:41:45,148 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:41:45,151 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:45,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,151 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:41:45,155 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:41:45,155 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:41:45,187 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,187 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:41:45,189 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,189 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:41:45,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,191 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:41:45,192 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,192 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:41:45,194 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:41:45,194 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:41:45,241 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,242 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:41:45,244 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,244 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:41:45,246 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,246 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:41:45,248 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,249 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:41:45,250 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,251 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:41:45,252 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,253 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:41:45,255 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,255 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:41:45,257 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,257 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:41:45,259 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,259 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:41:45,261 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:41:45,261 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:41:45,308 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,309 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:41:45,311 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,311 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:41:45,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,314 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:41:45,316 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,316 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:41:45,319 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:41:45,319 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:45,321 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,321 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:41:45,323 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,323 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:41:45,328 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:41:45,328 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:41:45,360 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,360 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:41:45,362 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,362 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:41:45,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,365 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:41:45,367 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,367 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:41:45,369 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,369 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:41:45,373 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,373 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:41:45,375 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,375 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:41:45,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,378 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:41:45,380 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,380 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:41:45,382 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,383 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:41:45,385 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,385 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:41:45,387 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:41:45,387 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:41:45,390 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:41:45,394 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:41:45,394 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:41:45,397 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:41:45,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:45,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,399 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:41:45,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:45,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,399 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:41:45,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:45,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,400 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:41:45,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:45,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,400 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:41:45,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:41:45,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,401 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:41:45,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:41:45,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,401 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:41:45,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:41:45,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,402 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:41:45,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:41:45,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,402 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:41:45,402 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:41:45,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,403 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:41:45,403 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:41:45,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,403 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:41:45,404 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:41:45,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,404 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:41:45,404 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:41:45,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,404 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:41:45,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:41:45,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,405 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:41:45,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:41:45,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,405 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:41:45,406 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:45,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,406 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:41:45,406 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:45,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,406 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:41:45,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:45,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,406 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:41:45,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:45,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,407 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:41:45,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:45,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,407 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:41:45,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:45,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,407 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:41:45,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,408 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,408 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:41:45,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:45,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,408 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:41:45,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:45,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,408 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:41:45,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:45,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,409 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:41:45,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:45,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,409 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:41:45,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:45,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,409 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:41:45,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:45,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,409 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:41:45,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:45,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,410 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:41:45,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:45,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,410 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:41:45,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:41:45,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,410 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:41:45,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:41:45,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,411 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:41:45,411 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:45,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,411 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:41:45,411 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:45,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,411 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:41:45,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:45,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,411 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:41:45,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:45,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,412 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:41:45,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:41:45,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,413 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:41:45,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:41:45,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,413 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:41:45,413 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:41:45,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,413 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:41:45,414 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:41:45,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,414 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:41:45,414 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:45,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,414 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:41:45,414 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:45,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,414 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:41:45,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:45,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,414 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:41:45,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:45,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,415 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:41:45,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:45,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,415 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:41:45,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:45,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,415 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:41:45,415 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:45,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,415 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:41:45,416 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:45,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,416 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:41:45,416 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:45,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,416 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:41:45,416 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:45,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,416 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:41:45,416 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:45,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,416 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:41:45,417 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:45,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,417 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:41:45,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:45,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,417 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:41:45,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:45,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,417 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:41:45,417 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:41:45,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,417 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:41:45,418 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:41:45,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,418 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:41:45,418 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:45,418 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:45,470 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:41:45,470 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:41:45,474 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:45,474 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:45,475 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:41:45,475 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,478 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:41:45,479 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,481 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:41:45,481 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,483 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,483 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:45,487 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:41:45,487 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:41:45,487 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:41:45,487 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:45,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,488 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,488 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:41:45,488 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:45,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,489 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:45,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,489 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:41:45,489 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:41:45,491 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:41:45,491 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:41:45,493 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,493 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,494 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,494 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,494 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,494 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,495 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,495 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,495 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,495 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,495 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,496 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,496 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,496 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,496 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,497 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,497 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,497 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,497 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,498 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,498 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,498 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,498 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,498 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,499 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,499 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,499 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,499 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,500 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,500 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,500 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,501 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,502 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:41:45,505 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:41:45,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,515 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,516 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,517 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,518 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,520 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,521 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:41:45,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,521 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:41:45,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,522 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:41:45,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,522 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:41:45,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,523 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:41:45,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,523 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:45,523 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,524 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,525 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:41:45,526 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:41:45,526 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:45,526 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:45,528 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:41:45,529 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5,5] +01/30/13 11:41:45,532 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:41:45,532 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,532 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:41:45,532 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:45,534 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,535 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,535 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,535 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,536 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,536 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,536 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,537 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,537 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,537 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,537 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,537 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,538 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,538 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,538 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,538 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,539 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,539 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,539 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,540 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,540 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,540 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,541 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,541 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,541 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,541 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,542 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,542 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,542 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,542 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,543 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,543 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,543 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,544 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,544 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,544 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,545 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,549 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,549 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,549 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,549 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,549 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,550 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,550 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:41:45,552 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,552 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,552 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,553 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,554 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,554 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,554 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,554 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,555 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,555 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,555 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,555 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,556 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,556 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,556 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,556 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,557 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,557 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,557 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,557 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,558 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,558 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,558 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,558 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,559 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,560 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,560 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,560 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,561 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,561 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,561 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,561 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,561 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,564 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,564 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,565 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,565 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,565 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,565 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,565 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,565 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,568 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,568 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,568 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,569 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,569 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,569 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,569 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,570 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,570 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,570 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,570 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,570 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,570 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,570 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,571 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,571 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,571 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,571 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,572 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,572 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,572 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,572 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,573 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,573 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,573 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,573 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,573 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,574 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,574 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,574 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,574 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,575 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,575 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,575 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,576 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,576 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,576 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,576 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,579 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,579 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,579 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,580 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,580 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,580 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,580 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,582 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,582 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,582 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,583 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,583 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,583 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,583 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,584 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,584 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,584 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,584 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,584 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,585 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,585 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,585 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,585 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,586 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,586 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,586 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,586 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,587 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,587 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,587 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,587 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,588 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,589 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,589 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,589 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,590 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,590 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,590 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,590 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,590 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,593 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,593 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,593 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,594 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,594 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,594 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,594 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,594 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,594 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:41:45,596 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,596 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,596 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,597 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,597 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,598 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,598 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,598 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,598 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,598 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,598 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,598 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,599 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,599 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,600 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,600 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,600 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,601 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,601 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,601 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,602 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,603 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,603 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,603 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,604 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,604 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,604 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,604 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,604 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,607 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,607 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,607 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,607 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,608 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,608 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,608 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,608 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:41:45,610 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,610 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,610 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,611 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,611 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,611 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,611 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,612 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,612 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,612 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,612 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,612 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,613 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,613 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,613 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,613 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,614 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,614 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,614 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,615 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,615 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,615 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,615 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,616 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,617 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,617 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,617 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,618 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,621 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,621 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,621 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,622 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,622 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,622 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,622 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,622 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:41:45,624 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,624 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,624 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,625 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,625 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,625 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,625 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,626 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,626 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,626 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,626 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,626 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,627 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,627 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,627 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,627 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,628 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,628 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,628 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,628 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,629 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,629 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,629 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,630 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,631 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,631 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,631 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,632 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,632 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,635 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,636 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,636 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,636 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,636 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,636 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,636 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,636 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:41:45,639 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,639 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,639 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,640 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,640 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,640 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,640 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,640 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,641 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,641 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,641 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,641 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,642 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,642 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,642 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,642 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,643 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,643 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,643 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,643 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,643 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,644 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,644 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,644 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,644 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,644 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,645 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,645 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,645 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,646 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,646 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,646 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,647 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,647 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,650 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,650 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,650 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,650 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,651 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,651 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,651 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:41:45,653 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,653 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,653 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,654 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,654 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,654 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,654 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,655 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,655 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,655 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,655 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,655 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,656 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,656 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,656 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,656 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,657 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,657 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,657 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,657 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,658 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,658 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,658 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,658 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,659 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,660 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,660 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,660 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,661 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,661 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,661 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,661 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,664 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,664 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,664 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,665 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,665 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,665 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,665 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:41:45,667 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,667 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,668 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,668 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,668 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,668 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,668 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,669 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,669 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,669 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,670 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,670 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,670 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,671 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,671 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,671 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,671 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,671 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,672 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,672 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,672 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,672 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,673 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,673 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,675 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,675 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,675 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,675 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,675 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,675 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,676 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,679 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,679 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,679 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,680 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,680 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,680 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:41:45,682 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,682 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,682 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,683 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,683 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,684 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,684 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,684 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,684 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,685 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,685 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,685 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,685 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,686 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,686 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,686 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,686 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,687 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,687 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,687 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,687 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,688 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,689 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,689 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,689 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,690 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,690 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,690 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,690 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,690 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,693 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,693 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,693 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,694 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,694 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,694 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,694 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:41:45,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,696 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,697 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,697 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,697 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,698 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,698 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,698 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,699 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,699 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,699 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,699 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,699 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,700 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,701 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,701 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,701 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,702 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,702 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,702 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,702 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,703 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,703 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,703 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:41:45,704 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,704 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,704 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,704 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,705 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,708 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,708 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,708 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,708 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,708 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:41:45,708 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:41:45,708 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:41:45,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,711 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:41:45,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,712 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:41:45,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,712 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:41:45,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,712 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:41:45,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,712 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:41:45,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,713 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:45,713 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:41:45,713 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:41:45,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,713 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:41:45,713 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,714 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,716 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,716 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:41:45,716 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,716 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,718 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,718 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:41:45,718 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,718 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,720 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,720 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:41:45,720 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,720 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,722 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,722 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:41:45,722 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,722 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,724 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,724 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:41:45,724 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,724 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,726 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,726 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:41:45,726 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,726 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,728 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,728 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:41:45,728 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,728 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,730 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,730 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:41:45,730 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,730 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,732 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,732 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:41:45,732 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,732 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,736 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,736 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:41:45,736 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,737 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,739 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,739 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:41:45,739 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,740 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,741 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,742 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:41:45,742 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,742 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,743 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,744 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:41:45,744 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,744 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,745 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,746 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:41:45,746 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,746 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,747 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,748 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:41:45,748 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,748 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,749 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,750 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:41:45,750 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,750 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,751 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,752 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:41:45,752 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,752 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,753 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,754 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:41:45,754 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,754 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,756 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,756 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:45,756 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,756 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,757 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,758 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:41:45,758 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,758 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,759 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,760 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:41:45,760 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,760 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,761 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,762 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:41:45,762 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,762 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:45,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,763 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:41:45,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,764 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:41:45,764 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,764 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,765 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,766 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:41:45,766 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,766 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,767 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,768 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:41:45,768 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,768 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,769 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,769 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:41:45,770 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,770 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,771 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,772 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:41:45,772 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,772 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,774 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,774 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:41:45,775 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,775 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,776 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,777 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:41:45,777 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,777 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,781 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,782 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:41:45,782 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,782 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,786 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,786 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:41:45,786 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,786 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,788 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,788 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:41:45,789 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,789 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,791 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,791 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:41:45,791 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,791 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,793 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,793 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:41:45,793 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,794 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:41:45,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,796 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:41:45,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,796 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:41:45,796 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:41:45,796 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:41:45,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,800 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:41:45,800 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:41:45,800 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:41:45,801 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,801 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:41:45,801 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:41:45,801 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:41:45,804 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:41:45,804 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:41:45,804 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:41:45,804 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:45,806 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:41:45,806 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:41:45,806 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:41:45,806 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,806 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:41:45,807 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:41:45,821 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:41:45,821 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:41:45,821 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,825 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:41:45,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,825 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:41:45,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,825 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:41:45,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,826 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:41:45,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,826 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:41:45,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,826 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:41:45,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,827 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:41:45,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,827 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:41:45,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,827 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:41:45,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,827 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:41:45,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,828 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:41:45,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,828 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:41:45,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,828 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:41:45,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,829 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:41:45,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,829 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:41:45,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,829 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:41:45,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,829 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:41:45,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,830 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:41:45,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,830 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:45,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,830 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:41:45,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,831 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:41:45,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,831 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:41:45,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,831 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:41:45,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,831 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:41:45,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,832 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:41:45,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,832 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:41:45,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,832 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:41:45,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,833 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:41:45,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,833 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:41:45,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,833 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:41:45,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,834 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:41:45,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,834 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:41:45,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,834 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:41:45,834 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,834 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:41:45,835 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:41:45,839 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:41:45,839 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:41:45,839 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:41:45,839 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:41:45,840 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:41:45,840 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:41:45,840 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,846 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,846 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:41:45,846 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:41:45,849 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:41:45,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,850 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:41:45,850 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:41:45,850 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:41:45,852 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:41:45,852 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:45,852 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:45,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,855 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,855 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:41:45,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,855 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:41:45,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,856 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,856 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,856 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,857 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,857 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,857 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,858 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,858 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,860 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:45,860 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:45,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,861 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:41:45,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,861 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:41:45,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,861 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:41:45,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,862 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:41:45,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,862 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:41:45,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,862 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:41:45,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,862 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:41:45,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,863 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:41:45,865 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:45,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,865 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:41:45,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,866 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,866 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,866 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:45,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,867 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:41:45,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,867 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:41:45,868 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:41:45,868 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:45,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,224 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:08,349 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:08,349 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:08,349 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:08,350 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:08,350 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '2', +) +01/30/13 11:42:08,350 [1520] INFO index - About to take action DetailView +01/30/13 11:42:08,350 [1520] DEBUG index - in DetailView +01/30/13 11:42:08,350 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:42:08,350 [1520] INFO index - current module is Accounts +01/30/13 11:42:08,388 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:08,389 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:08,389 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:08,389 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:08,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,389 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:08,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,390 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:08,390 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:08,401 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:08,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,401 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:08,401 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:08,401 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:08,402 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:08,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,402 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:08,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,403 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:08,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,403 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:08,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,404 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:08,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,404 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:08,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,405 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:08,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,405 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:08,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,406 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:08,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,406 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:08,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,407 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:08,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,407 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:08,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,407 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:08,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,408 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:08,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,408 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:08,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,409 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:08,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,409 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:08,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,410 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:08,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,410 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:08,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,411 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:08,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,411 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:08,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,412 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:08,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,412 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:08,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,412 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:08,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,413 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:08,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,413 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:08,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,414 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:08,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,414 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:08,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,415 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:08,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,415 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:08,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,415 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:08,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,416 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:08,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,416 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:08,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,417 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:08,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,417 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:08,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,418 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:08,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,418 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:08,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,419 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:08,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,419 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:08,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,420 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:08,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,420 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:08,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,421 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:08,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,421 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:08,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,422 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:08,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,422 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:08,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,422 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:08,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,423 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:08,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,423 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:08,427 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:08,427 [1520] DEBUG index - Prepared sql query parameters : [319,1,Accounts,DetailView,2,2013-01-30 11:42:08] +01/30/13 11:42:08,430 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:08,430 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:08,430 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:08,430 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:08,432 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:08,432 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:08,434 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:08,434 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:08,436 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:08,436 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,437 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:08,437 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:08,437 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,437 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,437 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:08,437 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:08,446 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,446 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:08,447 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:42:08,447 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:42:08,447 [1520] DEBUG index - Prepared sql query parameters : [1,2] +01/30/13 11:42:08,451 [1520] INFO index - in track view method Accounts +01/30/13 11:42:08,451 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,451 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:08,453 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:42:08,453 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,455 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:08,455 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:08,455 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,2,vtiger] +01/30/13 11:42:08,474 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:08,474 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:08,476 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:42:08,476 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:08,476 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:08,476 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:08,477 [1520] DEBUG index - including headers +01/30/13 11:42:08,477 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:08,477 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:08,481 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,481 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,483 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:42:08,483 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:42:08,483 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,485 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:42:08,485 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:08,485 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:08,486 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,486 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:08,486 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,486 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:08,487 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,487 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:08,487 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,487 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:08,488 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,488 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:08,488 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,488 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:08,488 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,489 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:08,489 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:08,489 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:08,489 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:08,489 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:08,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,498 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:08,498 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:08,498 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:08,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,499 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:08,499 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:08,499 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:08,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,500 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:08,500 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:08,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:08,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,502 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:08,502 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:08,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,503 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:08,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,503 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:08,503 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:08,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:08,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,505 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:08,505 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:08,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:08,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,506 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:08,506 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:08,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:08,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:08,507 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:08,508 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,508 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:08,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,508 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:08,509 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:08,509 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:08,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,510 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:08,510 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:08,510 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:08,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,511 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:08,511 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:08,512 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,512 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:08,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,512 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:08,512 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:08,513 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:08,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,514 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:08,514 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:08,514 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:08,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,515 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:08,515 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:08,515 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,516 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:08,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,516 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:08,516 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:08,517 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,517 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:08,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,517 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:08,517 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:08,518 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,518 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:08,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,519 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:08,519 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:08,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:08,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,520 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:08,520 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:08,521 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:08,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,521 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:08,521 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:08,522 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,522 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:08,522 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:08) method ... +01/30/13 11:42:08,522 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:08,523 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:08) method ... +01/30/13 11:42:08,523 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:08,523 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:08,523 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:08,524 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:08,524 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:08,524 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:08,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,537 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,537 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,537 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:08,541 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:08,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,542 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:08,542 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,544 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,544 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,544 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,545 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:08,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,546 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,546 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:08,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,547 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:08,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,547 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:08,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,548 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:08,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,549 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:08,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,549 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,550 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:08,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,551 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:08,551 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,551 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:08,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,552 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:08,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,552 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,553 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:08,554 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,554 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:08,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,554 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:08,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,555 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:08,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,555 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:08,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,556 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:08,556 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,556 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:08,556 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,556 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:08,557 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:08,557 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,560 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:08,561 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,561 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:08,562 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,562 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:08,562 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,562 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:08,563 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,563 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:08,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,564 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:08,564 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:08,566 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:08,566 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,567 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:08,567 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:08,570 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:08,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,577 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:08,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,578 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:08,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:08,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,578 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:08,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,578 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:08,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,579 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:08,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:08,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,579 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:08,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:08,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,579 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:08,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:08,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,580 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:08,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:08,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,580 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:08,580 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:08,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,581 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:08,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:08,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,581 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:08,583 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:08,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,584 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:08,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:08,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,585 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:08,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:08,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,585 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:08,585 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:08,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,586 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:08,586 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:08,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,586 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:08,587 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:08,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,587 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:08,587 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:08,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,587 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:08,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:08,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,588 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:08,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:08,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,589 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:08,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:08,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,589 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:08,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:08,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,589 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:08,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:08,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,590 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:08,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:08,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,590 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:08,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:08,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,590 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:08,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:08,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,591 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:08,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:08,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,592 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:08,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:08,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,592 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:08,592 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:08,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,593 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:08,593 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:08,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,593 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:08,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:08,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,593 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:08,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:08,594 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,594 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:08,594 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:08,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,595 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:08,595 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:08,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,596 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:08,596 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,596 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,596 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:08,596 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:08,597 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,599 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:08,599 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:08,599 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,599 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:08,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:42:08,600 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,603 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:42:08,603 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,606 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:42:08,606 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,607 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:42:08,607 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,609 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:42:08,609 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,610 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,612 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:42:08,612 [1520] DEBUG index - id is 2 +01/30/13 11:42:08,612 [1520] DEBUG index - name is vtiger +01/30/13 11:42:08,612 [1520] INFO index - Account detail view +01/30/13 11:42:08,612 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:42:08,612 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,613 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:42:08,613 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:08,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,617 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:08,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,618 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:42:08,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,618 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:08,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,618 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:08,619 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:42:08,619 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:42:08,629 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:42:08,630 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:42:08,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,631 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:08,631 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,631 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,631 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,632 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:42:08,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,632 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:08,632 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,632 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,633 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,633 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:42:08,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,634 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:08,634 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,634 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,634 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,635 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:42:08,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,635 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:08,635 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,635 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,635 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,636 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:42:08,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,637 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:08,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,637 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,637 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,637 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:42:08,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,638 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:08,638 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,638 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,639 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:42:08,639 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:42:08,640 [1520] INFO index - in getAccountName 0 +01/30/13 11:42:08,640 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:42:08,640 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:42:08,641 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:42:08,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,642 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:08,642 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,642 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,642 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:42:08,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,643 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:08,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,643 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,643 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,644 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:42:08,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,645 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:08,645 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,645 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,645 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,645 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:42:08,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,646 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:08,646 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,646 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,646 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,647 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:42:08,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,648 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:08,648 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,648 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,648 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,648 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:42:08,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,649 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:08,649 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,649 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,649 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,650 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:42:08,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,651 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:08,651 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:08,651 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:08,651 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:42:08,651 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:42:08,651 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:42:08,653 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:42:08,653 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:42:08,653 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:42:08,656 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:08,656 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:08,656 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,656 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:08,660 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 319 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:08,661 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,661 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,663 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,663 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:08,663 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,663 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:08,667 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,667 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:08,667 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,667 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:08,673 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,673 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:08,673 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:08,673 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:42:08,675 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:08,676 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:08,705 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:08,705 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:42:08,705 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:42:08,705 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:42:08,706 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:42:08,706 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:42:08,706 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:42:08,706 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:42:08,706 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:42:08,707 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:42:08,707 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:42:08,707 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:42:08,707 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:42:08,708 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:42:08,708 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:42:08,708 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:42:08,708 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:42:08,708 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:08,709 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:42:08,709 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:08,709 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:42:08,709 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:42:08,709 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:42:08,710 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:42:08,710 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,710 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,710 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,711 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:42:08,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,713 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:08,713 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:08,713 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:08,713 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:08,713 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:08,714 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,714 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:08,719 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 319 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:08,721 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,721 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,724 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,724 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:08,724 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,724 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:08,728 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,728 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:08,728 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,728 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:08,732 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,732 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:08,732 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:08,732 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:42:08,734 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:08,734 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:08,746 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:08,746 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:42:08,746 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:42:08,746 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:42:08,747 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:42:08,747 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:42:08,747 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,747 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,748 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:42:08,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,748 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:08,749 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:08,749 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:08,749 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:08,749 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:08,749 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,749 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:08,754 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 319 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:08,755 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,755 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,769 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,769 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:08,769 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,769 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:08,772 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,773 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:08,773 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:08,773 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:08,777 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:08,777 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:08,777 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:08,777 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:42:08,778 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:08,779 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:42:08,790 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:42:08,791 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:42:08,791 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:42:08,791 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:42:08,791 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:08,791 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:08,791 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,791 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,791 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,792 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:42:08,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,793 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:08,793 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,793 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,793 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,794 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:42:08,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,795 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:08,795 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,795 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,795 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,796 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:42:08,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,796 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:08,797 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:42:08,797 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:42:08,797 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:42:08,797 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,799 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:42:08,799 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:42:08,799 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:42:08,799 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:42:08,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,800 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,800 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:42:08,801 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:42:08,801 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,803 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:42:08,803 [1520] INFO index - in getOwnerName 1 +01/30/13 11:42:08,803 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:08,804 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,804 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,806 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:08,806 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,808 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:08,808 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,808 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,808 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:08,808 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:08,810 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:08,810 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:08,811 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:08,811 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:08,811 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:08,813 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,813 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,815 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,815 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,817 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:08,817 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:08,817 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:08,817 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:08,817 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:08,818 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:08,818 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:08,818 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:08,818 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:08,822 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:08,822 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,822 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,823 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:42:08,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,824 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:08,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,824 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,824 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:42:08,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,825 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:42:08,825 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:10) method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,826 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,827 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:42:08,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,827 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:42:08,828 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,828 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,829 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:42:08,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,830 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:08,830 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,830 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,830 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,830 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:42:08,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,831 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:08,831 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,831 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,831 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,832 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:42:08,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,833 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:08,833 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,833 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,833 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,833 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:42:08,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,834 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:08,834 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,834 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,834 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,835 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:42:08,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,836 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:08,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,836 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,836 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:42:08,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,837 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:08,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,837 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,838 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:42:08,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,839 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:08,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,839 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,839 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:42:08,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,840 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:08,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,840 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,841 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:42:08,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,842 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:08,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,842 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,842 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:42:08,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,843 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:08,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,843 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,844 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:42:08,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,845 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:08,845 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,845 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,845 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,845 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:42:08,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,846 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:08,846 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,846 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,846 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,847 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:42:08,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,847 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:08,848 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:08,848 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:08,848 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:08,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,848 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:08,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,848 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:08,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,849 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:08,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,849 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:08,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,849 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:08,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,849 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:08,850 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:42:08,850 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:42:08,850 [1520] DEBUG index - Entering updateInfo(2) method ... +01/30/13 11:42:08,850 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:42:08,850 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:08,852 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:42:08,852 [1520] INFO index - in getOwnerName 1 +01/30/13 11:42:08,852 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:08,852 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:08,853 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:08,855 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:08,855 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,857 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:42:08,857 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:08,858 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:42:08,858 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:42:08,858 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,858 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:42:08,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:08,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:08,859 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:42:08,859 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,861 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:42:08,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,862 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,2) method ... +01/30/13 11:42:08,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,862 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:08,863 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,863 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:08,863 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:08,865 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:08,865 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:08,865 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,866 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,867 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,868 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:42:08,868 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:08,873 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,873 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,873 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:42:08,873 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:42:08,891 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:08,891 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,892 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:42:08,892 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:42:08,892 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:08,893 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:42:08,893 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,894 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:08,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,894 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:42:08,894 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:08,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,897 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:08,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,898 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:08,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,898 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:08,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,898 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:08,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,899 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:08,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,899 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:08,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,899 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:08,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,900 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:08,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,900 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:08,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,900 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:08,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,901 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:08,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,901 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:08,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,901 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:08,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,902 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:08,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,902 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:08,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,902 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:08,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,903 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:08,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,903 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:08,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,903 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:08,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,904 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:08,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,904 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:08,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,904 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:08,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,905 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:08,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,905 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:08,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,905 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:08,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,906 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:08,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,906 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:08,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,906 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:08,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,907 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:08,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,907 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:08,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,907 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:08,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,908 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:08,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,908 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:08,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,908 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:08,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,908 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:08,909 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:42:08,909 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:42:08,909 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:42:08,909 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:08,909 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,909 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:08,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,910 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:42:08,911 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,911 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:08,911 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,911 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:08,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,912 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:42:08,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,912 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:08,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,913 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:08,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,914 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:08,914 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:42:08,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,915 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:08,915 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:42:08,916 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:08,918 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:08,918 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:42:08,918 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:08,921 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,921 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:42:08,921 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:08,926 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:08,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:08,926 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:08,926 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:42:08,929 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,929 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:08,930 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,930 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:42:08,930 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:42:08,941 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:08,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,941 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:08,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,942 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:08,942 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:08,942 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:42:08,942 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:08,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,943 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:08,943 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:42:08,943 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:42:08,2,1] +01/30/13 11:42:08,948 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:08,948 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:08,948 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:42:08,948 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:42:08,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,957 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,957 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:08,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,958 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:08,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,958 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,958 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,959 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,959 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,960 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,960 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:08,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,961 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:08,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,961 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:08,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,962 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:08,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,962 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:08,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,962 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:08,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,962 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:42:08,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,963 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:08,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,963 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:42:08,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,963 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:08,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,964 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:42:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,964 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,964 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,964 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,965 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,965 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,965 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,966 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:08,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:08,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:08,966 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:42:09,063 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,063 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,063 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,064 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,064 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:42:09,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:09,067 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:09,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,067 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:09,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,067 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:42:09,067 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,067 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,068 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,068 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,068 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:42:09,068 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:42:09,071 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:42:09,071 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:42:09,071 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:42:09,071 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:09,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,072 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:09,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,072 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:09,072 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:42:09,080 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:09,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,080 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,080 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:42:09,080 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:42:09,080 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:42:09,080 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:09,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,081 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:09,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,081 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:09,081 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:09,091 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:09,091 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,091 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,092 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,092 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,092 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,092 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,092 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,092 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,092 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:42:09,093 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:42:09,093 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,093 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:09,093 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:09,099 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:09,099 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,099 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,101 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,101 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,101 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,101 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,101 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,105 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:09,105 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:09,105 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:09,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,105 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:09,106 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:42:09,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:09,106 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:42:09,106 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:09,131 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,131 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:42:09,131 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:09,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,132 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:42:09,132 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:09,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:09,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:09,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,132 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:09,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:09,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:09,132 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:09,133 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:09,133 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:09,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:30,946 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:31,080 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:31,080 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:31,080 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:31,081 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:31,081 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'activity_mode' => 'Task', + 'return_id' => '2', + 'parent_id' => '2', + 'parenttab' => 'Marketing', +) +01/30/13 11:42:31,081 [1520] INFO index - About to take action EditView +01/30/13 11:42:31,081 [1520] DEBUG index - in EditView +01/30/13 11:42:31,081 [1520] INFO index - current page is modules/Calendar/EditView.php +01/30/13 11:42:31,081 [1520] INFO index - current module is Calendar +01/30/13 11:42:31,117 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:31,117 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:31,118 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:31,118 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:31,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,118 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:31,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,118 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:31,118 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:31,129 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:31,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:31,129 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:31,130 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:31,130 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:31,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,131 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:31,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,131 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:31,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,132 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:31,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,132 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:31,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,133 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:31,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,133 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:31,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,134 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:31,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,134 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:31,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,135 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:31,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,135 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:31,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,136 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:31,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,136 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:31,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,136 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:31,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,137 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:31,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,137 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:31,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,138 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:31,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,138 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:31,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,139 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:31,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,139 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:31,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,140 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:31,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,140 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:31,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,141 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:31,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,141 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:31,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,141 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:31,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,142 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:31,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,142 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:31,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,143 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:31,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,143 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:31,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,144 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:31,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,144 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:31,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,145 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:31,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,145 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:31,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,146 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:31,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,146 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:31,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,147 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:31,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,147 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:31,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,148 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:31,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,148 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:31,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,148 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:31,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,149 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:31,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,149 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:31,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,150 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:31,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,150 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:31,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,151 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:31,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,151 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:31,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,152 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:31,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,152 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:31,156 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:31,156 [1520] DEBUG index - Prepared sql query parameters : [320,1,Calendar,EditView,,2013-01-30 11:42:31] +01/30/13 11:42:31,169 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:31,169 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:31,169 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:31,169 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:31,171 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:31,171 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:31,173 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:31,173 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:31,175 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:31,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,175 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:31,176 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:31,176 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:31,176 [1520] DEBUG index - including headers +01/30/13 11:42:31,176 [1520] DEBUG index - Entering getParentTabFromModule(Calendar) method ... +01/30/13 11:42:31,176 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:31,179 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,180 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,182 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:31,183 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:31,183 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,183 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:31,183 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,183 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:31,184 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,184 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:31,184 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,184 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:31,185 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,185 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:31,185 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,185 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:31,185 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,186 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:31,186 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:31,186 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:31,186 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:31,186 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:31,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:31,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,195 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:31,195 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:31,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:31,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,196 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:31,196 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:31,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:31,197 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:31,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:31,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,199 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:31,199 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:31,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,200 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:31,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,200 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:31,200 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:31,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:31,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:31,202 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:31,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:31,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,203 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:31,203 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:31,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:31,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,204 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:31,204 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:31,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,205 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:31,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,206 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:31,206 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:31,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:31,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,207 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:31,207 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:31,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:31,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,208 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:31,208 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:31,209 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,209 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:31,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,209 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:31,209 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:31,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:31,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,211 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:31,211 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:31,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:31,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,212 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:31,212 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:31,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,213 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:31,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,213 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:31,213 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:31,214 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,214 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:31,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,214 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:31,215 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:31,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,215 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:31,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,216 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:31,216 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:31,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:31,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,217 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:31,218 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:31,218 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:31,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,219 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:31,219 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:31,219 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,219 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:31) method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:31) method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:31,220 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:31,221 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:31,222 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:31,222 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:31,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,235 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,235 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:31,239 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:31,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,239 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:31,239 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:31,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:31,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:31,242 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:31,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,242 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:31,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,243 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:31,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,243 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:31,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,244 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:31,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,245 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:31,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,245 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:31,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,246 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:31,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,246 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:31,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,247 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:31,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,248 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:31,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,248 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:31,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,249 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:31,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,249 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:31,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,250 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:31,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,250 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:31,251 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,251 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:31,251 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,251 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:31,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,252 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:31,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,253 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:31,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,253 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:31,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,254 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:31,254 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:31,254 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:31,258 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:31,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,259 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:31,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,259 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:31,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,260 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:31,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,261 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:31,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,262 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:31,262 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:31,264 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:31,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,264 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:31,264 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:31,267 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:31,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,273 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:31,274 [1520] DEBUG index - function getTranslatedString(LBL_FILENAME) - translated to (文件名称) +01/30/13 11:42:31,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,274 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:31,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:31,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,275 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:31,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:31,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,275 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:31,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:31,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,275 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:31,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:31,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,276 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:31,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:31,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,276 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:31,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:31,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,276 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:31,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:31,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,277 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:31,277 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:31,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,277 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:31,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:31,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,278 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:31,280 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:31,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,281 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:31,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:31,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,281 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:31,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:31,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,282 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:31,282 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:31,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,283 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:31,283 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:31,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,283 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:31,283 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:31,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,284 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:31,284 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:31,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,284 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:31,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:31,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,285 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:31,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:31,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,286 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:31,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:31,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,286 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:31,286 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:31,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,286 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:31,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:31,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,287 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:31,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:31,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,287 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:31,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:31,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,287 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:31,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:31,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,288 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:31,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:31,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,288 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:31,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:31,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,288 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:31,289 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:31,289 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,289 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:31,289 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:31,289 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,289 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:31,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:31,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,290 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:31,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:31,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,291 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:31,291 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:31,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,292 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:31,292 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:31,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,292 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:31,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,293 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,293 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:31,293 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:31,294 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,304 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:31,304 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:31,306 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:31,306 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,307 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:42:31,307 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:42:31,307 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,307 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,307 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,307 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:42:31,308 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:42:31,321 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,322 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:31,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,322 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:31,323 [1520] DEBUG index - Entering setObjectValuesFromRequest(Activity) method ... +01/30/13 11:42:31,323 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:42:31,323 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where deleted=0 and status='Active' and id!=? +01/30/13 11:42:31,323 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:31,328 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select * from vtiger_users where deleted=0 and status='Active' and id!='1' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 320 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #468 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 58 + [_queryID] => Resource id #468 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:31,329 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,329 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,331 [1520] INFO VT - PearDatabase ->Inside the function getUserEmailId. --- id = '1' +01/30/13 11:42:31,331 [1520] DEBUG index - Prepared sql query being executed : SELECT email1, email2, secondaryemail from vtiger_users WHERE status='Active' AND id = ? +01/30/13 11:42:31,331 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:31,333 [1520] INFO VT - PearDatabase ->Email id is selected => 'mail@inkinlight.com' +01/30/13 11:42:31,333 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:42:31,333 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:42:31,333 [1520] DEBUG index - Entering getBlocks(Calendar,create_view,,Array,BAS) method ... +01/30/13 11:42:31,333 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,334 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:42:31,334 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:31,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,336 [1520] DEBUG index - function getTranslatedString(LBL_TASK_INFORMATION) - translated to (任务信息) +01/30/13 11:42:31,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,337 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:42:31,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,337 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:42:31,337 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:42:31,337 [1520] DEBUG index - Prepared sql query parameters : [9,19,20,86,BAS] +01/30/13 11:42:31,344 [1520] DEBUG index - Entering getBlockInformation(Calendar,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +9,232,subject,vtiger_activity,1,2,subject,Subject,1,0,,100,1,19,1,V~M,0,1,BAS,1, +9,233,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,2,19,1,V~M,0,4,BAS,1, +9,234,date_start,vtiger_activity,1,6,date_start,Start Date & Time,1,0,,100,3,19,1,DT~M~time_start,0,2,BAS,1, +9,237,due_date,vtiger_activity,1,23,due_date,Due Date,1,0,,100,5,19,1,D~M~OTH~GE~date_start~Start Date & Time,1,,BAS,1, +9,238,crmid,vtiger_seactivityrel,1,66,parent_id,Related To,1,0,,100,7,19,1,I~O,1,,BAS,1, +9,239,contactid,vtiger_cntactivityrel,1,57,contact_id,Contact Name,1,0,,100,8,19,1,I~O,1,,BAS,1, +9,240,status,vtiger_activity,1,15,taskstatus,Status,1,0,,100,8,19,1,V~M,0,3,BAS,1, +9,242,priority,vtiger_activity,1,15,taskpriority,Priority,1,0,,100,10,19,1,V~O,1,,BAS,1, +9,243,sendnotification,vtiger_activity,1,56,sendnotification,Send Notification,1,0,,100,11,19,1,C~O,1,,BAS,1, +9,248,description,vtiger_crmentity,1,19,description,Description,1,0,,100,1,20,1,V~O,1,,BAS,1, +,Array,9,Array) method ... +01/30/13 11:42:31,345 [1520] DEBUG index - Entering getOutputHtml(2,subject,Subject,100,Array,1,Calendar) method ... +01/30/13 11:42:31,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,345 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:42:31,346 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,346 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Calendar) method ... +01/30/13 11:42:31,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,347 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:31,347 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:31,347 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:31,349 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:31,350 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:31,350 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:31,350 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:31,350 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:31,353 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,353 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,355 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,355 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,358 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:31,358 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:31,358 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:31,358 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:31,358 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:31,358 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:31,358 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:31,359 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:31,359 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:31,361 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:31,361 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:31,361 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:31,361 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:31,361 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:31,361 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:31,361 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,362 [1520] DEBUG index - Entering getOutputHtml(6,date_start,Start Date & Time,100,Array,1,Calendar) method ... +01/30/13 11:42:31,362 [1520] INFO index - uitype is 6 +01/30/13 11:42:31,362 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,362 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,363 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:42:31,363 [1520] INFO index - in getNewDisplayDate +01/30/13 11:42:31,363 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:42:31,363 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:31) method ... +01/30/13 11:42:31,363 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:31,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,363 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (开始时间) +01/30/13 11:42:31,363 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:31,364 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:31,364 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,364 [1520] DEBUG index - Entering getOutputHtml(23,due_date,Due Date,100,Array,1,Calendar) method ... +01/30/13 11:42:31,365 [1520] INFO index - uitype is 23 +01/30/13 11:42:31,365 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,365 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:42:31,365 [1520] INFO index - in getNewDisplayDate +01/30/13 11:42:31,365 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:42:31,365 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:31) method ... +01/30/13 11:42:31,366 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:31,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,366 [1520] DEBUG index - function getTranslatedString(Due Date) - translated to (结束日期) +01/30/13 11:42:31,366 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:31,366 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:31,366 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,367 [1520] DEBUG index - Entering getOutputHtml(66,parent_id,Related To,100,Array,1,Calendar) method ... +01/30/13 11:42:31,368 [1520] DEBUG index - Entering getSalesEntityType(2) method ... +01/30/13 11:42:31,368 [1520] INFO index - in getSalesEntityType 2 +01/30/13 11:42:31,368 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:42:31,368 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:31,370 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:42:31,370 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:42:31,371 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,371 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:31,373 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:42:31,373 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:31,375 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,375 [1520] DEBUG index - Entering getOutputHtml(57,contact_id,Contact Name,100,Array,1,Calendar) method ... +01/30/13 11:42:31,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,376 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:42:31,376 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,377 [1520] DEBUG index - Entering getOutputHtml(15,taskstatus,Status,100,Array,1,Calendar) method ... +01/30/13 11:42:31,377 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:31,377 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:31,377 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:42:31,378 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:42:31,378 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:42:31,380 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:42:31,380 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:42:31,380 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:42:31,382 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:31,382 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:31,382 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,382 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:31,386 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 320 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:31,387 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,387 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,389 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,390 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:31,390 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,390 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:31,393 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,393 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:31,394 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,394 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:31,397 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,397 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:31,397 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:31,397 [1520] DEBUG index - Prepared sql query parameters : [taskstatus] +01/30/13 11:42:31,399 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct taskstatus FROM vtiger_taskstatus inner join vtiger_role2picklist on vtiger_taskstatus.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:31,399 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:31,447 [1520] DEBUG index - function getTranslatedString(Not Started) - translated to (未开始) +01/30/13 11:42:31,447 [1520] DEBUG index - function getTranslatedString(In Progress) - translated to (处理中) +01/30/13 11:42:31,447 [1520] DEBUG index - function getTranslatedString(Completed) - translated to (已完成) +01/30/13 11:42:31,447 [1520] DEBUG index - function getTranslatedString(Pending Input) - translated to (待定) +01/30/13 11:42:31,448 [1520] DEBUG index - function getTranslatedString(Deferred) - translated to (延期) +01/30/13 11:42:31,448 [1520] DEBUG index - function getTranslatedString(Planned) - translated to (计划中) +01/30/13 11:42:31,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,448 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:31,449 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,449 [1520] DEBUG index - Entering getOutputHtml(15,taskpriority,Priority,100,Array,1,Calendar) method ... +01/30/13 11:42:31,451 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:31,451 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:31,451 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:31,451 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:31,451 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,452 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:31,456 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 320 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:31,458 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:31,458 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:31,461 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,461 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:31,461 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,461 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:31,466 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,466 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:31,466 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:31,467 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:31,470 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:31,471 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:31,471 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:31,471 [1520] DEBUG index - Prepared sql query parameters : [taskpriority] +01/30/13 11:42:31,473 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct taskpriority FROM vtiger_taskpriority inner join vtiger_role2picklist on vtiger_taskpriority.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:31,473 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:31,484 [1520] DEBUG index - function getTranslatedString(High) - translated to (高) +01/30/13 11:42:31,484 [1520] DEBUG index - function getTranslatedString(Medium) - translated to (中) +01/30/13 11:42:31,484 [1520] DEBUG index - function getTranslatedString(Low) - translated to (低) +01/30/13 11:42:31,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,485 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:42:31,485 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,486 [1520] DEBUG index - Entering getOutputHtml(56,sendnotification,Send Notification,100,Array,1,Calendar) method ... +01/30/13 11:42:31,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,488 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:42:31,488 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,489 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Calendar) method ... +01/30/13 11:42:31,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,490 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:31,490 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:31,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,491 [1520] DEBUG index - function getTranslatedString(LBL_TASK_INFORMATION) - translated to (任务信息) +01/30/13 11:42:31,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,491 [1520] DEBUG index - function getTranslatedString(LBL_TASK_INFORMATION) - translated to (任务信息) +01/30/13 11:42:31,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,492 [1520] DEBUG index - function getTranslatedString(LBL_TASK_INFORMATION) - translated to (任务信息) +01/30/13 11:42:31,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,493 [1520] DEBUG index - function getTranslatedString(LBL_TASK_INFORMATION) - translated to (任务信息) +01/30/13 11:42:31,493 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:42:31,493 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:42:31,494 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:31,494 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:31,494 [1520] INFO index - Activity edit view +01/30/13 11:42:31,496 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:31,496 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:31,498 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:31,498 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:31,498 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,contact_id) method ... +01/30/13 11:42:31,498 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,499 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,499 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:31,504 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,504 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:31,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:31,504 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:42:31,505 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:31,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,509 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:42:31,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,510 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:31,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,510 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (Start Date & Time) +01/30/13 11:42:31,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,511 [1520] DEBUG index - function getTranslatedString(Time Start) - translated to (开始时间) +01/30/13 11:42:31,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,512 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:42:31,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,512 [1520] DEBUG index - function getTranslatedString(Due Date) - translated to (结束日期) +01/30/13 11:42:31,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,513 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (关联于) +01/30/13 11:42:31,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,514 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:42:31,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,514 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:31,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,515 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:31,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,516 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:42:31,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,516 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:42:31,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,517 [1520] DEBUG index - function getTranslatedString(Activity Type) - translated to (活动类型) +01/30/13 11:42:31,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,518 [1520] DEBUG index - function getTranslatedString(Visibility) - translated to (可见性) +01/30/13 11:42:31,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,518 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:31,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,518 [1520] DEBUG index - function getTranslatedString(Duration) - translated to (持续) +01/30/13 11:42:31,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,519 [1520] DEBUG index - function getTranslatedString(Duration Minutes) - translated to (持续分钟) +01/30/13 11:42:31,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,519 [1520] DEBUG index - function getTranslatedString(Location) - translated to (地点) +01/30/13 11:42:31,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,519 [1520] DEBUG index - function getTranslatedString(Send Reminder) - translated to (发送邮件通知) +01/30/13 11:42:31,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,520 [1520] DEBUG index - function getTranslatedString(Recurrence) - translated to (重复) +01/30/13 11:42:31,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,520 [1520] DEBUG index - function getTranslatedString(No Time) - translated to (没有时间) +01/30/13 11:42:31,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:31,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:31,520 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:31,521 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:42:31,521 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:42:31,521 [1520] DEBUG index - Entering Button_Check(Calendar) method ... +01/30/13 11:42:31,521 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:31,521 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,522 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:31,522 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,522 [1520] DEBUG index - Entering isPermitted(Calendar,Import,) method ... +01/30/13 11:42:31,523 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,523 [1520] DEBUG index - Entering isPermitted(Calendar,Export,) method ... +01/30/13 11:42:31,523 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,523 [1520] DEBUG index - Entering isPermitted(Calendar,Merge,) method ... +01/30/13 11:42:31,524 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,524 [1520] DEBUG index - Entering isPermitted(Calendar,DuplicatesHandling,) method ... +01/30/13 11:42:31,524 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,524 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:31,525 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,525 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:31,526 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:31,526 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:31,527 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,527 [1520] DEBUG index - Entering getCalendarCustomFields(9, edit, Array) +01/30/13 11:42:31,527 [1520] DEBUG index - Entering getBlockId(9,LBL_CUSTOM_INFORMATION) method ... +01/30/13 11:42:31,527 [1520] DEBUG index - Prepared sql query being executed : select blockid from vtiger_blocks where tabid=? and blocklabel = ? +01/30/13 11:42:31,527 [1520] DEBUG index - Prepared sql query parameters : [9,LBL_CUSTOM_INFORMATION] +01/30/13 11:42:31,529 [1520] DEBUG index - Exiting getBlockId method ... +01/30/13 11:42:31,529 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where block=? AND vtiger_field.tabid=? ORDER BY fieldid +01/30/13 11:42:31,530 [1520] DEBUG index - Prepared sql query parameters : [86,9] +01/30/13 11:42:31,532 [1520] DEBUG index - Exiting getCalendarCustomFields() +01/30/13 11:42:31,532 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:31,532 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:31,532 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,533 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:42:31,533 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:31,534 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:42:31,568 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:31,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:31,568 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:42:31,568 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:31,581 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:31,581 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:31,582 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,558 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:33,682 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:33,682 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:33,683 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:33,683 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:33,683 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:42:33,683 [1520] INFO index - About to take action index +01/30/13 11:42:33,683 [1520] DEBUG index - in index +01/30/13 11:42:33,683 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:42:33,684 [1520] INFO index - current module is Accounts +01/30/13 11:42:33,721 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:33,721 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:33,721 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:33,722 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:33,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,722 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:33,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,722 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:33,722 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:33,733 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:33,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,734 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:33,734 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:33,734 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:33,735 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:33,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,735 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:33,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,736 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:33,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,736 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:33,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,737 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:33,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,737 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:33,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,738 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:33,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,738 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:33,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,739 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:33,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,739 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:33,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,739 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:33,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,740 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:33,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,740 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:33,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,741 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:33,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,741 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:33,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,742 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:33,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,742 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:33,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,743 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:33,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,743 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:33,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,744 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:33,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,744 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:33,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,745 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:33,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,745 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:33,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,745 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:33,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,746 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:33,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,746 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:33,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,747 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:33,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,747 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:33,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,747 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:33,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,748 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:33,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,748 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:33,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,749 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:33,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,749 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:33,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,750 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:33,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,750 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:33,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,751 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:33,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,751 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:33,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,752 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:33,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,752 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:33,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,753 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:33,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,753 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:33,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,753 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:33,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,754 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:33,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,754 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:33,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,755 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:33,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,755 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:33,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,756 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:33,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,756 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:33,760 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:33,760 [1520] DEBUG index - Prepared sql query parameters : [321,1,Accounts,index,,2013-01-30 11:42:33] +01/30/13 11:42:33,763 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:33,763 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:33,763 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:33,763 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:33,765 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:33,765 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:33,767 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:33,767 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:33,769 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:33,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:33,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,769 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:33,769 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:33,770 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:33,770 [1520] DEBUG index - including headers +01/30/13 11:42:33,770 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:33,770 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:33,773 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:33,774 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:33,776 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:33,776 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:33,777 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,777 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:33,777 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,777 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:33,778 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,778 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:33,778 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,778 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:33,778 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,779 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:33,779 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,779 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:33,779 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,779 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:33,780 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:33,780 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:33,780 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:33,780 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:33,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:33,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,786 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:33,786 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:33,786 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:33,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,787 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:33,787 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:33,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:33,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,788 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:33,789 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:33,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:33,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,790 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:33,791 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:33,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,791 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:33,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,792 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:33,792 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:33,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:33,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,793 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:33,793 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:33,794 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:33,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,794 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:33,794 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:33,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:33,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,796 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:33,796 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:33,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,796 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:33,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,797 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:33,797 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:33,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:33,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,798 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:33,798 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:33,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:33,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,799 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:33,799 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:33,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,800 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:33,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,801 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:33,801 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:33,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:33,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,802 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:33,802 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:33,802 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:33,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,803 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:33,803 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:33,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,804 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:33,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,804 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:33,804 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:33,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,805 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:33,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,806 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:33,806 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:33,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,806 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:33,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,807 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:33,807 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:33,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:33,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,808 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:33,808 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:33,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:33,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,810 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:33,810 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:33,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,810 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:33,810 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:33) method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:33) method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:33,811 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:33,812 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:33,812 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:33,812 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:33,812 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:33,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,825 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:33,829 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:33,830 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,830 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:33,830 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:33,832 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:33,832 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:33,833 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:33,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,833 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:33,833 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,834 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:33,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,835 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:33,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,835 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:33,836 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,836 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:33,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,836 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:33,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,838 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:33,838 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,838 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:33,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,838 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:33,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,839 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:33,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,839 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:33,840 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,840 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:33,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,840 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:33,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,841 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:33,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,841 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:33,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,842 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:33,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,843 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:33,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,843 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:33,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,844 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:33,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,844 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:33,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,845 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:33,845 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:33,845 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:33,853 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:33,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,854 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:33,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,855 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:33,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,855 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:33,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,856 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:33,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,857 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:33,857 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:33,860 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:33,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,860 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:33,860 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:33,866 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:33,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:33,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,872 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:33,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:33,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,873 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:33,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:33,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,873 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:33,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:33,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,874 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:33,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:33,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,874 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:33,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:33,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,874 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:33,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:33,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,875 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:33,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:33,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,875 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:33,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:33,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,876 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:33,876 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:33,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,876 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:33,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:33,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,877 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:33,879 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:33,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,879 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:33,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:33,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,880 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:33,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:33,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,881 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:33,881 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:33,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,882 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:33,882 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:33,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,882 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:33,882 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:33,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,882 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:33,882 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:33,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,883 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:33,883 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:33,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,884 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:33,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:33,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,884 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:33,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:33,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,885 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:33,885 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:33,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,885 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:33,885 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:33,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,885 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:33,886 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:33,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,886 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:33,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:33,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,886 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:33,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:33,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,887 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:33,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:33,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,887 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:33,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:33,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,887 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:33,887 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:33,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,888 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:33,888 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:33,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,888 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:33,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:33,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,889 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:33,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:33,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,889 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:33,890 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:33,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,890 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:33,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:33,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,891 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:33,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:33,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,892 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:33,892 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:33,892 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,896 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:33,897 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:33,897 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:33,897 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:33,897 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:42:33,897 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:33,898 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,898 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:33,899 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,899 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:42:33,899 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,899 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:33,900 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,900 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:33,900 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,900 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:42:33,901 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,901 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:33,901 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,902 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:33,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,902 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:33,902 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:33,902 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:33,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,903 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:33,903 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:33,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,914 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:33,915 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:42:33,915 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,915 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,915 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:42:33,915 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:42:33,918 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:42:33,919 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:33,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,919 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:33,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,920 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:33,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:42:33,921 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:42:33,922 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:33,922 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:42:33,922 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:33,923 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:33,923 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:33,923 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:33,926 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:33,926 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:33,928 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:33,929 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:33,930 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:33,931 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:42:33,931 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:42:33,932 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:33,932 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:33,933 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:33,934 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:33,934 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:33,934 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:33,936 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:33,936 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:33,936 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:33,937 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:33,937 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:33,937 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:33,937 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:42:33,937 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:33,937 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:33,940 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:33,940 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:33,940 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,940 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:33,940 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,941 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:42:33,942 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:42:33,942 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:33,944 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:33,944 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:42:33,944 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:42:33,945 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,945 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:42:33,945 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:33,948 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,949 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:42:33,949 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:33,951 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:42:33,951 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:42:33,953 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:42:33,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,954 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:42:33,954 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:42:33,954 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:42:33,955 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:33,955 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:42:33,955 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:42:33,955 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:42:33,955 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:33,955 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:42:33,955 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:42:33,956 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,956 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,956 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:33,956 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:33,958 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:33,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,958 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:33,958 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:33,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:33,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:33,962 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:42:33,962 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:33,967 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:42:33,967 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:42:33,985 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:42:33,989 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:42:33,989 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:42:33,991 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,992 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,993 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,994 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,997 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,998 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:33,999 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:33,1000 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:42:34,003 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:34,003 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:34,003 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:42:34,007 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:34,007 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:34,056 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,056 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:42:34,058 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,058 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:42:34,060 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,060 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:42:34,062 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:34,062 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:42:34,064 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:34,065 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:42:34,133 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,133 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:42:34,135 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,135 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:42:34,137 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,137 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:42:34,139 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,139 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:42:34,141 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,141 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:42:34,143 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,143 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:42:34,145 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,145 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:42:34,147 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,148 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:42:34,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:34,150 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:42:34,152 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:34,152 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:42:34,185 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,185 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:42:34,187 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,188 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:42:34,190 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,190 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:42:34,192 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,192 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:42:34,194 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:42:34,194 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:34,196 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,196 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:42:34,198 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:34,198 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:42:34,201 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:34,201 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:42:34,233 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,233 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:42:34,236 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,236 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:42:34,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,238 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:42:34,240 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,241 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:42:34,243 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,243 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:42:34,244 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,245 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:42:34,247 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,247 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:42:34,249 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,249 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:42:34,251 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,251 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:42:34,253 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,254 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:42:34,255 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,256 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:42:34,258 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:34,258 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:42:34,260 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:34,264 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:34,265 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:34,268 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:34,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:34,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,269 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:34,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:34,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,270 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:34,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:34,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,270 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:34,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:34,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,271 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:34,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:34,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,271 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:34,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:34,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,272 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:42:34,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:34,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,272 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:34,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:34,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,273 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:42:34,273 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:34,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,273 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:34,273 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:34,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,274 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:34,274 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:34,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,274 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:34,274 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:34,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,275 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:42:34,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:34,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,275 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:34,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:34,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,276 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:42:34,276 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:34,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,276 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:34,276 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:34,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,277 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:34,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:34,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,277 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:34,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:34,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,278 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:34,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:34,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,278 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:34,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:34,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,279 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:34,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,279 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,279 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:34,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:34,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,279 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:34,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:34,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,280 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:34,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:34,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,280 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:34,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:34,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,280 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:34,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:34,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,280 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:34,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:34,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,281 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:34,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:34,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,281 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:34,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:34,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,281 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:34,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:34,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,281 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:34,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:34,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,282 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:42:34,282 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:34,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,282 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:34,282 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:34,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,282 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:34,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:34,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,282 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:42:34,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:34,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,283 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:34,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:42:34,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,284 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:42:34,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:42:34,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,284 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:42:34,284 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:34,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,285 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:34,285 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:34,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,285 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:42:34,285 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:34,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,285 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:42:34,285 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:34,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,285 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:34,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:34,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,286 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:34,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:34,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,286 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:34,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:34,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,286 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:34,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:34,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,286 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:34,286 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:34,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,287 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:42:34,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:34,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,287 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:34,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:34,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,287 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:34,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:34,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,287 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:34,287 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:34,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,288 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:34,288 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:34,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,288 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:34,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:34,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,288 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:34,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:34,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,288 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:34,288 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:34,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,289 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:34,289 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:34,289 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,289 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:42:34,289 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:34,289 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:34,331 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:42:34,331 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:42:34,333 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:34,333 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:34,333 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:42:34,333 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:34,339 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:42:34,339 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:34,341 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:42:34,341 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:34,343 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:34,343 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:34,345 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:34,346 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:34,346 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:34,346 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:34,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,346 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,347 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:34,347 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:34,347 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,347 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:34,347 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,347 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:34,348 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:34,350 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:42:34,350 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:34,352 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,353 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,353 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,353 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,353 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,354 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,354 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,354 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,354 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,354 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,355 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,355 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,355 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,355 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,355 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,356 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,356 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,356 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,356 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,356 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,357 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,357 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,357 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,357 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,358 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,358 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,358 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,358 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,358 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,359 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,359 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,359 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,359 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,359 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,361 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,361 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,361 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:42:34,364 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:42:34,368 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,368 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,368 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,369 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,370 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,371 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,372 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:34,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,372 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:34,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,372 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,373 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,373 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,373 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:34,374 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,374 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,374 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:42:34,375 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:34,375 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:34,375 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:34,377 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:42:34,378 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5,5] +01/30/13 11:42:34,380 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:34,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:34,381 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:34,383 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,383 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,383 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,384 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,384 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,384 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,384 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,385 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,385 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,385 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,386 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,386 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,386 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,387 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,387 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,387 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,388 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,388 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,388 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,388 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,389 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,389 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,389 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,389 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,390 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,390 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,391 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,391 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,391 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,391 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,392 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,392 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,392 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,393 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,393 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,393 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,393 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,394 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,397 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,397 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,397 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,398 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,398 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,398 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,398 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,398 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:34,401 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,401 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,401 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,402 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,402 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,402 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,402 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,403 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,403 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,403 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,403 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,403 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,404 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,404 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,404 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,404 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,405 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,405 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,405 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,405 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,406 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,406 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,406 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,406 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,407 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,407 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,408 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,408 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,408 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,408 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,409 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,409 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,409 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,409 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,410 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,410 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,410 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,410 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,413 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,414 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,414 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,414 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,414 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,414 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,414 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:34,417 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,417 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,417 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,417 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,418 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,418 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,418 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,419 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,419 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,419 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,419 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,419 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,420 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,420 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,420 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,420 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,421 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,421 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,421 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,421 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,422 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,422 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,422 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,422 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,423 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,423 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,423 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,424 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,424 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,424 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,424 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,425 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,425 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,425 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,425 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,425 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,426 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,426 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,429 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,429 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,430 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,430 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,430 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,430 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,430 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:34,432 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,433 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,433 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,433 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,434 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,434 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,434 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,434 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,435 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,435 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,435 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,435 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,436 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,436 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,436 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,436 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,437 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,437 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,437 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,437 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,438 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,438 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,438 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,438 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,439 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,439 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,439 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,439 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,440 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,440 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,440 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,441 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,441 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,441 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,441 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,441 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,441 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,442 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,445 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,445 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,445 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,445 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,446 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,446 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,446 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,446 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:34,448 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,448 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,448 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,449 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,449 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,449 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,450 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,450 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,450 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,451 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,451 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,451 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,451 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,452 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,452 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,452 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,452 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,453 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,453 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,453 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,454 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,454 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,454 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,454 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,455 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,456 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,456 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,456 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,457 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,457 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,457 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,458 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,461 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,461 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,461 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,461 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,462 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,462 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,462 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:42:34,464 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,464 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,464 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,465 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,465 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,465 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,465 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,466 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,466 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,467 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,467 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,467 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,467 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,468 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,468 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,468 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,468 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,469 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,469 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,469 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,469 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,470 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,470 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,470 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,470 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,471 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,471 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,471 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,471 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,471 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,472 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,472 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,472 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,473 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,473 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,473 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,473 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,474 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,477 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,477 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,477 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,477 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,478 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,478 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,478 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:42:34,480 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,480 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,480 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,481 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,481 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,481 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,481 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,482 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,482 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,483 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,483 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,483 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,483 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,484 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,484 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,484 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,484 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,485 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,485 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,485 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,485 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,486 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,486 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,486 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,487 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,488 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,488 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,488 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,489 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,489 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,489 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,490 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,493 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,493 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,493 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,493 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,494 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,494 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,494 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:42:34,496 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,496 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,496 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,497 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,497 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,497 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,497 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,498 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,498 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,498 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,499 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,499 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,499 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,499 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,500 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,500 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,500 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,500 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,501 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,501 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,501 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,502 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,502 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,502 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,502 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,503 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,503 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,503 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,504 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,504 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,504 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,505 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,505 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,505 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,506 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,509 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,509 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,509 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,509 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,509 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,509 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,510 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:42:34,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,512 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,512 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,513 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,513 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,513 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,513 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,514 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,514 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,514 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,514 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,515 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,515 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,515 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,515 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,516 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,516 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,516 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,516 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,517 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,517 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,517 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,518 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,518 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,519 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,519 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,519 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,520 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,520 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,520 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,520 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,521 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,521 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,521 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,521 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,525 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,525 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,525 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,525 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,526 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,526 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,526 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:42:34,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,528 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,529 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,529 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,529 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,529 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,530 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,530 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,531 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,531 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,531 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,531 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,532 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,532 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,532 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,533 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,533 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,534 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,534 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,534 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,534 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,535 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,535 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,535 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,536 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,536 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,536 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,537 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,537 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,537 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,537 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,538 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,541 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,541 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,541 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,541 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,541 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,541 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,542 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,542 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,542 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:34,544 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,544 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,544 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,545 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,545 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,545 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,545 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,546 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,546 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,546 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,546 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,547 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,547 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,547 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,547 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,548 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,548 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,548 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,548 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,549 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,549 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,549 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,549 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,550 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,550 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,550 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,551 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,551 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,551 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,551 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,552 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,552 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,552 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,553 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,553 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,554 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,557 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,557 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,557 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,557 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,558 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,558 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,558 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:34,560 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,560 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,560 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,561 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,561 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,561 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,561 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,562 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,562 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,563 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,563 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,563 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,563 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,564 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,564 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,564 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,564 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,565 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,565 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,565 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,565 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,566 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,566 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,566 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,566 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,567 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:34,567 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,567 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,567 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,567 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,568 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,568 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:34,568 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:34,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,569 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:34,569 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:34,569 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:34,570 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:34,573 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:34,573 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:34,573 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,573 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:34,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,574 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:34,574 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:34,574 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:34,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,576 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:34,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,576 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:34,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,577 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:34,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,577 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:34,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,577 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:34,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,578 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:34,578 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:42:34,578 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:42:34,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,578 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:34,578 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,578 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,580 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,581 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:34,581 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,581 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,583 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,583 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:34,583 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,583 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,585 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,585 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:34,585 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,585 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,587 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,587 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:34,587 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,587 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,589 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,589 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:34,589 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,589 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,591 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,591 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:34,591 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,591 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,593 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,593 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:34,593 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,593 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,595 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,595 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,595 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,595 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:34,595 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,595 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,597 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,597 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,597 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,597 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,598 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,598 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:34,598 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,598 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,600 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,600 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:34,600 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,600 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,601 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,602 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:34,602 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,602 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,605 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,605 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,605 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,606 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:34,606 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,606 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,608 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,608 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:34,609 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,609 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,611 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,611 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:34,611 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,611 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,613 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,613 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:34,613 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,613 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,616 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,616 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:34,616 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,616 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,618 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,618 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:34,618 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,618 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,620 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,620 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:34,620 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,620 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,622 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,622 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:34,622 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,622 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,626 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,626 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:42:34,626 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,626 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,628 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,629 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:42:34,629 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,629 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,631 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,631 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:34,631 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,631 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:34,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,633 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:34,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,633 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:34,633 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,633 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,635 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,635 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:34,635 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,635 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,637 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,637 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:34,638 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,638 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,640 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,640 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:34,640 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,640 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,642 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,642 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:34,643 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,643 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,644 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,644 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:34,645 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,645 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,646 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,646 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:34,647 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,647 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,648 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,648 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:34,648 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,648 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,650 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,650 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:34,650 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,650 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,652 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,652 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:34,652 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,652 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,654 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,654 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:34,654 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,654 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,655 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,656 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:34,656 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,656 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:34,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,657 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:34,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,658 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:34,658 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:34,658 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:42:34,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,659 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:34,659 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:42:34,659 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:42:34,659 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,660 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:42:34,660 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:42:34,660 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:42:34,663 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:42:34,663 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:42:34,663 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:42:34,663 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:34,665 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:42:34,665 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:42:34,665 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:42:34,665 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,665 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:42:34,665 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:42:34,677 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:42:34,677 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:42:34,677 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:34,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,682 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:34,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,682 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:34,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,682 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:34,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,682 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:34,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,683 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:34,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,683 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:34,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,683 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:34,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,684 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:34,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,684 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:34,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,684 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:34,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,685 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:34,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,685 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:34,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,685 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:34,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,685 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:34,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,686 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:34,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,686 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:34,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,686 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:34,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,687 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:34,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,687 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:34,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,687 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:34,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,688 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:34,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,688 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:34,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,688 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:34,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,688 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:34,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,689 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:34,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,689 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:34,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,689 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:34,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,690 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:34,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,690 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:34,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,690 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:34,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,691 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:34,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,691 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:34,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,691 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:34,692 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,692 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:42:34,692 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:42:34,694 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:42:34,694 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:42:34,694 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:42:34,694 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:42:34,694 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:42:34,694 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:42:34,694 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:34,700 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:34,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:34,700 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:42:34,700 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:42:34,703 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:34,703 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:34,704 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:42:34,704 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:42:34,704 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:34,706 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:42:34,706 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:34,706 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:34,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,710 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,710 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:42:34,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,710 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:42:34,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,711 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,711 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,711 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,712 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,712 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,712 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,713 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,713 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,716 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:34,716 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:34,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,716 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:42:34,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,716 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:42:34,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,717 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:42:34,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,717 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:42:34,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,718 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:42:34,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,718 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:42:34,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,718 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:42:34,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,718 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:42:34,721 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:34,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:34,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,722 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:34,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,722 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,722 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:34,723 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:34,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:34,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,723 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:34,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:34,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:34,723 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:42:34,724 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:34,724 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:34,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,246 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:37,371 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:37,371 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:37,372 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:37,372 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:37,372 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '139', +) +01/30/13 11:42:37,372 [1520] INFO index - About to take action DetailView +01/30/13 11:42:37,373 [1520] DEBUG index - in DetailView +01/30/13 11:42:37,373 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:42:37,373 [1520] INFO index - current module is Accounts +01/30/13 11:42:37,411 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:37,411 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:37,411 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:37,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:37,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:37,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,412 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:37,412 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:37,424 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:37,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,424 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:37,424 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:37,424 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:37,425 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:37,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,426 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:37,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,426 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:37,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,427 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,427 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,428 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:37,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,428 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:37,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,428 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:37,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,429 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:37,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,429 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:37,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,430 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:37,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,430 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:37,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,431 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:37,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,431 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:37,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,432 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:37,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,432 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,433 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,433 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,434 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,434 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,435 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,435 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,435 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,436 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,436 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,437 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:37,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,437 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:37,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,437 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:37,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,438 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:37,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,438 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:37,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,439 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:37,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,439 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:37,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,440 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:37,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,440 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:37,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,441 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:37,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,441 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:37,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,442 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:37,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,442 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:37,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,443 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:37,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,443 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:37,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,444 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:37,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,444 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:37,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,444 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:37,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,445 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:37,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,445 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:37,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,446 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:37,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,446 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:37,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,447 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:37,451 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:37,451 [1520] DEBUG index - Prepared sql query parameters : [322,1,Accounts,DetailView,139,2013-01-30 11:42:37] +01/30/13 11:42:37,454 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:37,454 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:37,454 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:37,455 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:37,456 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:37,457 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:37,458 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:37,458 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:37,460 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:37,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,461 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:37,461 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:37,461 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,461 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,462 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:37,462 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:37,470 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,470 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:37,471 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:42:37,471 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:42:37,471 [1520] DEBUG index - Prepared sql query parameters : [1,139] +01/30/13 11:42:37,474 [1520] INFO index - in track view method Accounts +01/30/13 11:42:37,474 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,474 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:37,476 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:42:37,476 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,478 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:37,478 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:37,478 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,139,OSSEZ 1] +01/30/13 11:42:37,494 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:37,494 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:37,495 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:42:37,496 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:37,496 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:37,496 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:37,496 [1520] DEBUG index - including headers +01/30/13 11:42:37,496 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:37,497 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:37,500 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,500 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,502 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:42:37,502 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:42:37,502 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,505 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:42:37,505 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:37,506 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:37,506 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,506 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:37,506 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,506 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:37,507 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,507 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:37,507 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,507 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:37,508 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,508 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:37,508 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,508 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:37,508 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,509 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:37,509 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:37,509 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:37,509 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:37,509 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:37,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,520 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:37,520 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:37,520 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:37,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,521 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:37,521 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:37,522 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:37,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,522 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:37,523 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:37,523 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:37,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,524 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:37,524 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:37,525 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,525 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:37,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,525 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:37,526 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:37,526 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:37,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,527 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:37,527 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:37,528 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:37,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,528 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:37,528 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:37,529 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:37,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,529 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:37,530 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:37,530 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,530 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:37,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,531 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:37,531 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:37,531 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:37,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,532 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:37,532 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:37,533 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:37,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,533 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:37,533 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:37,534 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,534 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:37,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,534 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:37,535 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:37,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:37,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,536 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:37,536 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:37,536 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:37,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,537 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:37,537 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:37,538 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,538 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:37,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,538 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:37,538 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:37,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,539 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:37,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,539 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:37,540 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:37,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,540 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:37,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,541 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:37,541 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:37,542 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:37,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,542 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:37,542 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:37,543 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:37,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,544 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:37,544 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:37,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,544 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:37,544 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:37) method ... +01/30/13 11:42:37,545 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:37,545 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:37) method ... +01/30/13 11:42:37,545 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:37,545 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:37,545 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:37,547 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:37,547 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:37,547 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:37,550 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,550 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,550 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,551 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,552 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,553 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,554 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,555 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,556 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,557 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,558 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,559 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:37,563 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:37,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,564 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:37,564 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,566 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,566 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,567 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:37,567 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,567 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:37,567 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,567 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,568 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:37,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,569 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:37,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,569 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,570 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,571 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:37,572 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,572 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:37,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,572 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:37,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,573 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:37,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,573 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:37,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,574 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:37,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,574 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:37,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,575 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:37,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,575 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:37,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,576 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:37,577 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,577 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:37,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,577 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:37,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,578 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:37,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,578 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:37,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,579 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:37,579 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:37,579 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,582 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:37,583 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,583 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:37,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,584 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:37,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,585 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:37,585 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,585 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:37,586 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,586 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:37,586 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:37,589 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:37,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,589 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:37,589 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:37,592 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:37,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,600 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:37,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,601 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:37,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:37,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,602 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:37,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,602 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:37,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,602 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:37,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:37,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,602 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:37,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:37,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,603 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:37,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:37,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,603 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:37,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:37,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,604 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:37,604 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:37,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,604 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:37,604 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:37,605 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,605 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:37,607 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:37,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,608 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:37,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:37,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,608 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:37,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:37,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,609 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:37,609 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:37,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,609 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:37,609 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:37,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,610 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:37,610 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:37,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,610 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:37,610 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:37,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,611 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:37,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:37,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,612 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:37,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:37,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,612 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:37,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:37,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,613 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:37,613 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:37,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,613 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:37,613 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:37,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,613 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:37,613 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:37,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,613 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:37,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:37,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,614 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:37,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:37,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,614 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:37,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:37,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,614 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:37,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:37,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,615 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:37,615 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:37,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,615 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:37,616 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:37,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,616 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:37,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:37,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,616 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:37,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:37,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,617 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:37,617 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:37,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,618 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:37,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:37,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,618 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:37,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,619 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:37,619 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:37,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,622 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:37,622 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:37,622 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,622 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,622 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:37,622 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:42:37,622 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,625 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:42:37,625 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,627 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:42:37,628 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,629 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:42:37,629 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,631 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:42:37,631 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,633 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,634 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:42:37,634 [1520] DEBUG index - id is 139 +01/30/13 11:42:37,634 [1520] DEBUG index - name is OSSEZ 1 +01/30/13 11:42:37,634 [1520] INFO index - Account detail view +01/30/13 11:42:37,634 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:42:37,635 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,635 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:42:37,635 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:37,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,637 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:37,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,638 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:42:37,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,638 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:37,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,638 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:37,639 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:42:37,639 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:42:37,649 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:42:37,650 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:42:37,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,650 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:37,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,651 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,651 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:42:37,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,652 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:37,652 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,652 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,653 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:42:37,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,653 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:37,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,654 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,654 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:42:37,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,655 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:37,655 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,655 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,656 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:42:37,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,657 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:37,657 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,657 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,657 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,657 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:42:37,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,658 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:37,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,658 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,658 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,659 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:42:37,659 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:42:37,659 [1520] INFO index - in getAccountName 8 +01/30/13 11:42:37,659 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:42:37,660 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:37,661 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:42:37,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,662 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:37,662 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,662 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,662 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,662 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:42:37,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,663 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:37,663 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,663 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,663 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,664 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:42:37,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,664 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:37,665 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,665 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,665 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,665 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:42:37,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,666 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:37,666 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,666 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,666 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,667 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:42:37,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,667 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:37,668 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,668 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,668 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,668 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:42:37,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,669 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:37,669 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,669 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,669 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,670 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:42:37,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,671 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:37,671 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:37,671 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:37,671 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:42:37,671 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:42:37,671 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:42:37,673 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:42:37,673 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:42:37,673 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:42:37,676 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:37,676 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:37,676 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,676 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:37,680 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 322 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:37,681 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,681 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,683 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,683 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:37,683 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,683 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:37,687 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,687 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:37,687 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,687 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:37,694 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,695 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:37,695 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:37,695 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:42:37,698 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:37,698 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:42:37,727 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:42:37,728 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:42:37,729 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:42:37,729 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:42:37,729 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:37,729 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:42:37,729 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:37,730 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:42:37,730 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:42:37,730 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:42:37,730 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:42:37,730 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,731 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,731 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,732 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:42:37,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,733 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:37,734 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:37,734 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:37,734 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:37,734 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:37,734 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,734 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:37,739 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 322 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:37,741 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,741 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,744 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,744 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:37,744 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,744 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:37,748 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,748 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:37,748 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,749 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:37,753 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,753 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:37,753 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:37,753 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:42:37,755 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:37,756 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:37,769 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:37,769 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:42:37,769 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:42:37,769 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:42:37,769 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:42:37,770 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:42:37,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,770 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,771 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:42:37,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,773 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:37,773 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:37,773 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:37,773 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:37,773 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:37,774 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,774 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:37,778 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 322 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:37,780 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,780 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,783 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,783 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:37,783 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,783 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:37,787 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,788 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:37,788 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:37,788 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:37,792 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:37,792 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:37,792 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:37,792 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:42:37,794 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:37,794 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:37,811 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:37,811 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:42:37,811 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:42:37,811 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:37,812 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:37,813 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,813 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,813 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,813 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:42:37,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,814 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:37,815 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,815 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,815 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,815 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:42:37,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,816 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:37,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,817 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,817 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:42:37,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,818 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:37,818 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:42:37,818 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:42:37,819 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:42:37,819 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:37,821 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:42:37,821 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:42:37,821 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:42:37,822 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:42:37,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,822 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,823 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:42:37,823 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:42:37,823 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:42:37,825 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:42:37,825 [1520] INFO index - in getOwnerName 5 +01/30/13 11:42:37,826 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:37,826 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,826 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,828 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:37,829 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:42:37,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,831 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:37,831 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,831 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,831 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:37,831 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:37,833 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:37,833 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:37,834 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:37,834 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:37,834 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:37,836 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,837 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,839 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,839 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,842 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:37,842 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:37,842 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:42:37,842 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:37,842 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:42:37,842 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:37,842 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:37,843 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:37,843 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:37,845 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:37,845 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:37,845 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,846 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,847 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:42:37,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,848 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:37,848 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,848 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,848 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,849 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:42:37,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,850 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:42:37,850 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:42:37,850 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:37,850 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:42:37,850 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:37,851 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,851 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,851 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,851 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:42:37,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,852 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:42:37,852 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,853 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,854 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:42:37,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,855 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:37,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,855 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,856 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:42:37,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,857 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:37,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,857 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,858 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:42:37,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,859 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:37,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,859 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,860 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:42:37,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,861 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:37,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,861 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,862 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:42:37,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,862 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:37,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,863 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,863 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:42:37,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,864 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:37,864 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,865 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,865 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,865 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:42:37,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,866 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:37,866 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,866 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,866 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,867 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:42:37,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,868 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:37,868 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,868 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,868 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,869 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:42:37,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,870 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:37,870 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,870 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,870 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,871 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:42:37,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,872 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:37,872 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,872 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,872 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,873 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:42:37,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,874 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:37,874 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,874 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,874 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,875 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:42:37,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,875 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:37,876 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,876 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,876 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,876 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:42:37,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,877 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:37,877 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:37,877 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:37,878 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:37,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,878 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:37,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,878 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:37,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,879 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:37,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,879 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:37,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,879 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:37,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,879 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:37,880 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:42:37,880 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:42:37,880 [1520] DEBUG index - Entering updateInfo(139) method ... +01/30/13 11:42:37,880 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:42:37,880 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:37,882 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:42:37,882 [1520] INFO index - in getOwnerName 1 +01/30/13 11:42:37,882 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:37,882 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:37,883 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:37,885 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:37,885 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,887 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:42:37,887 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:37,887 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:42:37,888 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:42:37,888 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,888 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:42:37,888 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:37,888 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:37,889 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:42:37,889 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,892 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:42:37,892 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,892 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,139) method ... +01/30/13 11:42:37,893 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,893 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:37,893 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,893 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:37,893 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:37,896 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:37,896 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:37,896 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,896 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:37,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,897 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:37,897 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,897 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,898 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:37,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,899 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:42:37,899 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:37,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,904 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:42:37,904 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:42:37,922 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:37,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,923 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:42:37,923 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:42:37,923 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:37,925 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:42:37,925 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,925 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:37,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,925 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:42:37,925 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:37,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,928 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:37,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,929 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:37,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,929 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:37,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,929 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:37,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,930 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:37,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,930 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:37,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,930 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:37,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,931 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:37,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,931 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:37,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,931 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:37,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,932 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:37,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,932 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:37,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,932 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:37,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,933 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:37,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,933 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:37,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,933 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:37,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,934 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:37,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,934 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:37,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,934 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:37,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,935 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:37,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,935 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:37,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,935 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:37,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,935 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:37,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,936 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:37,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,936 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:37,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,936 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:37,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,937 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:37,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,937 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:37,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,937 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:37,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,938 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:37,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,938 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:37,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,938 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:37,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,939 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:37,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,939 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:37,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,939 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:37,940 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:42:37,940 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:42:37,940 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:42:37,940 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:37,940 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,940 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:37,941 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,941 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:42:37,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,942 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:37,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,942 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:37,943 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,943 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:42:37,943 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,943 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:37,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,944 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:37,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,945 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:37,945 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:42:37,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,946 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:37,946 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:42:37,947 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:37,949 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:37,949 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:42:37,949 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:37,951 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,951 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:42:37,951 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:37,955 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:37,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:37,955 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:37,955 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:37,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,959 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:42:37,959 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:42:37,969 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:37,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,969 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:37,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,969 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:37,970 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:37,970 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:42:37,970 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:37,970 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,970 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:37,971 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:42:37,971 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:42:37,139,1] +01/30/13 11:42:37,973 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:37,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:37,974 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:42:37,974 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:42:37,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,983 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,983 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:37,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,983 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:37,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,984 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,984 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,984 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,985 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,985 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,986 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:37,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,986 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:37,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,986 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:37,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,987 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:37,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,987 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:37,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,987 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:37,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,988 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:42:37,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,988 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:37,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,988 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:42:37,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,989 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:37,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,989 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:42:37,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,989 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:37,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,989 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:37,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,990 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:37,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,990 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:37,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,990 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:37,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,991 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:37,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,991 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:37,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:37,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:37,991 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:42:38,088 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,088 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,088 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,088 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,088 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:42:38,089 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:38,091 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:38,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,092 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:38,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,092 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:42:38,092 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,092 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,092 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,093 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,093 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:42:38,093 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:42:38,096 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:42:38,096 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:42:38,096 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:42:38,096 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:38,096 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,097 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:38,097 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,097 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:38,097 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:42:38,105 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:38,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,105 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,105 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:42:38,106 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:42:38,106 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:42:38,106 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:38,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,106 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:38,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,106 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:38,106 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:38,117 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:38,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,117 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,117 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,117 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,117 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,118 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,118 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,118 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,118 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,118 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,119 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:42:38,119 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:42:38,119 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:38,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,119 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:38,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,119 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:38,119 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:38,127 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:38,127 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,127 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,128 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,129 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,129 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,129 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,129 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,130 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:38,130 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:38,131 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:38,131 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,131 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:38,131 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:42:38,131 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:38,132 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:42:38,132 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:38,157 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,157 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:42:38,157 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:38,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,158 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:42:38,158 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:38,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:38,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:38,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,158 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:38,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:38,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:38,158 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:38,159 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:38,159 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:38,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,244 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:40,380 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:40,380 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:40,380 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:40,380 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:40,381 [1520] DEBUG index - array ( + 'module' => 'Documents', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'return_id' => '139', + 'parent_id' => '139', +) +01/30/13 11:42:40,381 [1520] INFO index - About to take action EditView +01/30/13 11:42:40,381 [1520] DEBUG index - in EditView +01/30/13 11:42:40,381 [1520] INFO index - current page is modules/Documents/EditView.php +01/30/13 11:42:40,381 [1520] INFO index - current module is Documents +01/30/13 11:42:40,418 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:40,418 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:40,418 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:40,418 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:40,418 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,419 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:40,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,419 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:40,419 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:40,430 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:40,430 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,430 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:40,430 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:40,430 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:40,431 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:40,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,432 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:40,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,432 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:40,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,432 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:40,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,433 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:40,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,433 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:40,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,434 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:40,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,434 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:40,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,435 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:40,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,435 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:40,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,436 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:40,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,436 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:40,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,437 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:40,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,437 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:40,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,437 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:40,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,438 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:40,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,438 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:40,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,439 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:40,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,439 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:40,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,440 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:40,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,440 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:40,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,441 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:40,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,441 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,442 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:40,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,443 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:40,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,443 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:40,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,444 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:40,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,444 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:40,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,445 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:40,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,445 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:40,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,446 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:40,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,446 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:40,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,447 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:40,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,447 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:40,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,448 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:40,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,448 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:40,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,449 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:40,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,449 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:40,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,449 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:40,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,450 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:40,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,450 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:40,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,451 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:40,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,451 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:40,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,452 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:40,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,452 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:40,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,453 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:40,458 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:40,458 [1520] DEBUG index - Prepared sql query parameters : [323,1,Documents,EditView,,2013-01-30 11:42:40] +01/30/13 11:42:40,461 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:40,461 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:40,462 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:40,462 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:40,464 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:40,464 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:40,466 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:40,466 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:40,467 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:40,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,468 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:40,468 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:40,468 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:40,468 [1520] DEBUG index - including headers +01/30/13 11:42:40,468 [1520] DEBUG index - Entering getParentTabFromModule(Documents) method ... +01/30/13 11:42:40,469 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:40,472 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:40,472 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:40,474 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:40,475 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:40,475 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,476 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:40,476 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,476 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:40,476 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,476 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:40,477 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,477 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:40,477 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,477 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:40,478 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,478 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:40,478 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,478 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:40,478 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:40,479 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:40,479 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:40,479 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:40,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:40,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,488 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:40,488 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:40,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:40,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,489 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:40,489 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:40,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:40,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,490 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:40,490 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:40,491 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:40,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,492 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:40,492 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:40,493 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,493 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:40,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,493 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:40,493 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:40,494 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:40,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,495 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:40,495 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:40,495 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,496 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:40,496 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:40,496 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:40,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,497 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:40,497 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:40,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,497 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:40,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,498 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:40,498 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:40,499 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:40,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,499 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:40,499 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:40,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:40,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,501 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:40,501 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:40,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,501 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:40,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,502 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:40,502 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:40,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:40,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,503 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:40,503 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:40,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:40,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,504 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:40,504 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:40,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,505 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:40,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,505 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:40,506 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:40,506 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,506 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:40,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,507 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:40,507 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:40,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,507 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:40,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,508 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:40,508 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:40,509 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:40,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,510 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:40,510 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:40,510 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:40,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,511 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:40,511 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:40,511 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,511 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:40,511 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:40) method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:40) method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:40,512 [1520] DEBUG index - Entering getParentTabFromModule(Documents) method ... +01/30/13 11:42:40,513 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:40,513 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:40,513 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:40,513 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:40,517 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,517 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,517 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,517 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,517 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,519 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,520 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,521 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,522 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,525 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:40,530 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:40,531 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,531 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:40,531 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:40,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:40,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:40,533 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:40,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,534 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:40,534 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,534 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:40,534 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,534 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:40,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,535 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:40,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,535 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:40,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,537 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:40,537 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,537 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:40,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,537 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:40,538 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,538 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:40,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,538 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,539 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:40,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,540 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:40,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,540 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:40,541 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,541 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:40,541 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,541 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,542 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:40,543 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,543 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:40,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,543 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:40,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,545 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:40,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,545 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:40,545 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:40,545 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:40,549 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:40,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,550 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:40,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,551 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:40,551 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,551 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:40,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,552 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:40,552 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,553 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:40,553 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:40,555 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:40,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,555 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:40,555 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:40,559 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:40,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,565 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:40,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,565 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:40,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:40,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,566 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:40,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:40,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,566 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:40,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:40,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,566 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:40,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:40,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,567 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:40,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:40,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,567 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:40,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,567 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:40,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,568 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:40,568 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:40,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,568 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:40,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:40,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,569 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:40,571 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:40,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,572 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:40,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:40,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,572 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:40,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:40,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,573 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:40,573 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:40,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,573 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:40,574 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:40,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,574 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:40,574 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:40,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,574 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:40,574 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:40,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,575 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:40,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:40,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,575 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:40,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:40,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,576 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:40,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:40,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,577 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:40,577 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:40,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,577 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:40,577 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:40,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,577 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:40,577 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:40,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,578 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:40,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:40,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,578 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:40,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:40,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,579 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:40,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:40,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,579 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:40,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:40,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,579 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:40,579 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:40,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,580 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:40,580 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:40,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,580 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:40,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:40,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,580 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:40,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:40,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,581 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:40,581 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:40,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,582 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:40,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:40,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,582 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:40,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,583 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:40,583 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:40,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,600 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:42:40,600 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:42:40,600 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:42:40,601 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,601 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,601 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:40,601 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:40,605 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,605 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,605 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:40,605 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:42:40,606 [1520] DEBUG index - Entering getRecordOwnerId(139) method ... +01/30/13 11:42:40,606 [1520] DEBUG index - Prepared sql query being executed : select smownerid from vtiger_crmentity where crmid = ? +01/30/13 11:42:40,606 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:40,608 [1520] DEBUG index - Prepared sql query being executed : select count(*) as count from vtiger_users where id = ? +01/30/13 11:42:40,608 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:42:40,610 [1520] DEBUG index - Exiting getRecordOwnerId method ... +01/30/13 11:42:40,610 [1520] DEBUG index - Entering get_user_array(true,Active,1,) method ... +01/30/13 11:42:40,610 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:40,610 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:40,611 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:40,613 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:40,613 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:40,615 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:40,615 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:40,616 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:40,617 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:40,617 [1520] DEBUG index - Entering setObjectValuesFromRequest(Documents) method ... +01/30/13 11:42:40,617 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:42:40,618 [1520] DEBUG index - Prepared sql query being executed : select filename from vtiger_notes where notesid = ? +01/30/13 11:42:40,618 [1520] DEBUG index - Prepared sql query parameters : [] +01/30/13 11:42:40,619 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:42:40,619 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:42:40,620 [1520] DEBUG index - Entering getBlocks(Documents,create_view,,Array,BAS) method ... +01/30/13 11:42:40,620 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,620 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,620 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:42:40,620 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:40,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,622 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 11:42:40,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,622 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 11:42:40,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,623 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 11:42:40,623 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:42:40,623 [1520] DEBUG index - Prepared sql query parameters : [8,17,84,18,BAS] +01/30/13 11:42:40,629 [1520] DEBUG index - Entering getBlockInformation(Documents,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +8,205,title,vtiger_notes,1,2,notes_title,Title,1,0,,100,1,17,1,V~M,0,1,BAS,0, +8,217,folderid,vtiger_notes,1,26,folderid,Folder Name,1,2,,100,2,17,1,V~O,2,2,BAS,0, +8,218,note_no,vtiger_notes,1,4,note_no,Document No,1,0,,100,3,17,1,V~O,3,,BAS,0, +8,209,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,4,17,1,V~M,0,3,BAS,0, +8,208,filename,vtiger_notes,1,28,filename,File Name,1,2,,100,3,18,1,V~O,3,,BAS,0, +8,210,notecontent,vtiger_notes,1,19,notecontent,Note,1,2,,100,1,84,1,V~O,1,,BAS,0, +,Array,8,Array) method ... +01/30/13 11:42:40,629 [1520] DEBUG index - Entering getOutputHtml(2,notes_title,Title,100,Array,1,Documents) method ... +01/30/13 11:42:40,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,630 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:42:40,630 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,631 [1520] DEBUG index - Entering getOutputHtml(26,folderid,Folder Name,100,Array,1,Documents) method ... +01/30/13 11:42:40,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,631 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:42:40,632 [1520] DEBUG index - Prepared sql query being executed : select foldername from vtiger_attachmentsfolder where folderid = ? +01/30/13 11:42:40,632 [1520] DEBUG index - Prepared sql query parameters : [] +01/30/13 11:42:40,633 [1520] DEBUG index - Prepared sql query being executed : select foldername,folderid from vtiger_attachmentsfolder order by foldername +01/30/13 11:42:40,635 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,636 [1520] DEBUG index - Entering getOutputHtml(4,note_no,Document No,100,Array,1,Documents) method ... +01/30/13 11:42:40,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,637 [1520] DEBUG index - function getTranslatedString(Document No) - translated to (文档编号) +01/30/13 11:42:40,637 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,637 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Documents) method ... +01/30/13 11:42:40,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,638 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:40,638 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:40,638 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:40,640 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:40,640 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:40,641 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:40,641 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:40,641 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:40,643 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:40,643 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:40,645 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:40,645 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:40,647 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:40,647 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:40,647 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:40,647 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:40,647 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:40,647 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:40,647 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:40,648 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:40,648 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:40,650 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:40,650 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:40,650 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:40,650 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:40,650 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:40,650 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:40,650 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,651 [1520] DEBUG index - Entering getOutputHtml(28,filename,File Name,100,Array,1,Documents) method ... +01/30/13 11:42:40,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,651 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:42:40,651 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,652 [1520] DEBUG index - Entering getOutputHtml(19,notecontent,Note,100,Array,1,Documents) method ... +01/30/13 11:42:40,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,653 [1520] DEBUG index - function getTranslatedString(Note) - translated to (描述) +01/30/13 11:42:40,653 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:42:40,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,653 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 11:42:40,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,653 [1520] DEBUG index - function getTranslatedString(LBL_NOTE_INFORMATION) - translated to (基本信息) +01/30/13 11:42:40,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,653 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 11:42:40,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,654 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION) - translated to (详细信息) +01/30/13 11:42:40,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,654 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 11:42:40,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,654 [1520] DEBUG index - function getTranslatedString(LBL_FILE_INFORMATION) - translated to (附件信息) +01/30/13 11:42:40,654 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:42:40,654 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:42:40,654 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:40,655 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:40,655 [1520] DEBUG index - Entering getParentTabFromModule(Documents) method ... +01/30/13 11:42:40,655 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:40,655 [1520] INFO index - Document detail view +01/30/13 11:42:40,656 [1520] DEBUG index - Entering getFieldVisibilityPermission(Documents,1,notecontent) method ... +01/30/13 11:42:40,656 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,656 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:40,659 [1520] DEBUG index - Entering Button_Check(Documents) method ... +01/30/13 11:42:40,659 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:40,659 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,660 [1520] DEBUG index - Entering isPermitted(Documents,index,) method ... +01/30/13 11:42:40,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,660 [1520] DEBUG index - Entering isPermitted(Documents,Import,) method ... +01/30/13 11:42:40,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,661 [1520] DEBUG index - Entering isPermitted(Documents,Export,) method ... +01/30/13 11:42:40,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,661 [1520] DEBUG index - Entering isPermitted(Documents,Merge,) method ... +01/30/13 11:42:40,662 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,662 [1520] DEBUG index - Entering isPermitted(Documents,DuplicatesHandling,) method ... +01/30/13 11:42:40,662 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,662 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:40,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,670 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:40,671 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:42:40,671 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:40,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,674 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:42:40,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,674 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:42:40,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,675 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:40,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,675 [1520] DEBUG index - function getTranslatedString(Note) - translated to (描述) +01/30/13 11:42:40,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,675 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:42:40,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,676 [1520] DEBUG index - function getTranslatedString(Document No) - translated to (文档编号) +01/30/13 11:42:40,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,676 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:40,676 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:42:40,676 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:42:40,677 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Documents)... +01/30/13 11:42:40,677 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,677 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:42:40,677 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:42:40,677 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:42:40,677 [1520] DEBUG index - Prepared sql query parameters : [Documents] +01/30/13 11:42:40,680 [1520] DEBUG index - Prepared sql query being executed : select note_no from vtiger_notes where note_no = ? +01/30/13 11:42:40,680 [1520] DEBUG index - Prepared sql query parameters : [DOC2] +01/30/13 11:42:40,682 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:42:40,733 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,734 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:42:40,734 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:40,737 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:40,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:40,737 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:42:40,737 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:40,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,773 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,773 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:42:40,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,774 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:42:40,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,775 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,775 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,776 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,777 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:40,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,778 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:42:40,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,815 [1520] DEBUG index - function getTranslatedString(LBL_MAX_SIZE) - translated to (最大上传大小) +01/30/13 11:42:40,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:40,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:40,815 [1520] DEBUG index - function getTranslatedString(LBL_FILESIZEIN_MB) - translated to (MB) +01/30/13 11:42:40,821 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:40,821 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:40,822 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:41,177 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:41,305 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:41,306 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:41,306 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:41,306 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:41,306 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:42:41,307 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:42:41,307 [1520] DEBUG index - in CalendarAjax +01/30/13 11:42:41,307 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:42:41,307 [1520] INFO index - current module is Calendar +01/30/13 11:42:41,344 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:41,344 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:41,344 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:41,344 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:41,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:41,345 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:41,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:41,345 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:41,345 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:41,353 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:41,353 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:41,354 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:41,354 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:41,354 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:41,355 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:41,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,355 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:41,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,356 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:41,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,356 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:41,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,357 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:41,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,357 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:41,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,358 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:41,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,358 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:41,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,358 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:41,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,359 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:41,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,359 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:41,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,360 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:41,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,360 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:41,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,361 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:41,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,361 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:41,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,362 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:41,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,362 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:41,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,363 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:41,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,363 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:41,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,364 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:41,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,364 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:41,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,365 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:41,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,365 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:41,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,366 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:41,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,366 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:41,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,366 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:41,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,367 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:41,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,367 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:41,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,368 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:41,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,368 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:41,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,368 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:41,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,369 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:41,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,369 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:41,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,370 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:41,370 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,370 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:41,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,371 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:41,371 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,371 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:41,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,372 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:41,372 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,372 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:41,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,373 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:41,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,373 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:41,373 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,374 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:41,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,374 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:41,374 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,374 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:41,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,375 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:41,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,375 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:41,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,376 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:41,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:41,376 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:41,377 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:41,377 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:41,377 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:41,377 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:41,379 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:41,379 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:41,381 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:41,381 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:41,382 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:41,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:41,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:41,383 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:41,383 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:41,383 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:41,383 [1520] DEBUG index - skipping headers +01/30/13 11:42:41,384 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:42:41,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:41,389 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:41,390 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:42:41,390 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:42:41,390 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:42:41,394 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:43')) +01/30/13 11:42:41,397 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:42:49,115 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:49,242 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:49,242 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:49,242 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:49,242 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:49,243 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:42:49,243 [1520] INFO index - About to take action index +01/30/13 11:42:49,243 [1520] DEBUG index - in index +01/30/13 11:42:49,243 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:42:49,243 [1520] INFO index - current module is Accounts +01/30/13 11:42:49,279 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:49,279 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:49,280 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:49,280 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,280 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,280 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:49,280 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:49,291 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,291 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,291 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,291 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:49,292 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:49,292 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:49,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,293 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:49,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,293 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:49,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,294 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:49,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,294 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:49,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,295 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:49,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,295 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:49,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,296 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:49,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,296 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:49,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,297 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:49,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,297 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:49,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,298 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:49,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,298 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:49,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,299 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:49,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,299 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:49,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,300 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:49,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,300 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:49,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,300 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:49,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,301 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:49,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,301 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:49,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,302 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:49,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,302 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,303 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:49,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,304 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:49,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,304 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:49,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,305 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:49,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,305 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:49,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,306 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:49,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,306 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:49,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,307 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:49,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,307 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:49,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,308 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:49,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,308 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:49,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,308 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:49,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,309 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:49,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,309 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:49,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,310 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:49,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,310 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:49,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,311 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:49,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,311 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:49,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,312 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:49,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,312 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:49,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,313 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:49,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,313 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:49,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,313 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:49,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,314 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:49,317 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:49,317 [1520] DEBUG index - Prepared sql query parameters : [324,1,Accounts,index,,2013-01-30 11:42:49] +01/30/13 11:42:49,320 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:49,320 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:49,320 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:49,320 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:49,322 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:49,322 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:49,324 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:49,324 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:49,325 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:49,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,326 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:49,326 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:49,326 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:49,326 [1520] DEBUG index - including headers +01/30/13 11:42:49,327 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,327 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,330 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:49,331 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:49,333 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:49,334 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:49,334 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,334 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:49,334 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,334 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:49,335 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,335 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:49,335 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,335 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:49,336 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,336 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:49,336 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,336 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:49,337 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:49,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,344 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:49,345 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,345 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:49,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,346 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:49,346 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:49,346 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,347 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:49,347 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:49,348 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:49,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,349 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:49,349 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:49,350 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,350 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:49,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,350 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:49,350 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:49,351 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:49,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,352 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:49,352 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:49,352 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:49,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,353 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:49,353 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:49,353 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:49,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,354 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:49,354 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:49,355 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,355 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:49,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,355 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:49,355 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:49,356 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:49,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,357 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:49,357 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:49,357 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:49,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,358 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:49,358 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:49,358 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,359 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:49,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,359 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:49,359 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:49,360 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:49,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,360 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:49,360 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:49,361 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:49,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,362 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:49,362 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:49,362 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,362 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:49,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,363 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:49,363 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:49,363 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,363 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:49,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,364 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:49,364 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:49,365 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,365 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:49,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,366 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:49,366 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:49,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:49,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,367 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:49,367 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:49,367 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:49,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,368 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:49,368 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:49) method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:49) method ... +01/30/13 11:42:49,369 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:49,370 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,370 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,370 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,370 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,370 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:49,371 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:49,371 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:49,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,378 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,379 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,381 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:49,388 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:49,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,388 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:49,389 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:49,390 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,390 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,391 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:49,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,391 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:49,392 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,392 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:49,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,392 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:49,392 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,393 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:49,394 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,394 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:49,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,394 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:49,395 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,395 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:49,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,395 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:49,395 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,396 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:49,397 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,397 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:49,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,397 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:49,398 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,398 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:49,398 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,398 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:49,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,399 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:49,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,399 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:49,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,400 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:49,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,400 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:49,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:49,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,402 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:49,402 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,402 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:49,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,402 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:49,403 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,403 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:49,403 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:49,403 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:49,407 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:49,407 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,408 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:49,408 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,408 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:49,409 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,409 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:49,410 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,410 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:49,410 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,411 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:49,411 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:49,413 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:49,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,413 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:49,413 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:49,416 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:49,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,423 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,424 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:49,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:49,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,424 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:49,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,424 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:49,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,425 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:49,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:49,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,425 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:49,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:49,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,425 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:49,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:49,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,426 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:49,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:49,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,426 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:49,427 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:49,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,427 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:49,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:49,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,427 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:49,430 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:49,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,430 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:49,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:49,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,431 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:49,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:49,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,431 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:49,432 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:49,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,432 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:49,432 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:49,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,433 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:49,433 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:49,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,433 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:49,433 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:49,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,434 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:49,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:49,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,434 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:49,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:49,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,435 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:49,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:49,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,436 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:49,436 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:49,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,436 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:49,436 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:49,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,436 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:49,436 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:49,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,437 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:49,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:49,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,437 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:49,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:49,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,438 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:49,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:49,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,438 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:49,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:49,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,438 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:49,438 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:49,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,439 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:49,439 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:49,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,439 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:49,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:49,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,439 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:49,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:49,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,440 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:49,440 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:49,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,441 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:49,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:49,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,442 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:49,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,442 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:49,443 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:49,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,447 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,447 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,448 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,448 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,448 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:42:49,448 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,449 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,449 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:49,449 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,450 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:42:49,450 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,450 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:49,451 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,451 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:49,451 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,451 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:42:49,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,452 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:49,453 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,453 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:49,453 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,453 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:49,453 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,454 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,454 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,454 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,454 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,454 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:49,454 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:49,463 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,463 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,463 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:42:49,464 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,464 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:42:49,464 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:42:49,468 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:42:49,468 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:49,468 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,469 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,469 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:49,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,470 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:49,470 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,470 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:42:49,470 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:42:49,471 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:42:49,471 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:42:49,471 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:49,471 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:42:49,472 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:49,472 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:49,472 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:49,472 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:49,475 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:49,475 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:49,477 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:49,477 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:49,479 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:49,479 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:49,479 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:49,479 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:49,479 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:49,479 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:49,480 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:42:49,480 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:42:49,480 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:49,480 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:49,482 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:49,482 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:49,483 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:49,483 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:49,485 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:49,485 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:42:49,485 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,486 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:49,488 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,488 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,488 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,489 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,489 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,490 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:42:49,490 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:42:49,490 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,492 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:49,492 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:42:49,492 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:42:49,492 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,492 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,492 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:42:49,493 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:49,496 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,496 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:42:49,496 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,499 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:42:49,499 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:42:49,500 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:42:49,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,501 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:42:49,501 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:42:49,501 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:42:49,502 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:49,502 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:42:49,502 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:42:49,502 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:42:49,502 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:49,502 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:42:49,502 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:42:49,503 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,503 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:49,503 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:49,504 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,505 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:49,505 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:49,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,507 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:49,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,508 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:49,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,509 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:49,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,509 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:42:49,509 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:49,514 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:42:49,514 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:42:49,532 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:42:49,536 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:42:49,536 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:42:49,539 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:49,539 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:49,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,539 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:49,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:49,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:49,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,542 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,543 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,544 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:49,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:49,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:49,547 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:42:49,550 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:49,550 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,550 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:42:49,554 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:49,554 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:49,598 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,598 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:42:49,600 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,601 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:42:49,603 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,603 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:42:49,605 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,605 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:42:49,607 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:49,608 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:42:49,654 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,655 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:42:49,657 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,657 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:42:49,659 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,659 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:42:49,662 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,662 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:42:49,663 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,664 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:42:49,665 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,666 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:42:49,668 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,668 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:42:49,671 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,671 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:42:49,673 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,673 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:42:49,675 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:49,675 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:42:49,710 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,710 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:42:49,712 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,713 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:42:49,715 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,715 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:42:49,717 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,717 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:42:49,719 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:42:49,719 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:49,721 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,721 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:42:49,723 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,724 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:42:49,726 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:42:49,727 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:42:49,759 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,759 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:42:49,761 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,761 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:42:49,763 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,763 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:42:49,765 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,765 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:42:49,768 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,768 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:42:49,770 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,770 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:42:49,773 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,773 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:42:49,775 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,775 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:42:49,777 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,777 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:42:49,781 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,782 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:42:49,788 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,788 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:42:49,791 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:42:49,792 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:42:49,798 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:49,803 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:49,803 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:49,806 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:49,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:49,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,807 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:49,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:49,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,808 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:49,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:49,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,808 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:49,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:49,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,809 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:49,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:49,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,809 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:49,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:49,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,810 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:42:49,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:49,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,810 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:49,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:49,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,811 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:42:49,811 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:49,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,811 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:49,812 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:49,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,812 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:49,812 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:49,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,812 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:49,813 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:49,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,813 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:42:49,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:49,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,813 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:49,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:49,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,814 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:42:49,814 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:49,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,815 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:49,815 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:49,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,815 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:49,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,816 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:49,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,816 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:49,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:49,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,817 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:49,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:49,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,817 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:49,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,818 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,818 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:49,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:49,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,819 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:49,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:49,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,819 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:49,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:49,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,820 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:49,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:49,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,820 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:49,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:49,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,821 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:49,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:49,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,821 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:49,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:49,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,822 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:49,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:49,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,822 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:49,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:49,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,823 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:49,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:49,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,823 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:42:49,824 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:49,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,824 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:49,824 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:49,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,824 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:49,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,825 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:42:49,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:49,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,826 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:49,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:42:49,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,828 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:42:49,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:42:49,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,829 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:42:49,829 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:49,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,829 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:49,829 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:49,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,830 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:42:49,830 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:49,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,830 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:42:49,830 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:49,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,831 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:49,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:49,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,831 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:49,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:49,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,832 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:49,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:49,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,832 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:49,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:49,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,833 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:49,833 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:49,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,833 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:42:49,833 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:49,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,834 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:49,834 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:49,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,834 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:49,834 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:49,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,835 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:49,835 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:49,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,836 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:49,836 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:49,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,837 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:49,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:49,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,837 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:49,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:49,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,838 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:49,838 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:49,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,838 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:49,838 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:49,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,839 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:42:49,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,888 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:42:49,889 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:42:49,891 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:49,891 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:49,892 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:42:49,892 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,895 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:42:49,895 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,898 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:42:49,898 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,902 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:49,902 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:49,904 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:49,905 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:49,905 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:49,905 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,906 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,906 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:49,906 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,906 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:49,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,907 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:42:49,907 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:49,909 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:42:49,909 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:49,911 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,912 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,912 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,912 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,912 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,913 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,913 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,913 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,914 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,914 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,914 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,915 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,915 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,915 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,915 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,915 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,916 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,916 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,916 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,916 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,917 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,917 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,917 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,917 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,917 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,918 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,918 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,918 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,918 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,920 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,920 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,920 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:42:49,923 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:42:49,927 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,927 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,927 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,929 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,929 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:42:49,929 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:42:49,929 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,929 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,930 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,930 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,930 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,931 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,931 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:49,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,932 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:49,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,932 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:49,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,932 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:49,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,932 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:49,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,933 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:49,933 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,933 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,934 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:42:49,935 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:49,935 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:49,935 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:49,939 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:42:49,939 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5,5] +01/30/13 11:42:49,942 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:49,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,942 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:49,942 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:49,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,945 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,945 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,946 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,946 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,947 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,947 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,947 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,947 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,948 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,948 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,948 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,948 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,949 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,949 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,950 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,950 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,950 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,951 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,951 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,951 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,952 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,952 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,952 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,952 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,953 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,953 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,954 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:49,954 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:49,954 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,954 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,955 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,955 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,959 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,959 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,959 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,959 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,960 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:49,960 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:49,960 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:49,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,962 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,963 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,963 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,964 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,964 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,965 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,966 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,966 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,966 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,966 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,967 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,967 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,967 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,967 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,968 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,968 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,968 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,968 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,969 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,969 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,969 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,970 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,970 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,970 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,971 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:49,971 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:49,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,971 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,971 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,971 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,972 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,975 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,975 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,975 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,976 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,976 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:49,976 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:49,976 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:49,979 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,979 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,979 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,979 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,980 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,980 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,980 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,981 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,981 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,981 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,981 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,981 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,982 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,982 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,982 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,982 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,983 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,983 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,983 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,983 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,984 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,984 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,984 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,984 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,985 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,985 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:49,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,986 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,986 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,986 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,987 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,987 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:49,987 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:49,988 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:49,988 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,988 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,988 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,988 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,992 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:49,992 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:49,992 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:49,992 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:49,992 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:49,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,992 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:49,992 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:49,992 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:49,995 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,995 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,995 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,996 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,996 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,996 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,996 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,997 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:49,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:49,997 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:49,997 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,997 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,997 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,998 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,998 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,998 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,998 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,999 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:49,999 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:49,999 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:49,999 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:49,1000 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,000 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,000 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,000 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,001 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,001 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,002 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,002 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,002 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,003 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,003 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,003 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,003 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,004 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,004 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,004 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,004 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,007 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,007 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,008 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,008 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,008 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,008 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,008 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:50,011 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,011 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,011 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,012 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,012 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,012 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,012 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,013 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,013 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,013 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,013 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,013 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,014 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,014 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,014 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,014 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,015 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,015 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,015 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,015 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,016 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,016 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,016 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,016 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,017 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,017 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,018 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,018 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,018 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,018 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,019 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,019 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,019 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,019 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,020 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,020 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,020 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,023 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,023 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,024 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,024 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,024 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,024 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,024 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:42:50,027 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,027 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,027 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,027 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,028 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,028 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,028 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,028 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,029 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,029 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,029 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,029 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,030 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,030 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,030 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,030 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,031 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,031 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,031 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,031 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,032 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,032 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,032 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,032 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,033 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,033 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,033 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,033 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,034 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,034 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,034 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,035 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,035 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,035 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,035 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,035 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,035 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,036 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,039 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,039 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,039 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,040 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,040 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,040 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,040 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:42:50,044 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,044 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,044 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,045 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,045 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,045 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,045 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,046 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,046 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,046 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,046 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,046 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,047 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,047 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,047 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,047 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,048 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,048 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,048 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,048 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,049 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,049 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,050 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,050 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,051 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,051 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,051 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,051 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,052 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,052 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,052 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,053 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,053 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,053 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,056 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,056 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,056 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,057 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,057 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,057 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,057 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:42:50,060 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,060 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,060 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,060 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,061 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,061 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,061 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,061 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,062 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,062 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,062 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,062 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,062 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,063 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,063 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,063 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,063 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,064 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,064 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,064 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,064 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,065 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,065 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,065 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,065 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,066 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,066 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,066 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,067 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,067 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,067 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,067 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,068 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,068 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,068 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,068 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,068 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,069 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,069 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,073 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,073 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,073 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,073 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,073 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,073 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,073 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,073 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:42:50,076 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,076 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,076 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,076 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,077 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,077 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,077 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,077 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,078 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,078 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,078 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,078 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,079 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,079 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,079 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,079 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,080 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,080 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,080 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,080 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,081 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,081 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,081 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,081 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,082 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,082 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,083 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,083 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,083 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,083 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,084 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,084 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,084 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,084 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,084 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,085 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,085 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,088 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,088 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,088 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,089 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,089 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,089 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,089 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:42:50,091 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,091 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,091 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,092 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,092 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,092 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,092 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,093 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,093 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,093 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,094 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,094 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,094 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,095 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,095 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,095 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,095 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,096 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,096 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,096 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,096 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,097 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,097 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,097 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,097 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,097 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,098 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,098 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,098 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,099 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,099 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,099 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,100 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,100 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,100 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,101 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,104 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,104 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,104 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,104 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,104 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,105 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,105 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:42:50,111 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,111 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,111 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,112 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,112 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,112 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,112 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,113 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,113 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,113 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,113 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,114 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,114 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,114 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,114 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,115 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,115 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,115 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,115 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,116 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,116 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,116 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,116 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,117 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,117 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,117 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,118 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,118 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,118 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,119 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,119 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,119 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,120 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,120 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,120 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,121 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,124 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,124 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,124 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,124 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,125 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,125 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,125 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:50,127 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,127 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,127 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,128 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,128 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,128 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,128 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,129 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,129 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,129 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,129 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,129 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,130 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,130 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,130 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,130 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,131 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,131 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,131 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,131 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,132 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,132 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,133 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,133 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:50,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,134 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,134 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,134 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,134 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,135 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:42:50,135 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:42:50,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,135 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:50,135 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:50,136 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:50,136 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:50,139 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:50,139 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:50,139 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,140 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:50,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,140 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:42:50,140 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:42:50,140 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:42:50,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,142 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:50,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,143 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:50,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,143 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:50,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,143 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:50,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,143 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:50,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,144 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:50,144 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:42:50,144 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:42:50,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,144 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:50,144 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,144 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,146 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,147 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:50,147 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,147 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,150 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,150 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:50,150 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,150 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,152 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,153 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:50,153 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,153 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,154 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,155 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:50,155 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,155 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,156 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,157 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:50,157 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,157 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,158 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,158 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:50,159 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,159 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,160 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,160 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:50,161 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,161 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,162 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,162 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:50,162 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,162 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,164 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,164 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:50,164 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,164 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,166 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,166 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:50,166 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,166 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,168 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,168 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:50,168 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,168 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,170 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,170 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:50,170 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,171 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,172 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,172 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:50,172 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,173 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,174 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,174 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:50,174 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,174 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,176 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,176 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:50,176 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,176 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,177 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,178 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:50,178 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,178 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,179 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,179 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:50,180 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,180 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,181 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,182 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:50,182 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,182 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,184 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,184 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:50,184 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,184 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,185 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,186 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:42:50,186 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,186 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,191 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,191 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:42:50,191 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,191 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,193 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,193 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:50,193 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,193 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:42:50,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,195 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:50,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,195 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:50,196 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,196 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,197 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,198 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:50,198 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,198 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,199 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,200 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:50,200 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,200 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,202 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,202 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:50,202 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,202 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,203 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,204 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:50,204 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,204 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,205 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,205 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:50,205 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,205 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,207 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,208 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:50,208 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,208 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,209 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,210 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:50,210 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,210 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,211 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,211 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:50,211 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,212 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,213 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,213 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:50,213 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,214 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,215 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,216 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:50,216 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,216 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,217 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,218 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:50,218 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,218 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:42:50,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,219 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:50,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,220 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:50,220 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:42:50,220 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:42:50,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,221 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:50,221 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:42:50,222 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:42:50,222 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,222 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:42:50,222 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:42:50,222 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:42:50,224 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:42:50,224 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:42:50,224 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:42:50,224 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:50,226 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:42:50,226 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:42:50,226 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:42:50,226 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,226 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:42:50,226 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:42:50,236 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:42:50,236 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:42:50,236 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:50,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,240 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:50,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,240 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:50,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,240 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:50,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,241 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:50,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,241 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:50,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,241 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:50,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,241 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:50,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,242 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:50,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,242 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:50,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,242 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:50,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,243 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:50,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,243 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:50,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,243 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:50,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,243 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:50,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,244 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:50,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,244 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:50,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,244 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:50,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,245 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:50,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,245 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:50,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,245 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:50,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,246 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:50,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,246 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:50,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,246 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:50,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,246 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:50,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,247 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:50,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,247 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:50,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,247 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:50,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,248 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:50,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,248 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:50,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,248 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:50,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,249 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:50,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,249 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:50,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,249 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:50,249 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,249 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:42:50,249 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:42:50,251 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:42:50,251 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:42:50,251 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:42:50,252 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:42:50,252 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:42:50,252 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:42:50,252 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:50,257 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:50,257 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:50,257 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:42:50,258 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:42:50,260 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:50,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:50,261 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:42:50,261 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:42:50,261 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:50,263 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:42:50,263 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:50,263 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:50,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,266 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,266 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:42:50,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,267 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:42:50,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,267 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,267 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,268 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,268 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,268 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,268 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,272 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:42:50,272 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:42:50,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,272 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:42:50,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,272 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:42:50,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,273 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:42:50,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,273 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:42:50,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,273 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:42:50,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,274 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:42:50,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,274 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:42:50,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,274 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:42:50,278 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:50,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:50,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,279 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:50,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,279 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,279 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:50,279 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:50,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:50,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,280 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:50,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:50,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:50,280 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:42:50,281 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:50,281 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:50,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:52,846 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:42:52,970 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:42:52,970 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:42:52,971 [1520] DEBUG index - ****Starting for new session +01/30/13 11:42:52,971 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:42:52,971 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '138', +) +01/30/13 11:42:52,972 [1520] INFO index - About to take action DetailView +01/30/13 11:42:52,972 [1520] DEBUG index - in DetailView +01/30/13 11:42:52,972 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:42:52,972 [1520] INFO index - current module is Accounts +01/30/13 11:42:53,010 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:42:53,010 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:42:53,010 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:42:53,010 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:53,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,010 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:53,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,011 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:53,011 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:42:53,022 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:42:53,022 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,023 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,023 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:42:53,023 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:42:53,024 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:42:53,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,024 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:42:53,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,025 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:42:53,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,025 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:42:53,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,026 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:53,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,026 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:42:53,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,026 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:42:53,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,027 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:53,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,027 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:42:53,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,028 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:42:53,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,028 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:42:53,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,029 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:42:53,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,029 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:42:53,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,030 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:42:53,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,030 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:42:53,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,031 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:42:53,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,031 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:42:53,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,032 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:42:53,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,032 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:42:53,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,033 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:42:53,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,033 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:42:53,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,033 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:42:53,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,034 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:42:53,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,034 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:42:53,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,035 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:42:53,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,035 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:42:53,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,035 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:42:53,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,036 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:42:53,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,036 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:42:53,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,037 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:42:53,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,037 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:42:53,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,038 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:42:53,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,038 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:42:53,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,039 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:42:53,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,039 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:42:53,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,040 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:42:53,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,040 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:42:53,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,041 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:42:53,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,041 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:42:53,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,042 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:42:53,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,042 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:42:53,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,042 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:42:53,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,043 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:42:53,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,043 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:42:53,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,044 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:42:53,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,044 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:42:53,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,045 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:42:53,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,045 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:42:53,049 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:42:53,049 [1520] DEBUG index - Prepared sql query parameters : [325,1,Accounts,DetailView,138,2013-01-30 11:42:53] +01/30/13 11:42:53,053 [1520] DEBUG index - Current user is: admin +01/30/13 11:42:53,053 [1520] DEBUG index - Current theme is: softed +01/30/13 11:42:53,053 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:42:53,053 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:42:53,055 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:42:53,055 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:42:53,057 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:42:53,057 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:42:53,058 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:42:53,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,059 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,059 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,059 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,060 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,060 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:53,060 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:53,069 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,069 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,070 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:42:53,070 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:42:53,070 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:42:53,074 [1520] INFO index - in track view method Accounts +01/30/13 11:42:53,074 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,074 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:53,076 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:42:53,076 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,078 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:53,078 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:42:53,078 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:42:53,082 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:53,082 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:42:53,083 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:42:53,084 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:42:53,084 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:42:53,084 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:42:53,084 [1520] DEBUG index - including headers +01/30/13 11:42:53,084 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:42:53,085 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:42:53,088 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,088 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,090 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:42:53,090 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:42:53,090 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,092 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:42:53,092 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:42:53,093 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:42:53,093 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,093 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:42:53,094 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,094 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:42:53,094 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,094 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:42:53,095 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,095 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:42:53,095 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,095 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:42:53,095 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,096 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:42:53,096 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,096 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:42:53,096 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:42:53,096 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:42:53,097 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:42:53,097 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:42:53,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,106 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:42:53,106 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:53,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:53,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,107 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:42:53,107 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:42:53,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:53,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,108 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:42:53,109 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:42:53,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:53,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,110 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:42:53,110 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:42:53,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,111 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:53,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,111 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:42:53,112 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:42:53,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:53,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,113 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:42:53,113 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:53,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:53,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,114 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:42:53,114 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:53,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:42:53,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:42:53,115 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:42:53,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,116 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:53,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,117 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:42:53,117 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:53,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:53,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,118 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:42:53,118 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:53,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:53,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:42:53,119 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:53,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,120 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:53,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,121 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:42:53,121 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:42:53,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:53,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,122 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:42:53,122 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:53,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:53,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,123 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:42:53,124 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:42:53,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,124 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:53,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,125 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:42:53,125 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:42:53,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,126 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:53,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,126 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:42:53,126 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:42:53,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,127 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:53,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,128 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:42:53,128 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:42:53,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:53,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,129 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:42:53,129 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:42:53,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:53,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,130 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:42:53,130 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:42:53,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,131 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:42:53,131 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:42:53) method ... +01/30/13 11:42:53,131 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:53,131 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:42:53) method ... +01/30/13 11:42:53,132 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:53,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:53,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:53,133 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:42:53,133 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:42:53,133 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:42:53,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,146 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:42:53,150 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:53,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:53,151 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:53,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,155 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:42:53,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,155 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,155 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:53,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,156 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:53,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,156 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:42:53,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:53,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,158 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:42:53,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,158 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:53,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,158 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:42:53,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,159 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:42:53,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,159 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,160 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:53,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,161 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:42:53,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,161 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,162 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:42:53,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,163 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:53,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,163 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:42:53,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,164 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:53,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,164 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:42:53,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,165 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:53,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,165 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:42:53,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,165 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:53,165 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:42:53,166 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,169 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:53,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,170 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:42:53,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,171 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:42:53,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,172 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:42:53,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,172 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:42:53,173 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,173 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:53,173 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:42:53,176 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:42:53,176 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,176 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:42:53,176 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:42:53,180 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:42:53,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,186 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:42:53,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,186 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:42:53,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:42:53,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,187 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:42:53,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,187 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:42:53,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,187 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:53,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:42:53,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,188 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:53,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:42:53,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,188 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:53,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:42:53,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,188 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:53,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:42:53,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,189 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:53,189 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:42:53,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,189 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:53,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:42:53,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,190 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:42:53,192 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:42:53,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,193 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:42:53,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:42:53,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,193 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:42:53,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:42:53,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,194 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:42:53,194 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:42:53,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,195 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:42:53,195 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:42:53,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,195 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:42:53,195 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:53,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,195 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:42:53,195 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:42:53,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,196 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:42:53,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:42:53,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,196 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:42:53,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:42:53,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,197 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:42:53,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:42:53,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,198 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:53,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:42:53,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,198 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:53,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:42:53,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,198 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:42:53,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:42:53,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,198 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:42:53,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:42:53,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,199 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:42:53,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:42:53,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,200 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:42:53,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:42:53,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,200 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:53,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:42:53,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,200 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:53,200 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:42:53,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,201 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:42:53,201 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:42:53,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,202 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:42:53,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:42:53,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,202 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:42:53,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:42:53,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,203 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:53,203 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:42:53,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,204 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:42:53,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:42:53,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,204 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:53,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,205 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:42:53,205 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:42:53,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,208 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,208 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,208 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,208 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,208 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:42:53,209 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,212 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:42:53,212 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,214 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:42:53,215 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,216 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:42:53,216 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,218 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:42:53,218 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,219 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,221 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:42:53,221 [1520] DEBUG index - id is 138 +01/30/13 11:42:53,221 [1520] DEBUG index - name is OSSEZ +01/30/13 11:42:53,221 [1520] INFO index - Account detail view +01/30/13 11:42:53,221 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:42:53,221 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,221 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,221 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:42:53,221 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:53,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,224 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:53,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,224 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:42:53,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,225 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:53,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,225 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:53,225 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:42:53,225 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:42:53,235 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:42:53,236 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:42:53,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,237 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:53,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,237 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,237 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:42:53,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,238 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:53,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,238 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,239 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:42:53,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,240 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:53,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,240 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,240 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:42:53,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,241 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:53,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,241 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,242 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:42:53,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,243 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:53,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,243 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,243 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:42:53,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,244 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:53,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,244 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,245 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:42:53,245 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:42:53,246 [1520] INFO index - in getAccountName 8 +01/30/13 11:42:53,246 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:42:53,246 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:42:53,248 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:42:53,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,248 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:53,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,249 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,249 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:42:53,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,250 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:53,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,250 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,251 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:42:53,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,251 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:53,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,252 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,252 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:42:53,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,253 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:53,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,253 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,254 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:42:53,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,254 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:53,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,255 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,255 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:42:53,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,256 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:53,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,256 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,257 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:42:53,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,257 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:53,257 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:53,257 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:53,258 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:42:53,258 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:42:53,258 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:42:53,261 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:42:53,261 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:42:53,261 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:42:53,263 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:53,263 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:53,263 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,263 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:53,268 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 325 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:53,268 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,269 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,271 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,271 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:53,271 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,271 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:53,275 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,275 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:53,275 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,275 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:53,280 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,280 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:53,280 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:53,280 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:42:53,282 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:53,282 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:53,309 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:53,309 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:42:53,309 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:42:53,309 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:42:53,310 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:42:53,310 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:42:53,310 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:42:53,310 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:42:53,310 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:42:53,311 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:42:53,311 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:42:53,311 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:42:53,311 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:42:53,311 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:42:53,312 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:42:53,312 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:42:53,312 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:42:53,312 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:53,313 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:42:53,313 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:53,313 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:42:53,313 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:42:53,313 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:42:53,314 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:42:53,314 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,314 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,314 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,315 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:42:53,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,317 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:53,317 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:53,317 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:53,317 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:53,317 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:53,317 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,318 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:53,322 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 325 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:53,323 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,324 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,326 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,326 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:53,326 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,326 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:53,329 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,329 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:53,329 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,330 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:53,333 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,333 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:53,333 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:53,333 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:42:53,335 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:53,335 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:53,346 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:53,346 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:42:53,346 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:42:53,347 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:42:53,347 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:42:53,347 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:42:53,347 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,347 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,347 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,348 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:42:53,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,349 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:53,349 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:42:53,349 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:42:53,349 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:42:53,349 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:42:53,349 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,349 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:42:53,353 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 325 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:42:53,354 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,355 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,357 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,357 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:42:53,357 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,357 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:42:53,360 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,361 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:42:53,361 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:42:53,361 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:42:53,366 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:42:53,366 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:42:53,366 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:42:53,366 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:42:53,368 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:42:53,368 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:42:53,378 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:42:53,379 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:42:53,380 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:42:53,380 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:42:53,380 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:42:53,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,380 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,381 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:42:53,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,382 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:53,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,382 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,383 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:42:53,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,384 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:53,384 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,384 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,384 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,385 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:42:53,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,385 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:53,386 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:42:53,386 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:42:53,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:42:53,386 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:53,388 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:42:53,388 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:42:53,388 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:42:53,388 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:42:53,388 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,389 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,389 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,389 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:42:53,390 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:42:53,390 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:42:53,392 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:42:53,392 [1520] INFO index - in getOwnerName 5 +01/30/13 11:42:53,392 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:53,392 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,392 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,395 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:53,395 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:42:53,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,397 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:53,397 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,397 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,397 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:42:53,397 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:42:53,399 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:42:53,399 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:53,400 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:53,400 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:42:53,400 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:42:53,402 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,402 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,404 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,404 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,406 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:53,406 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:53,406 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:42:53,406 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:53,406 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:42:53,406 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:53,406 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:42:53,407 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:42:53,407 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:42:53,410 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:42:53,410 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,410 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,411 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:42:53,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,412 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:53,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,412 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,413 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:42:53,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,414 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:42:53,414 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:42:53,414 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:53,414 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:42:53,415 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:53,415 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,415 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,415 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,415 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:42:53,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,416 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:42:53,416 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,417 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,418 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:42:53,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,418 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:53,418 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,419 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,419 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,419 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:42:53,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,420 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:53,420 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,420 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,420 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,421 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:42:53,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,422 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:53,422 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,422 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,422 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,422 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:42:53,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,423 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:53,423 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,423 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,423 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,424 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:42:53,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,425 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:53,425 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,425 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,425 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,425 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:42:53,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,426 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:53,426 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,426 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,426 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,427 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:42:53,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,428 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:53,428 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,428 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,428 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,428 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:42:53,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,429 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:53,429 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,429 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,429 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,430 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:42:53,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,431 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:53,431 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,431 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,431 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,431 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:42:53,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,432 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:53,432 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,432 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,432 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,433 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:42:53,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,434 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:53,434 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,434 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,434 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,434 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:42:53,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,435 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:53,435 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,435 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,435 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,436 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,437 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:53,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,437 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:53,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,438 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:42:53,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,438 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:53,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,438 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:42:53,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,439 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:53,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,439 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:42:53,439 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:42:53,439 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:42:53,439 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:42:53,439 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:42:53,439 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,441 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:42:53,442 [1520] INFO index - in getOwnerName 1 +01/30/13 11:42:53,442 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:42:53,442 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:42:53,442 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:42:53,444 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:42:53,444 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,446 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:42:53,446 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:42:53,446 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:42:53,447 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:42:53,447 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,447 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,447 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:42:53,447 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:42:53,447 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:42:53,448 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:42:53,448 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,452 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:42:53,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,452 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:42:53,453 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,453 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:42:53,453 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,454 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:42:53,454 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:53,456 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,456 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,456 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,456 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,457 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:42:53,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,459 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:42:53,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,459 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:42:53,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,459 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:42:53,459 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:53,463 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,463 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:42:53,463 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:42:53,482 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:53,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,483 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:42:53,483 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:42:53,483 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:42:53,485 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:42:53,485 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,486 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:53,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,486 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:42:53,486 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:53,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,489 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:42:53,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,489 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:42:53,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,489 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:42:53,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,490 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:42:53,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,490 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:42:53,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,490 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:42:53,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,491 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:42:53,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,491 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:42:53,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,491 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:42:53,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,492 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:42:53,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,492 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:42:53,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,492 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:42:53,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,493 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:42:53,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,493 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:42:53,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,493 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:42:53,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,494 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:42:53,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,494 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:42:53,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,494 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:42:53,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,495 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:42:53,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,495 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:42:53,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,495 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:42:53,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,496 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:42:53,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,496 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:42:53,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,496 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:42:53,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,497 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:42:53,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,497 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:42:53,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,497 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:42:53,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,498 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:42:53,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,498 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:42:53,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,498 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:42:53,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,499 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:42:53,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,499 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:42:53,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,499 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:42:53,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,500 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:42:53,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,500 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:42:53,500 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:42:53,500 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:42:53,500 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:42:53,500 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:42:53,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,501 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:42:53,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,502 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:42:53,502 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,502 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:42:53,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,503 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:42:53,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,504 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:42:53,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,504 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:53,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,505 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:42:53,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,505 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:42:53,506 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:42:53,506 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,507 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:53,507 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:42:53,507 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:53,509 [1520] DEBUG index - Entering when status=0 +01/30/13 11:42:53,509 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:42:53,510 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:42:53,512 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,512 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:42:53,512 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:42:53,515 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:42:53,516 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,516 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:42:53,516 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:42:53,518 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:42:53,518 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:53,518 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,518 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:42:53,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,519 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:42:53,519 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:42:53,519 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:53,519 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,519 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:53,519 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,519 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:42:53,519 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:42:53,532 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:42:53,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,532 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:53,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,532 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,532 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:53,533 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:42:53,533 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:42:53,533 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,533 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:42:53,533 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:42:53,533 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:42:53,138,1] +01/30/13 11:42:53,536 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,536 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:42:53,536 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:42:53,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,545 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,546 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:53,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,546 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:53,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,546 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,547 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,547 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,547 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,548 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,548 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:42:53,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,548 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:53,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,549 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:53,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,549 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:42:53,549 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,549 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:42:53,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,550 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:42:53,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,550 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:42:53,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,550 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:42:53,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,551 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:42:53,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,551 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:42:53,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,551 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:42:53,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,552 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:42:53,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,552 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:42:53,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,552 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:42:53,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,553 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:42:53,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,553 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:42:53,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,553 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:42:53,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,554 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:42:53,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,554 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:42:53,649 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,650 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,650 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,650 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,650 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:42:53,651 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:42:53,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:53,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:42:53,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,653 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:42:53,654 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,654 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,654 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,654 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,654 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,654 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:42:53,654 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:42:53,658 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:42:53,658 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:42:53,658 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:42:53,658 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:53,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,658 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:53,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,658 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:53,658 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:42:53,666 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:42:53,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,666 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,666 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:42:53,667 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:42:53,667 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:42:53,667 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:53,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,667 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:53,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,667 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:53,667 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:42:53,678 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:42:53,678 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,678 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,678 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,678 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,678 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,679 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,679 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,679 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,680 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:42:53,680 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:42:53,680 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:53,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,680 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:53,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,680 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:42:53,680 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:42:53,686 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:42:53,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,686 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,687 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,687 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,687 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,688 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,689 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:42:53,689 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:42:53,689 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:42:53,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,690 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:42:53,690 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:42:53,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:42:53,690 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:42:53,690 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:42:53,715 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,716 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:42:53,716 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,716 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:42:53,716 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:42:53,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:42:53,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,717 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:42:53,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:42:53,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:42:53,717 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:42:53,718 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:42:53,718 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:42:53,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,188 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:43:20,322 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:43:20,322 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:43:20,323 [1520] DEBUG index - ****Starting for new session +01/30/13 11:43:20,323 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:43:20,323 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '138', + 'parenttab' => 'Marketing', + 'selected_header' => 'Contacts', + 'relation_id' => '1', +) +01/30/13 11:43:20,323 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:43:20,323 [1520] DEBUG index - in CallRelatedList +01/30/13 11:43:20,324 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:43:20,324 [1520] INFO index - current module is Accounts +01/30/13 11:43:20,361 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:20,361 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:20,361 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:20,362 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:20,362 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,362 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:20,362 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,362 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:20,362 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:20,373 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:20,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,374 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:20,374 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:20,374 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:20,375 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:20,375 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,375 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:20,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,376 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:20,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,376 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:20,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,377 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:20,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,377 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:20,377 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,377 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:20,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,378 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:20,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,378 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:20,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,379 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:20,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,379 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:20,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,380 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:20,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,380 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:20,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,381 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:20,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,381 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:20,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,382 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:20,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,382 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:20,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,383 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:20,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,383 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:20,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,383 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:20,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,384 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:20,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,384 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,385 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:20,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,386 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:20,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,386 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:20,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,387 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:20,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,387 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:20,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,388 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:20,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,388 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:20,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,389 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:20,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,389 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:20,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,390 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:20,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,390 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:20,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,390 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:20,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,391 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:20,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,391 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:20,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,392 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:20,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,392 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:20,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,393 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:20,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,393 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:20,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,394 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:20,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,394 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:20,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,395 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:20,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,395 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:20,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,396 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:20,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,396 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:20,401 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:43:20,401 [1520] DEBUG index - Prepared sql query parameters : [326,1,Accounts,CallRelatedList,138,2013-01-30 11:43:20] +01/30/13 11:43:20,404 [1520] DEBUG index - Current user is: admin +01/30/13 11:43:20,404 [1520] DEBUG index - Current theme is: softed +01/30/13 11:43:20,404 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:43:20,405 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:43:20,406 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:43:20,406 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:20,408 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:20,408 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:20,410 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:20,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,411 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:43:20,411 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:43:20,411 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:43:20,411 [1520] DEBUG index - including headers +01/30/13 11:43:20,411 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:20,412 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:20,415 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:20,415 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:20,417 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:43:20,418 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:43:20,418 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,418 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:43:20,419 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,419 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:43:20,419 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,419 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:43:20,419 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,420 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:43:20,420 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,420 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:43:20,420 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,420 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:43:20,421 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:43:20,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,430 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:43:20,430 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:20,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:20,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,431 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:43:20,431 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:43:20,431 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:20,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,432 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:43:20,432 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:43:20,433 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:20,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,434 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:43:20,434 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:43:20,435 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,435 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:20,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,435 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:43:20,435 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:43:20,436 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,436 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:20,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,437 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:43:20,437 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:20,437 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:20,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,438 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:43:20,438 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:20,439 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:43:20,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,439 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:43:20,439 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:43:20,440 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,440 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:20,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,441 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:43:20,441 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:20,441 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:20,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,442 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:43:20,442 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:20,442 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:20,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,443 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:43:20,443 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:20,444 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,444 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:20,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,444 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:43:20,444 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:43:20,445 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:20,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,446 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:43:20,446 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:20,446 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:20,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,447 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:43:20,447 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:43:20,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,447 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:20,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,448 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:43:20,448 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:43:20,449 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,449 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:20,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,449 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:43:20,449 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:43:20,450 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,450 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:20,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,451 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:43:20,451 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:43:20,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:20,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,452 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:43:20,452 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:43:20,453 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:20,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,453 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:43:20,453 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:43:20,454 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,454 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:43:20,454 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:43:20) method ... +01/30/13 11:43:20,454 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:20,455 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:43:20) method ... +01/30/13 11:43:20,455 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:43:20,455 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:20,455 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:20,456 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:43:20,456 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:43:20,456 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:43:20,460 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,460 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,460 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,460 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,461 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,462 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,463 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,464 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,465 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,466 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,467 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,468 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,469 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:43:20,474 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:43:20,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,475 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:43:20,475 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:20,477 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:20,477 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:20,477 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,478 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:20,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,479 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,479 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,480 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,481 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:43:20,482 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,482 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:43:20,482 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,482 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:20,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,483 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:43:20,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,483 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:20,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,484 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:43:20,484 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,484 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:43:20,484 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,484 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:43:20,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,485 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:43:20,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,485 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,486 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:43:20,487 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,487 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:43:20,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,487 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,488 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:43:20,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,489 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:43:20,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,489 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:20,489 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:20,489 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:20,494 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:43:20,494 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,495 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:43:20,495 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,495 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:43:20,496 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,496 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:43:20,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,497 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:43:20,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,498 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:20,498 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:43:20,501 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:43:20,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,502 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:43:20,502 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:43:20,505 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:43:20,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,511 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:20,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,512 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:43:20,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:20,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,512 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:43:20,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,512 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:20,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,513 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:20,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:20,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,513 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:43:20,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:20,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,513 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:43:20,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:20,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,514 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:43:20,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:20,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,514 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:43:20,514 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:20,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,515 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:43:20,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:43:20,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,515 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:43:20,517 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:43:20,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,518 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:43:20,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:43:20,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,518 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:43:20,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:43:20,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,519 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:43:20,519 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:43:20,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,520 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:43:20,520 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:43:20,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,521 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:43:20,521 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:20,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,521 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:43:20,521 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:43:20,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,521 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:43:20,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:43:20,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,522 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:43:20,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:43:20,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,523 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:43:20,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:20,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,523 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:43:20,523 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:20,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,523 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:43:20,523 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:20,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,524 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:43:20,524 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:20,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,524 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:43:20,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:20,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,524 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:43:20,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:43:20,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,525 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:43:20,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:20,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,525 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:43:20,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:20,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,526 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:43:20,526 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:43:20,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,527 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:43:20,527 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:20,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,527 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:43:20,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:20,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,527 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:43:20,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:20,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,528 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:43:20,528 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:43:20,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,529 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:43:20,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:20,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,529 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:43:20,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,530 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:43:20,530 [1520] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,138) method ... +01/30/13 11:43:20,531 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:20,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:20,554 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:20,554 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:20,555 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,555 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,555 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:20,555 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:20,565 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,565 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,566 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:20,566 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:43:20,566 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,568 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:43:20,568 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,571 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:43:20,571 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,573 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:43:20,573 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,574 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:43:20,574 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,576 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,577 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:43:20,578 [1520] DEBUG index - id is 138 +01/30/13 11:43:20,578 [1520] DEBUG index - name is OSSEZ +01/30/13 11:43:20,578 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:43:20,578 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,578 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:43:20,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,580 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:43:20,580 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:43:20,590 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:43:20,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,590 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:43:20,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,590 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:20,591 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:20,591 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:43:20,591 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:43:20,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,592 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:20,592 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:43:20,592 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:43:20,592 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:20,594 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:43:20,594 [1520] INFO index - in getOwnerName 1 +01/30/13 11:43:20,594 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:43:20,594 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:20,595 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:20,597 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:43:20,597 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:20,599 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:43:20,599 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:20,599 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:43:20,599 [1520] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/30/13 11:43:20,600 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,600 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:43:20,600 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:20,609 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:43:20,612 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:20,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:20,612 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:43:20,612 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:20,616 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:43:20,616 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:20,616 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,616 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:43:20,617 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,617 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:43:20,617 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,617 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:43:20,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,618 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:43:20,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,619 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:43:20,619 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,619 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:20,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,620 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:43:20,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:20,620 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:43:20,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,638 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,638 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:43:20,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,639 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:43:20,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,639 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,640 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,640 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,640 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,641 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:20,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,641 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:20,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:20,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,664 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:20,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:20,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,678 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:43:20,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:20,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,678 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:43:20,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:43:20,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,679 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:43:20,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:20,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,679 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:43:20,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:43:20,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,680 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:43:20,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:20,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,680 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:43:20,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:43:20,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,681 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:43:20,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:20,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,681 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:43:20,682 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:20,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,682 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:43:20,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:20,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,682 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:43:20,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:20,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,682 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:43:20,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:43:20,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,683 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:43:20,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:20,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,683 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:43:20,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:20,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,684 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:43:20,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:43:20,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:20,684 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:43:20,685 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:43:20,685 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:20,685 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:21,073 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:43:21,197 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:43:21,197 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:43:21,197 [1520] DEBUG index - ****Starting for new session +01/30/13 11:43:21,197 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:43:21,198 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:43:21,198 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:43:21,198 [1520] DEBUG index - in AccountsAjax +01/30/13 11:43:21,198 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:43:21,198 [1520] INFO index - current module is Accounts +01/30/13 11:43:21,235 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:21,235 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:21,235 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:21,236 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:21,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,236 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:21,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,236 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:21,236 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:21,245 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:21,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,245 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:21,245 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:21,246 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:21,246 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:21,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,247 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:21,247 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,247 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:21,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,248 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:21,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,248 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:21,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,249 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:21,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,249 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:21,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,250 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:21,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,250 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:21,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,251 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:21,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,251 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:21,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,252 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:21,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,252 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:21,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,253 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:21,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,253 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:21,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,254 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:21,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,254 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:21,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,255 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:21,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,255 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:21,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,256 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:21,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,256 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:21,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,257 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:21,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,257 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:21,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,258 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:21,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,258 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:21,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,258 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:21,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,259 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:21,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,259 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:21,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,260 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:21,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,260 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:21,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,261 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:21,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,261 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:21,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,262 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:21,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,262 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:21,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,262 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:21,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,263 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:21,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,263 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:21,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,264 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:21,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,264 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:21,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,265 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:21,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,265 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:21,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,266 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:21,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,266 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:21,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,267 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:21,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,267 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:21,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,267 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:21,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,268 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:21,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,268 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:21,273 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:43:21,273 [1520] DEBUG index - Prepared sql query parameters : [327,1,Accounts,AccountsAjax,138,2013-01-30 11:43:21] +01/30/13 11:43:21,276 [1520] DEBUG index - Current user is: admin +01/30/13 11:43:21,276 [1520] DEBUG index - Current theme is: softed +01/30/13 11:43:21,276 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:43:21,276 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:43:21,278 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:43:21,278 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:21,280 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:21,280 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:21,282 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:21,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:21,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,283 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:43:21,283 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:43:21,283 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:43:21,283 [1520] DEBUG index - skipping headers +01/30/13 11:43:21,283 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:43:21,284 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:21,291 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:21,291 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:21,291 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:21,291 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,291 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:21,291 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,292 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:21,292 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:21,299 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:21,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,299 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:21,315 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:43:21,315 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:21,320 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:21,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:21,320 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:21,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,320 [1520] DEBUG index - Entering get_contacts(138) method ... +01/30/13 11:43:21,320 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:43:21,321 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:21,322 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:43:21,323 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:43:21,323 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,323 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,323 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,323 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,323 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:21,323 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:21,331 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,332 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:21,332 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:21,332 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:21,333 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/30/13 11:43:21,333 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,334 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:21,334 [1520] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/30/13 11:43:21,334 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:21,334 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:43:21,334 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:21,335 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:43:21,335 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:21,335 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:21,335 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:21,338 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:43:21,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:21,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,341 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:43:21,341 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,341 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:43:21,341 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:43:21,345 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:43:21,345 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:43:21,345 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:43:21,345 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,345 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,347 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:43:21,347 [1520] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/30/13 11:43:21,349 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:43:21,350 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 138 +01/30/13 11:43:21,353 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/30/13 11:43:21,357 [1520] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,138,) method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:21,357 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:21,358 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,359 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,360 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:43:21,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,362 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:43:21,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,364 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:43:21,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,365 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:21,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,366 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:43:21,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,367 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:43:21,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:21,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:21,369 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:21,370 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:21,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:21,371 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:43:21,373 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:43:21,373 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:21,373 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:21,374 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,375 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:43:21,375 [1520] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:43:21,378 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:43:21,378 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/30/13 11:43:21,378 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:21,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,379 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:21,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:21,379 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:43:21,379 [1520] DEBUG index - Prepared sql query parameters : [6,4] +01/30/13 11:43:21,382 [1520] INFO index - getNextRow +01/30/13 11:43:21,382 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:43:21,382 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:43:21,382 [1520] DEBUG index - Exiting get_contacts method ... +01/30/13 11:43:25,956 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:43:26,081 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:43:26,081 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:43:26,081 [1520] DEBUG index - ****Starting for new session +01/30/13 11:43:26,082 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:43:26,082 [1520] DEBUG index - array ( + 'module' => 'Contacts', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Accounts', + 'RLreturn_module' => 'Accounts', + 'allselectedboxes' => '', + 'return_action' => 'CallRelatedList', + 'return_id' => '138', + 'parent_id' => '138', + 'RLparent_id' => '138', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'account_id' => '138', + 'pagenum' => '1', + 'button' => '新增 联系人', +) +01/30/13 11:43:26,082 [1520] INFO index - About to take action EditView +01/30/13 11:43:26,082 [1520] DEBUG index - in EditView +01/30/13 11:43:26,082 [1520] INFO index - current page is modules/Contacts/EditView.php +01/30/13 11:43:26,082 [1520] INFO index - current module is Contacts +01/30/13 11:43:26,120 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:26,121 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:26,121 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:26,121 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:26,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,121 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:26,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,122 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:26,122 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:26,132 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:26,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,133 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:26,133 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:26,133 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:26,134 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:26,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,134 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:26,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,135 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:26,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,135 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:26,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,136 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:26,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,136 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:26,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,137 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:26,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,137 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:26,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,138 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:26,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,138 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:26,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,139 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:26,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,139 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:26,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,140 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:26,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,140 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:26,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,141 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:26,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,141 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:26,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,141 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:26,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,142 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:26,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,142 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:26,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,143 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:26,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,143 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:26,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,144 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:26,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,144 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,145 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:26,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,146 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:26,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,146 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:26,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,147 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:26,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,147 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:26,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,148 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:26,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,148 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:26,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,148 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:26,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,149 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:26,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,149 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:26,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,150 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:26,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,150 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:26,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,151 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:26,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,151 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:26,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,152 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:26,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,152 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:26,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,153 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:26,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,153 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:26,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,153 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:26,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,154 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:26,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,154 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:26,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,155 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:26,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,155 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:26,159 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:43:26,159 [1520] DEBUG index - Prepared sql query parameters : [328,1,Contacts,EditView,,2013-01-30 11:43:26] +01/30/13 11:43:26,162 [1520] DEBUG index - Current user is: admin +01/30/13 11:43:26,162 [1520] DEBUG index - Current theme is: softed +01/30/13 11:43:26,162 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:43:26,162 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:43:26,164 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:43:26,164 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:26,166 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:26,166 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:26,167 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:26,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,168 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:43:26,168 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:43:26,168 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:43:26,169 [1520] DEBUG index - including headers +01/30/13 11:43:26,169 [1520] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/30/13 11:43:26,169 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:26,172 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:26,172 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:26,175 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:43:26,176 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:43:26,176 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,176 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,177 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:43:26,178 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,178 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:43:26,178 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,178 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:43:26,179 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:43:26,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:26,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,188 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:43:26,189 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:26,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:26,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,190 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:43:26,190 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:43:26,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:26,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,191 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:43:26,191 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:43:26,192 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:26,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,193 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:43:26,193 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:43:26,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,194 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:26,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,194 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:43:26,194 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:43:26,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,195 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:43:26,195 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:26,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:26,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,196 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:43:26,196 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:26,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:43:26,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:43:26,198 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:43:26,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,198 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:26,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,199 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:43:26,199 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:26,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:26,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,200 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:43:26,200 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:26,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:26,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:43:26,202 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:26,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,202 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:26,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,203 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:43:26,203 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:43:26,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:26,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,204 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:43:26,204 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:26,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:26,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,205 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:43:26,205 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:43:26,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:26,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,206 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:43:26,207 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:43:26,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,207 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:26,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,208 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:43:26,208 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:43:26,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,208 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:26,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,209 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:43:26,209 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:43:26,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:26,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,211 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:43:26,211 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:43:26,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:26,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,212 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:43:26,212 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:43:26,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,212 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:43:26) method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:43:26) method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:26,213 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:26,214 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:43:26,215 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:43:26,215 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:43:26,218 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,218 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,220 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,221 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,222 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,223 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,228 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:43:26,232 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:43:26,232 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,232 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:43:26,232 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:26,236 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:26,236 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:26,236 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,236 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:26,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,237 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:43:26,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,237 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:26,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,238 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:26,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,238 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:26,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,239 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:26,240 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,240 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:43:26,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,240 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:43:26,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,241 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:43:26,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,241 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:26,241 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:43:26,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,243 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:43:26,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,243 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:43:26,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,244 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:43:26,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,244 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,245 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:43:26,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,246 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:43:26,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,246 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,247 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:43:26,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,248 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:43:26,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,248 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:26,248 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:26,249 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:26,253 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:43:26,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,254 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:43:26,254 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,255 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:43:26,255 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,255 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:43:26,256 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,256 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:43:26,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,257 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:26,257 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:43:26,259 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:43:26,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,260 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:43:26,260 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:43:26,263 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:43:26,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,269 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:26,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,270 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:43:26,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:26,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,270 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:43:26,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:26,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,270 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:26,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,270 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:26,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,271 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:43:26,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:26,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,271 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:43:26,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:26,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,272 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:43:26,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:26,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,272 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:43:26,272 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:26,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,273 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:43:26,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:43:26,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,273 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:43:26,276 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:43:26,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,276 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:43:26,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:43:26,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,277 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:43:26,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:43:26,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,277 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:43:26,277 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:43:26,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,278 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:43:26,278 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:43:26,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,279 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:43:26,279 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:26,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,279 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:43:26,279 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:43:26,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,279 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:43:26,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:43:26,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,280 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:43:26,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:43:26,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,281 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:43:26,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:26,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,281 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:43:26,281 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:26,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,281 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:43:26,281 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:26,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,282 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:43:26,282 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:26,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,282 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:43:26,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:26,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,282 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:43:26,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:43:26,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,283 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:43:26,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:26,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,283 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:43:26,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:26,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,284 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:43:26,284 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:43:26,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,285 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:43:26,285 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:26,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,285 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:43:26,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:26,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,285 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:43:26,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:26,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,286 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:43:26,286 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:43:26,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,287 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:43:26,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:26,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,287 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:43:26,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,288 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:43:26,288 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:26,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,312 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:43:26,313 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:43:26,313 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,313 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,313 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:26,313 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:26,324 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,324 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,324 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:26,324 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:26,324 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:26,324 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:26,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,325 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:26,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,325 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:26,325 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:26,334 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:26,334 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,334 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:26,335 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:43:26,335 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,338 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:43:26,338 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,341 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:43:26,341 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,343 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:43:26,343 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,344 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:43:26,344 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,346 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:26,346 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,347 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:43:26,347 [1520] DEBUG index - Accountid Id from the request is 138 +01/30/13 11:43:26,348 [1520] DEBUG index - Entering setObjectValuesFromRequest(Contacts) method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Entering getBlocks(Contacts,create_view,,Array,) method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,348 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:43:26,348 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:26,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,351 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:43:26,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,351 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:43:26,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,351 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:43:26,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,352 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:26,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,352 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:43:26,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,352 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:43:26,353 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:43:26,353 [1520] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/30/13 11:43:26,366 [1520] DEBUG index - Entering getBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1, +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0, +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1, +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1, +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1, +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1, +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1, +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1, +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1, +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1, +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1, +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1, +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1, +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1, +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1, +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0, +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1, +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1, +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1, +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1, +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1, +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1, +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1, +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0, +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1, +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1, +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1, +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1, +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1, +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1, +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1, +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1, +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1, +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1, +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1, +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1, +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1, +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1, +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1, +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0, +,Array,4,Array) method ... +01/30/13 11:43:26,366 [1520] DEBUG index - Entering getOutputHtml(55,firstname,First Name,100,Array,1,Contacts) method ... +01/30/13 11:43:26,367 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,salutationtype) method ... +01/30/13 11:43:26,367 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,368 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:26,368 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:43:26,368 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:43:26,368 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:43:26,368 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:43:26,368 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:43:26,370 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:43:26,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:43:26,371 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:43:26,373 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:43:26,373 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:43:26,373 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,373 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:43:26,377 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 328 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #476 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #476 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:43:26,378 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:26,378 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:26,380 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,380 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:43:26,380 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,380 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:43:26,384 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,384 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:43:26,384 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,384 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:43:26,388 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,388 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:43:26,388 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:43:26,388 [1520] DEBUG index - Prepared sql query parameters : [salutationtype] +01/30/13 11:43:26,390 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct salutationtype FROM vtiger_salutationtype inner join vtiger_role2picklist on vtiger_salutationtype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:43:26,390 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:43:26,450 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:43:26,450 [1520] DEBUG index - function getTranslatedString(Mr.) - translated to (先生) +01/30/13 11:43:26,450 [1520] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/30/13 11:43:26,451 [1520] DEBUG index - function getTranslatedString(Mrs.) - translated to (女士) +01/30/13 11:43:26,451 [1520] DEBUG index - function getTranslatedString(Dr.) - translated to (博士) +01/30/13 11:43:26,451 [1520] DEBUG index - function getTranslatedString(Prof.) - translated to (专家) +01/30/13 11:43:26,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,451 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:43:26,452 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,453 [1520] DEBUG index - Entering getOutputHtml(4,contact_no,Contact Id,100,Array,1,Contacts) method ... +01/30/13 11:43:26,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,454 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:43:26,454 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,455 [1520] DEBUG index - Entering getOutputHtml(255,lastname,Last Name,100,Array,1,Contacts) method ... +01/30/13 11:43:26,456 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:43:26,457 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,457 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:26,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,458 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:43:26,458 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,459 [1520] DEBUG index - Entering getOutputHtml(11,phone,Office Phone,100,Array,1,Contacts) method ... +01/30/13 11:43:26,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,460 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:43:26,461 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,461 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Account Name,100,Array,1,Contacts) method ... +01/30/13 11:43:26,463 [1520] DEBUG index - Entering getAccountName(138) method ... +01/30/13 11:43:26,463 [1520] INFO index - in getAccountName 138 +01/30/13 11:43:26,463 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:43:26,463 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:26,465 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:43:26,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,466 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:26,466 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,467 [1520] DEBUG index - Entering getOutputHtml(11,mobile,Mobile,100,Array,1,Contacts) method ... +01/30/13 11:43:26,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,468 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:43:26,468 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,469 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Contacts) method ... +01/30/13 11:43:26,470 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:43:26,471 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:43:26,471 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:43:26,471 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:43:26,471 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,471 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:43:26,475 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 328 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #496 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #496 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:43:26,477 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:26,478 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:26,480 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,480 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:43:26,480 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,481 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:43:26,484 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,485 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:43:26,485 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:43:26,485 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:43:26,489 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:43:26,489 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:43:26,489 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:43:26,490 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:43:26,492 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:43:26,492 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:43:26,550 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:43:26,550 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:43:26,551 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:43:26,551 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:43:26,551 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:43:26,551 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:43:26,551 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:43:26,552 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:43:26,552 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:43:26,552 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:43:26,552 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:43:26,552 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:43:26,553 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:43:26,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,553 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:43:26,553 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,554 [1520] DEBUG index - Entering getOutputHtml(11,homephone,Home Phone,100,Array,1,Contacts) method ... +01/30/13 11:43:26,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,556 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:43:26,556 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,557 [1520] DEBUG index - Entering getOutputHtml(1,title,Title,100,Array,1,Contacts) method ... +01/30/13 11:43:26,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,558 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:43:26,559 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,560 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Contacts) method ... +01/30/13 11:43:26,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,561 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:43:26,561 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,562 [1520] DEBUG index - Entering getOutputHtml(1,department,Department,100,Array,1,Contacts) method ... +01/30/13 11:43:26,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,564 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:43:26,564 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,565 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Contacts) method ... +01/30/13 11:43:26,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,566 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:43:26,566 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,567 [1520] DEBUG index - Entering getOutputHtml(13,email,Email,100,Array,1,Contacts) method ... +01/30/13 11:43:26,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,569 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:43:26,569 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,570 [1520] DEBUG index - Entering getOutputHtml(5,birthday,Birthdate,100,Array,1,Contacts) method ... +01/30/13 11:43:26,571 [1520] INFO index - uitype is 5 +01/30/13 11:43:26,571 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,571 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:43:26,572 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:43:26,572 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:43:26,572 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,573 [1520] DEBUG index - Entering getOutputHtml(1,assistant,Assistant,100,Array,1,Contacts) method ... +01/30/13 11:43:26,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,574 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:43:26,575 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,575 [1520] DEBUG index - Entering getOutputHtml(57,contact_id,Reports To,100,Array,1,Contacts) method ... +01/30/13 11:43:26,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,577 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:43:26,577 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,578 [1520] DEBUG index - Entering getOutputHtml(11,assistantphone,Assistant Phone,100,Array,1,Contacts) method ... +01/30/13 11:43:26,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,579 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:43:26,580 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,580 [1520] DEBUG index - Entering getOutputHtml(13,secondaryemail,Secondary Email,100,Array,1,Contacts) method ... +01/30/13 11:43:26,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,582 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:43:26,582 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,583 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Contacts) method ... +01/30/13 11:43:26,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,583 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:43:26,584 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,584 [1520] DEBUG index - Entering getOutputHtml(56,donotcall,Do Not Call,100,Array,1,Contacts) method ... +01/30/13 11:43:26,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,585 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:43:26,585 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,585 [1520] DEBUG index - Entering getOutputHtml(56,reference,Reference,10,Array,1,Contacts) method ... +01/30/13 11:43:26,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,586 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:43:26,586 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,587 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Contacts) method ... +01/30/13 11:43:26,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,587 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:26,587 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:43:26,587 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:43:26,589 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:43:26,589 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:43:26,590 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:43:26,590 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:43:26,590 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:43:26,593 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:26,593 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:26,595 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:26,595 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:26,598 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:26,598 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:43:26,598 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:43:26,598 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:43:26,598 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:43:26,598 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:43:26,598 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:43:26,599 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:43:26,599 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:43:26,601 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:26,601 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:43:26,601 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:43:26,601 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:43:26,601 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:43:26,601 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:43:26,602 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,602 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Contacts) method ... +01/30/13 11:43:26,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,603 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:43:26,603 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,603 [1520] DEBUG index - Entering getOutputHtml(56,portal,Portal User,100,Array,1,Contacts) method ... +01/30/13 11:43:26,604 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,604 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:43:26,604 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,605 [1520] DEBUG index - Entering getOutputHtml(5,support_start_date,Support Start Date,100,Array,1,Contacts) method ... +01/30/13 11:43:26,605 [1520] INFO index - uitype is 5 +01/30/13 11:43:26,605 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,605 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,605 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:43:26,605 [1520] INFO index - in getNewDisplayDate +01/30/13 11:43:26,606 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:43:26) method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,606 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:43:26,606 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:43:26,606 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,607 [1520] DEBUG index - Entering getOutputHtml(5,support_end_date,Support End Date,100,Array,1,Contacts) method ... +01/30/13 11:43:26,607 [1520] INFO index - uitype is 5 +01/30/13 11:43:26,608 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:43:26,608 [1520] INFO index - in getNewDisplayDate +01/30/13 11:43:26,608 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:43:26) method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,609 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:43:26,609 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:43:26,609 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:43:26,609 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,609 [1520] DEBUG index - Entering getOutputHtml(21,mailingstreet,Mailing Street,100,Array,1,Contacts) method ... +01/30/13 11:43:26,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,610 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:43:26,610 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,611 [1520] DEBUG index - Entering getOutputHtml(21,otherstreet,Other Street,100,Array,1,Contacts) method ... +01/30/13 11:43:26,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,611 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:43:26,611 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,612 [1520] DEBUG index - Entering getOutputHtml(1,mailingpobox,Mailing Po Box,100,Array,1,Contacts) method ... +01/30/13 11:43:26,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,613 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:43:26,613 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,613 [1520] DEBUG index - Entering getOutputHtml(1,otherpobox,Other Po Box,100,Array,1,Contacts) method ... +01/30/13 11:43:26,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,614 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:43:26,614 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,614 [1520] DEBUG index - Entering getOutputHtml(1,mailingcity,Mailing City,100,Array,1,Contacts) method ... +01/30/13 11:43:26,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,615 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:43:26,615 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,616 [1520] DEBUG index - Entering getOutputHtml(1,othercity,Other City,100,Array,1,Contacts) method ... +01/30/13 11:43:26,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,616 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:43:26,616 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,617 [1520] DEBUG index - Entering getOutputHtml(1,mailingstate,Mailing State,100,Array,1,Contacts) method ... +01/30/13 11:43:26,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,618 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:43:26,618 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,618 [1520] DEBUG index - Entering getOutputHtml(1,otherstate,Other State,100,Array,1,Contacts) method ... +01/30/13 11:43:26,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,619 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:43:26,619 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,619 [1520] DEBUG index - Entering getOutputHtml(1,mailingzip,Mailing Zip,100,Array,1,Contacts) method ... +01/30/13 11:43:26,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,620 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:43:26,620 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,621 [1520] DEBUG index - Entering getOutputHtml(1,otherzip,Other Zip,100,Array,1,Contacts) method ... +01/30/13 11:43:26,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,621 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:43:26,621 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,622 [1520] DEBUG index - Entering getOutputHtml(1,mailingcountry,Mailing Country,100,Array,1,Contacts) method ... +01/30/13 11:43:26,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,623 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:43:26,623 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,623 [1520] DEBUG index - Entering getOutputHtml(1,othercountry,Other Country,100,Array,1,Contacts) method ... +01/30/13 11:43:26,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,624 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:43:26,624 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,625 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Contacts) method ... +01/30/13 11:43:26,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,625 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:43:26,625 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,626 [1520] DEBUG index - Entering getOutputHtml(69,imagename,Contact Image,100,Array,1,Contacts) method ... +01/30/13 11:43:26,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,627 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:43:26,627 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:43:26,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,627 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:43:26,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,627 [1520] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/30/13 11:43:26,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,627 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:43:26,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,628 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/30/13 11:43:26,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,628 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:26,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,628 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:26,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,629 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:43:26,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,629 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:43:26,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,629 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:43:26,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,629 [1520] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/30/13 11:43:26,629 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:43:26,630 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:43:26,630 [1520] INFO index - Contact detail view +01/30/13 11:43:26,630 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/30/13 11:43:26,630 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,630 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:43:26,631 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:43:26,631 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:43:26,633 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,633 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,634 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:26,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:26,634 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:43:26,634 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:26,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,638 [1520] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/30/13 11:43:26,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,638 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:43:26,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,638 [1520] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/30/13 11:43:26,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,639 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:43:26,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,639 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:43:26,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,639 [1520] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/30/13 11:43:26,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,640 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:26,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,640 [1520] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/30/13 11:43:26,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,641 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:43:26,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,641 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/30/13 11:43:26,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,641 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:43:26,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,642 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:43:26,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,642 [1520] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/30/13 11:43:26,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,642 [1520] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/30/13 11:43:26,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,643 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:43:26,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,643 [1520] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/30/13 11:43:26,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,643 [1520] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/30/13 11:43:26,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,644 [1520] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/30/13 11:43:26,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,644 [1520] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/30/13 11:43:26,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,644 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:43:26,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,645 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:43:26,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,645 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:26,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,645 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:43:26,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,646 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:43:26,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,646 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:43:26,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,646 [1520] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/30/13 11:43:26,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,647 [1520] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/30/13 11:43:26,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,647 [1520] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/30/13 11:43:26,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,647 [1520] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/30/13 11:43:26,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,648 [1520] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/30/13 11:43:26,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,648 [1520] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/30/13 11:43:26,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,648 [1520] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/30/13 11:43:26,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,649 [1520] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/30/13 11:43:26,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,649 [1520] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/30/13 11:43:26,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,649 [1520] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/30/13 11:43:26,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,650 [1520] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/30/13 11:43:26,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,650 [1520] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/30/13 11:43:26,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,650 [1520] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/30/13 11:43:26,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,651 [1520] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/30/13 11:43:26,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,651 [1520] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/30/13 11:43:26,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,651 [1520] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/30/13 11:43:26,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,652 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:43:26,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,652 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:43:26,652 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:43:26,652 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:43:26,652 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:26,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:26,654 [1520] DEBUG index - Entering Button_Check(Contacts) method ... +01/30/13 11:43:26,654 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:26,654 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,654 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:43:26,655 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,655 [1520] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/30/13 11:43:26,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,656 [1520] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/30/13 11:43:26,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,656 [1520] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/30/13 11:43:26,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,657 [1520] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/30/13 11:43:26,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,657 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:26,658 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,680 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:43:26,681 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:26,681 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:43:26,682 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/30/13 11:43:26,682 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,683 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:43:26,683 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:43:26,683 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:43:26,684 [1520] DEBUG index - Prepared sql query parameters : [Contacts] +01/30/13 11:43:26,686 [1520] DEBUG index - Prepared sql query being executed : select contact_no from vtiger_contactdetails where contact_no = ? +01/30/13 11:43:26,686 [1520] DEBUG index - Prepared sql query parameters : [CON13] +01/30/13 11:43:26,689 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:43:26,734 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,735 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:43:26,735 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:26,741 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:26,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:26,741 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:43:26,741 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:26,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,751 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,752 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:26,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,752 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:26,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,753 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,754 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,754 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,755 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,756 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,757 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:26,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,757 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:26,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:26,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:26,761 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:43:26,950 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:43:26,950 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:26,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:42,077 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:43:42,199 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:43:42,199 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:43:42,199 [1520] DEBUG index - ****Starting for new session +01/30/13 11:43:42,200 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:43:42,200 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:43:42,200 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:43:42,200 [1520] DEBUG index - in CalendarAjax +01/30/13 11:43:42,200 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:43:42,200 [1520] INFO index - current module is Calendar +01/30/13 11:43:42,237 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:42,237 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:42,237 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:42,237 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:42,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:42,238 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:42,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:42,238 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:42,238 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:42,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:42,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:42,246 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:42,247 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:42,247 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:42,248 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:42,248 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,248 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:42,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,249 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:42,249 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,249 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:42,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,250 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:42,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,250 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:42,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,251 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:42,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,251 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:42,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,252 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:42,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,252 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:42,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,253 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:42,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,253 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:42,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,253 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:42,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,254 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:42,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,254 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:42,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,255 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:42,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,255 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:42,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,256 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:42,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,256 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:42,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,257 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:42,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,257 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:42,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,258 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:42,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,258 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:42,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,258 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:42,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,259 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:42,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,259 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:42,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,260 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:42,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,260 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:42,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,260 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:42,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,261 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:42,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,261 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:42,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,262 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:42,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,262 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:42,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,263 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:42,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,263 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:42,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,264 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:42,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,264 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:42,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,265 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:42,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,265 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:42,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,266 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:42,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,266 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:42,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,267 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:42,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,267 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:42,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,268 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:42,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,268 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:42,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,268 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:42,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,269 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:42,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:42,269 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:42,270 [1520] DEBUG index - Current user is: admin +01/30/13 11:43:42,270 [1520] DEBUG index - Current theme is: softed +01/30/13 11:43:42,270 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:43:42,270 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:43:42,272 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:43:42,272 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:42,274 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:42,274 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:42,275 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:42,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:42,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:42,276 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:43:42,276 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:43:42,276 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:43:42,277 [1520] DEBUG index - skipping headers +01/30/13 11:43:42,277 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:43:42,278 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:42,282 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:42,283 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:43:42,283 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:43:42,283 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:43:42,287 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:44')) +01/30/13 11:43:42,291 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:43:56,832 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:43:56,956 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:43:56,956 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:43:56,956 [1520] DEBUG index - ****Starting for new session +01/30/13 11:43:56,956 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:43:56,957 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:43:56,957 [1520] INFO index - About to take action index +01/30/13 11:43:56,957 [1520] DEBUG index - in index +01/30/13 11:43:56,957 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:43:56,957 [1520] INFO index - current module is Accounts +01/30/13 11:43:56,994 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:56,994 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:56,994 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:56,994 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:56,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:56,995 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:56,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:56,995 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:56,995 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:57,006 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:57,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,006 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:57,007 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:57,007 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:57,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,008 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:57,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,008 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:57,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,009 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:57,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,009 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:57,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,009 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:57,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,010 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:57,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,010 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:57,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,011 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:57,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,011 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:57,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,012 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:57,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,012 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:57,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,013 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:57,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,013 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:57,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,014 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:57,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,014 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:57,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,015 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:57,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,015 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:57,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,015 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:57,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,016 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:57,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,016 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:57,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,017 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:57,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,017 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,018 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:57,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,019 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:57,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,019 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:57,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,020 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:57,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,020 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:57,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,021 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:57,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,021 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:57,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,022 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:57,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,022 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:57,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,023 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:57,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,023 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:57,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,023 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:57,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,024 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:57,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,024 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:57,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,025 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:57,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,025 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:57,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,026 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:57,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,026 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:57,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,027 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:57,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,027 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:57,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,028 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:57,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,028 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:57,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,029 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:57,033 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:43:57,033 [1520] DEBUG index - Prepared sql query parameters : [329,1,Accounts,index,,2013-01-30 11:43:57] +01/30/13 11:43:57,036 [1520] DEBUG index - Current user is: admin +01/30/13 11:43:57,036 [1520] DEBUG index - Current theme is: softed +01/30/13 11:43:57,036 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:43:57,037 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:43:57,038 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:43:57,038 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:57,040 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:57,040 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:57,042 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:57,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,043 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:43:57,043 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:43:57,043 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:43:57,043 [1520] DEBUG index - including headers +01/30/13 11:43:57,043 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,044 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,047 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:57,047 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:57,049 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:43:57,050 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:43:57,050 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,050 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:43:57,051 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,051 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:43:57,051 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,051 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:43:57,052 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,052 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:43:57,052 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,052 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:43:57,052 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:43:57,053 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:43:57,054 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:43:57,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,063 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:43:57,063 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:57,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,064 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:43:57,064 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:43:57,065 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,066 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:43:57,066 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:43:57,066 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:57,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,068 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:43:57,068 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:43:57,068 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,068 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:57,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,069 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:43:57,069 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:43:57,069 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,070 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:57,070 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,070 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:43:57,070 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:57,071 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:57,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,071 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:43:57,071 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:57,072 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:43:57,073 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,073 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:43:57,073 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:43:57,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,073 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:57,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,074 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:43:57,074 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:57,075 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:57,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,075 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:43:57,075 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:57,076 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:57,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,077 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:43:57,077 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:57,077 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,077 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:57,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,078 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:43:57,078 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:43:57,078 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:57,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,079 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:43:57,079 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:57,080 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:57,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,080 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:43:57,080 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:43:57,081 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,081 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:57,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,081 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:43:57,082 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:43:57,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,082 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:57,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,083 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:43:57,083 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:43:57,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,083 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:57,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,084 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:43:57,084 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:43:57,085 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:57,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,086 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:43:57,086 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:43:57,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:57,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,087 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:43:57,087 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:43:57,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,087 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:43:57) method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:43:57) method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,088 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,089 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,089 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:43:57,089 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:43:57,089 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:43:57,093 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,094 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,095 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,096 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,098 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,099 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,100 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,101 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,103 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,103 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:43:57,107 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:43:57,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,107 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:43:57,107 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:57,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,110 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:57,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,110 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:43:57,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,111 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:43:57,111 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,111 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:43:57,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,112 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:43:57,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,113 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:43:57,113 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,113 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,114 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,115 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:43:57,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,116 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:43:57,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,116 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:43:57,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,117 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:43:57,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,117 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:43:57,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,118 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:43:57,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,118 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,119 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,120 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:43:57,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,121 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:43:57,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,121 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:43:57,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,122 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:57,122 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:43:57,122 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:57,126 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:43:57,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,127 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:43:57,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,128 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:43:57,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,128 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:43:57,129 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,129 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:43:57,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,130 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:57,130 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:43:57,132 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:43:57,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,133 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:43:57,133 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:43:57,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:43:57,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,142 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,142 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,143 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:43:57,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:57,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,143 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:43:57,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,143 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:57,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,144 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:57,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:57,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,144 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:43:57,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:57,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,144 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:43:57,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:57,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,145 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:43:57,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:57,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,145 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:43:57,146 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:57,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,146 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:43:57,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:43:57,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,146 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:43:57,148 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:43:57,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,149 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:43:57,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:43:57,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,150 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:43:57,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:43:57,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,150 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:43:57,150 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:43:57,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,151 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:43:57,151 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:43:57,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,152 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:43:57,152 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:57,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,152 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:43:57,152 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:43:57,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,153 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:43:57,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:43:57,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,153 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:43:57,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:43:57,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,154 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:43:57,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:57,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,154 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:43:57,155 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:57,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,155 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:43:57,155 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:57,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,155 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:43:57,155 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:57,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,155 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:43:57,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:57,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,156 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:43:57,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:43:57,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,156 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:43:57,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:57,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,157 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:43:57,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:57,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,157 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:43:57,157 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:43:57,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,158 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:43:57,158 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:57,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,158 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:43:57,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:57,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,158 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:43:57,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:57,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,159 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:43:57,159 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:43:57,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,160 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:43:57,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:57,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,160 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:43:57,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,161 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:43:57,161 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:43:57,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,166 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,166 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,166 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,167 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,167 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:43:57,167 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,168 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:43:57,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,168 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:43:57,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,169 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:43:57,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,170 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:43:57,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,170 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:43:57,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,171 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:57,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,171 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:43:57,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,172 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:43:57,172 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,172 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,173 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,173 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,173 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:43:57,173 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,182 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,182 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,183 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,183 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:43:57,183 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,183 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,183 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:43:57,183 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:43:57,186 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:43:57,186 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,187 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,188 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:43:57,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,188 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:43:57,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,189 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:43:57,189 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:43:57,189 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:43:57,189 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:43:57,189 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:43:57,189 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:43:57,190 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:43:57,191 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:43:57,191 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:43:57,191 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:43:57,193 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:57,193 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:57,196 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:57,196 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:57,197 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:57,197 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:43:57,198 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:43:57,199 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:43:57,199 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:43:57,200 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:43:57,200 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:43:57,201 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:43:57,201 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:43:57,203 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:57,203 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:43:57,203 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,203 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:43:57,206 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,206 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,206 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,206 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,207 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,207 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:43:57,208 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:43:57,208 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,210 [1520] DEBUG index - Entering when status=0 +01/30/13 11:43:57,210 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:43:57,210 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:43:57,210 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,210 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:43:57,210 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,216 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,216 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:43:57,216 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,219 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:43:57,219 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:43:57,221 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:43:57,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,221 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:43:57,222 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:43:57,222 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:43:57,222 [1520] DEBUG index - Entering when status=0 +01/30/13 11:43:57,222 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:43:57,222 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:43:57,222 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:43:57,223 [1520] DEBUG index - Entering when status=0 +01/30/13 11:43:57,223 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:43:57,223 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:43:57,223 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,223 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,223 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:43:57,223 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,225 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,225 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:43:57,225 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,228 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:43:57,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,228 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:43:57,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:43:57,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,230 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:43:57,230 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:43:57,234 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:43:57,235 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:43:57,252 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:43:57,256 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:43:57,256 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:43:57,260 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:43:57,260 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:43:57,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,260 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:43:57,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:43:57,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,262 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,263 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:43:57,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:43:57,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,266 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,267 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:43:57,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,268 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:43:57,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,268 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:43:57,268 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:43:57,271 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:43:57,271 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,271 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:43:57,275 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:43:57,275 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:43:57,308 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,308 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:43:57,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,310 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:43:57,313 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,313 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:43:57,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,314 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:43:57,316 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:43:57,316 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:43:57,362 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,363 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:43:57,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,365 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:43:57,367 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,367 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:43:57,369 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,370 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:43:57,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,372 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:43:57,374 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,374 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:43:57,376 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,376 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:43:57,378 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,379 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:43:57,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,381 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:43:57,384 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:43:57,384 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:43:57,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,417 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:43:57,420 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,420 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:43:57,422 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,422 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:43:57,424 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,424 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:43:57,427 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:43:57,427 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:57,429 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,429 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:43:57,431 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,431 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:43:57,434 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:43:57,434 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:43:57,465 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,465 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:43:57,467 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,467 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:43:57,469 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,469 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:43:57,471 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,471 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:43:57,473 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,474 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:43:57,475 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,475 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:43:57,477 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,477 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:43:57,480 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,480 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:43:57,482 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,482 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:43:57,485 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,486 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:43:57,488 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,488 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:43:57,490 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:43:57,490 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:43:57,492 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:43:57,497 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:43:57,497 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:43:57,499 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:43:57,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:57,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,500 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:43:57,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:43:57,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,500 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:43:57,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:57,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,500 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:43:57,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:43:57,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,501 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:43:57,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:43:57,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,501 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:43:57,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:43:57,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,501 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:43:57,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:57,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,502 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:43:57,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:43:57,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,502 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:43:57,502 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:43:57,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,502 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:43:57,502 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:43:57,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,502 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:43:57,503 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:43:57,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,503 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:43:57,503 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:43:57,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,503 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:43:57,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:57,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,503 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:43:57,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:43:57,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,504 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:43:57,504 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:57,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,504 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:43:57,504 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:43:57,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,504 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:43:57,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,504 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:43:57,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,505 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:43:57,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:57,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,505 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:43:57,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:43:57,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,505 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:43:57,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,506 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,506 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:43:57,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:57,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,506 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:43:57,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:43:57,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:43:57,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:57,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,507 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:43:57,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:43:57,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:43:57,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:57,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,507 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:43:57,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:43:57,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,508 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:43:57,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:57,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,508 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:43:57,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:43:57,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,508 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:43:57,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:57,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,509 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:43:57,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:43:57,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,509 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:43:57,509 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:57,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,509 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:43:57,509 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:43:57,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,510 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:43:57,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,510 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:43:57,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:43:57,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,510 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:43:57,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:43:57,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,511 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:43:57,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:43:57,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,512 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:43:57,512 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:43:57,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,512 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:43:57,512 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:43:57,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,512 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:43:57,513 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:57,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,513 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:43:57,513 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:43:57,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,513 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:43:57,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:57,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,513 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:43:57,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:43:57,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,514 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:43:57,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:57,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,514 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:43:57,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:43:57,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,514 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:43:57,514 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:57,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,514 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:43:57,515 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:43:57,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,515 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:43:57,515 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:57,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,515 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:43:57,515 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:43:57,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,515 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:43:57,515 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:57,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,516 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:43:57,516 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:43:57,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,516 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:43:57,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:57,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,516 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:43:57,516 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:43:57,516 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,516 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:43:57,517 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:43:57,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,517 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:43:57,517 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:43:57,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,517 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:43:57,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,561 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:43:57,561 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:43:57,563 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,564 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,564 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:43:57,565 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,569 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:43:57,569 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,571 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:43:57,572 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,573 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:43:57,574 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:57,576 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:43:57,576 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:43:57,577 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:43:57,577 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:57,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,577 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,577 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:43:57,578 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:57,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,578 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:43:57,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,578 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:43:57,579 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:43:57,581 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:43:57,581 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:43:57,583 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,583 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,583 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,584 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,584 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,584 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,584 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,585 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,585 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,585 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,585 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,586 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,586 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,586 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,586 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,586 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,587 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,587 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,587 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,587 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,588 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,588 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,588 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,589 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,589 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,589 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,589 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,589 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,589 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,590 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,590 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:43:57,593 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:43:57,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,597 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,598 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,599 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,601 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:43:57,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,601 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:57,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,602 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:43:57,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,602 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:43:57,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,602 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:43:57,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,603 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:57,603 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,603 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,604 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:43:57,604 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:43:57,604 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:43:57,605 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:43:57,607 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:43:57,607 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5,5] +01/30/13 11:43:57,609 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:43:57,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,610 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:43:57,610 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:57,612 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,612 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,612 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,613 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,613 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,613 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,613 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,614 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,614 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,614 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,615 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,615 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,616 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,616 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,617 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,617 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,617 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,617 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,618 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,619 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,619 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,619 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,620 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,620 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,620 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,620 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,621 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,621 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,621 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,622 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,622 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,622 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,625 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,626 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,626 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,626 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,626 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,626 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,626 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:43:57,628 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,629 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,629 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,629 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,630 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,630 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,630 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,631 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,631 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,631 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,631 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,632 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,633 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,633 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,633 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,633 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,634 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,634 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,635 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,635 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,635 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,635 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,635 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,636 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,636 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,637 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,637 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,637 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,637 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,638 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,641 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,641 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,641 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,642 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,642 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,642 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,642 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:43:57,644 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,645 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,645 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,645 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,646 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,646 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,646 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,646 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,647 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,647 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,648 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,648 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,648 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,648 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,649 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,649 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,649 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,649 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,650 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,650 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,650 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,650 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,651 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,651 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,651 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,651 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,652 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,653 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,653 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,653 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,653 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,653 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,654 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,657 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,657 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,657 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,658 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,658 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,658 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,658 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,660 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,660 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,660 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,661 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,661 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,661 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,661 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,662 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,662 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,663 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,663 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,663 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,663 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,664 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,664 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,664 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,664 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,665 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,665 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,665 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,665 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,666 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,666 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,666 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,666 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,667 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,667 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,667 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,667 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,668 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,668 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,668 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,669 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,669 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,669 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,669 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,670 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,673 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,673 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,673 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,673 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,673 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,674 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,674 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,674 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:43:57,676 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,676 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,676 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,677 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,677 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,677 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,677 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,678 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,678 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,678 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,678 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,678 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,679 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,679 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,679 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,679 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,680 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,680 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,680 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,680 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,681 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,681 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,681 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,681 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,682 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,682 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,683 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,683 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,683 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,684 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,684 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,685 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,685 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,685 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,688 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,688 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,689 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,689 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,689 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,689 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,689 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:43:57,691 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,691 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,692 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,692 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,692 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,693 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,693 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,693 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,694 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,694 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,694 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,694 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,695 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,695 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,695 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,695 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,696 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,696 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,697 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,697 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,697 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,698 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,699 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,699 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,700 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,700 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,704 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,704 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,704 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,704 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,705 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,705 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,705 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:43:57,707 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,707 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,707 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,708 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,708 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,708 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,708 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,709 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,709 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,709 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,709 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,710 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,710 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,710 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,711 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,711 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,711 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,711 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,712 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,712 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,712 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,712 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,713 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,713 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,713 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,713 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,714 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,714 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,714 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,714 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,715 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,715 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,715 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,716 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,716 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,716 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,717 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,720 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,720 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,720 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,720 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,720 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,721 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,721 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,721 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:43:57,723 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,723 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,723 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,723 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,724 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,724 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,724 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,724 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,725 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,725 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,725 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,725 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,726 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,726 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,726 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,726 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,727 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,727 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,727 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,728 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,728 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,728 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,729 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,729 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,729 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,730 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,730 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,730 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,731 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,731 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,731 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,731 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,731 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,732 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,735 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,735 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,735 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,736 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,736 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,736 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,736 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:43:57,738 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,738 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,738 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,739 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,739 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,739 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,739 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,740 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,740 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,741 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,741 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,741 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,741 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,742 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,742 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,742 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,742 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,743 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,743 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,743 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,743 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,744 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,744 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,745 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,745 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,745 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,746 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,746 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,746 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,747 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,747 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,747 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,748 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,751 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,751 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,751 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,751 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,752 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,752 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,752 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:43:57,754 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,754 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,754 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,755 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,755 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,755 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,755 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,756 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,756 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,756 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,756 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,756 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,757 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,757 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,757 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,758 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,758 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,758 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,758 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,759 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,759 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,759 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,760 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,760 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,760 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,760 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,761 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,761 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,761 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,761 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,762 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,762 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,762 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,763 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,763 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,763 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,764 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,767 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,767 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,767 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,767 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,767 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,768 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:43:57,773 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,773 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,773 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,774 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,774 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,774 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,774 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,775 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,775 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,775 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,775 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,775 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,776 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,776 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,776 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,776 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,777 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,777 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,777 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,777 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,778 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,778 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,779 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,779 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,780 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,780 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,780 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,780 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,781 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,781 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,781 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,782 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,782 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,782 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,782 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,782 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,786 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,786 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,786 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,786 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,786 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,786 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,786 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,786 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:43:57,789 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,789 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,789 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,790 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,790 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,790 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,790 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,791 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,791 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,791 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,791 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,791 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,792 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,792 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,792 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,793 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,793 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,793 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,793 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,794 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,794 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,794 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,794 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,795 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,795 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:43:57,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,796 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,796 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,796 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,797 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,797 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:43:57,797 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:43:57,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,798 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:43:57,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:43:57,798 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:43:57,798 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:43:57,801 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:43:57,802 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:43:57,802 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,802 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:43:57,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,802 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:43:57,802 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:43:57,802 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:43:57,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,805 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:43:57,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,805 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:57,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,805 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:43:57,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,806 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:43:57,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,806 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:43:57,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,806 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:57,806 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:43:57,806 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:43:57,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,807 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:57,807 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,807 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,809 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,809 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:43:57,810 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,810 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,811 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,812 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:43:57,812 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,812 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,814 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,814 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:43:57,814 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,814 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,816 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,816 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:43:57,816 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,816 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,818 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,818 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:43:57,818 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,818 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,820 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,820 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:43:57,820 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,820 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,821 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,822 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:43:57,822 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,822 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,823 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,823 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:43:57,824 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,824 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,825 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,825 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:43:57,825 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,825 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,830 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,830 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:43:57,830 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,830 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,832 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,832 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:43:57,832 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,832 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,834 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,835 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:43:57,835 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,835 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,836 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,837 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:43:57,837 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,837 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,838 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,839 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:43:57,839 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,839 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,840 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,841 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:43:57,841 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,841 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,842 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,843 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:43:57,843 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,843 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,844 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,844 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:43:57,844 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,844 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,846 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,846 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:43:57,846 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,847 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,848 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,849 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:57,849 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,849 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,850 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,851 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:43:57,851 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,851 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,852 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,853 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:43:57,853 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,853 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,854 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,854 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:43:57,854 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,855 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:43:57,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,856 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:43:57,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,856 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:43:57,856 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,856 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,858 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,858 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:43:57,859 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,859 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,860 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,861 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:43:57,861 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,861 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,862 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,863 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:43:57,863 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,863 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,864 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,864 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:43:57,864 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,865 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,866 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,866 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:43:57,867 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,867 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,868 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,868 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:43:57,868 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,868 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,870 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,870 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:43:57,870 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,870 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,872 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,872 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:43:57,872 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,872 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,875 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,875 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:43:57,875 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,876 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,877 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,877 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:43:57,877 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,878 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,879 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,879 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:43:57,879 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,879 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:43:57,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,881 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:43:57,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,881 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:43:57,881 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:43:57,881 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:43:57,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,883 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:43:57,883 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:43:57,883 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:43:57,883 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:43:57,886 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:43:57,886 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:43:57,886 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:43:57,886 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:43:57,888 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:43:57,888 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:43:57,888 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:43:57,888 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,888 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:43:57,888 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:43:57,899 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:43:57,899 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:43:57,900 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,904 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:43:57,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,904 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:43:57,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,905 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:43:57,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,905 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:43:57,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,905 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:43:57,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,906 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:43:57,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,906 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:43:57,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,906 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:43:57,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,906 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:43:57,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,907 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:43:57,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,907 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:43:57,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,907 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:43:57,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,908 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:43:57,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,908 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:43:57,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,908 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:43:57,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,908 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:43:57,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,909 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:43:57,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,909 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:43:57,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,909 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:43:57,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,910 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:43:57,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,910 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:43:57,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,910 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:43:57,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,911 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:43:57,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,911 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:43:57,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,911 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:43:57,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,911 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:43:57,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,912 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:43:57,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,912 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:43:57,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,912 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:43:57,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,913 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:43:57,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,913 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:43:57,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,913 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:43:57,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,914 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:43:57,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,914 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:43:57,914 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:43:57,916 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:43:57,916 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:43:57,916 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:43:57,916 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:43:57,916 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:43:57,916 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:43:57,916 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:43:57,922 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:43:57,922 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:43:57,922 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:43:57,923 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:43:57,925 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:43:57,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:43:57,926 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:43:57,926 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:43:57,926 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:43:57,928 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:43:57,928 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:43:57,928 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:43:57,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,931 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,932 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:43:57,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,932 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:43:57,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,932 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,933 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,933 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,933 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,934 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,934 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,934 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,935 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,937 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:43:57,937 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:43:57,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,938 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:43:57,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,938 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:43:57,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,938 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:43:57,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,939 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:43:57,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,939 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:43:57,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,939 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:43:57,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,940 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:43:57,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,940 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:43:57,943 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:57,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,943 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:43:57,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,944 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,944 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:43:57,944 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:43:57,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:43:57,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,945 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:43:57,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:43:57,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:43:57,945 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:43:57,946 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:43:57,946 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:43:57,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,481 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:02,607 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:02,607 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:02,607 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:02,608 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:02,608 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '138', +) +01/30/13 11:44:02,608 [1520] INFO index - About to take action DetailView +01/30/13 11:44:02,608 [1520] DEBUG index - in DetailView +01/30/13 11:44:02,608 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:44:02,609 [1520] INFO index - current module is Accounts +01/30/13 11:44:02,647 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:02,647 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:02,647 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:02,647 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:02,647 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,648 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:02,648 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,648 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:02,648 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:02,659 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:02,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,660 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:02,660 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:02,660 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:02,661 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:02,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,661 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:02,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,662 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:02,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,662 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:02,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,663 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:02,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,663 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:02,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,664 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:02,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,664 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:02,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,665 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:02,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,665 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:02,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,666 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:02,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,666 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:02,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,667 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:02,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,667 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:02,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,668 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:02,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,668 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:02,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,669 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:02,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,669 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:02,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,670 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:02,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,670 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:02,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,670 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:02,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,671 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:02,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,671 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:02,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,672 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:02,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,672 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:02,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,673 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:02,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,673 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:02,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,673 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:02,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,674 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:02,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,674 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:02,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,675 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:02,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,675 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:02,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,676 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:02,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,676 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:02,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,677 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:02,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,677 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:02,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,678 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:02,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,678 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:02,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,679 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:02,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,679 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:02,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,680 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:02,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,680 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:02,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,681 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:02,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,681 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:02,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,682 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:02,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,682 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:02,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,683 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:02,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:02,683 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:02,688 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:02,688 [1520] DEBUG index - Prepared sql query parameters : [330,1,Accounts,DetailView,138,2013-01-30 11:44:02] +01/30/13 11:44:02,692 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:02,692 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:02,692 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:02,692 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:02,694 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:02,694 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:02,696 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:02,696 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:02,697 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:02,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,698 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:02,698 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:02,698 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,698 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,699 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,699 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,699 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:02,699 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:02,708 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,708 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:02,708 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:44:02,708 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:44:02,708 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:44:02,712 [1520] INFO index - in track view method Accounts +01/30/13 11:44:02,713 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:02,713 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:44:02,715 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:44:02,715 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,717 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:44:02,717 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:44:02,717 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:44:02,721 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:44:02,721 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:44:02,722 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:44:02,722 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:02,723 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:02,723 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:02,723 [1520] DEBUG index - including headers +01/30/13 11:44:02,723 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:44:02,724 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:44:02,727 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:02,727 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:02,729 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:44:02,729 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:44:02,729 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:02,732 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:44:02,732 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:44:02,733 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:44:02,733 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,733 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:44:02,734 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,734 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:44:02,734 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,734 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:44:02,734 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,735 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:44:02,735 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,735 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:44:02,735 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,736 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:44:02,736 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,736 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:44:02,736 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:02,736 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:44:02,737 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:44:02,737 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:44:02,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,746 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:44:02,746 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:02,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:02,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,747 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:44:02,748 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:44:02,748 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:02,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,749 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:44:02,749 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:44:02,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:02,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,751 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:44:02,751 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:44:02,751 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,752 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:02,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,752 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:44:02,752 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:44:02,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:02,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,753 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:44:02,753 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:02,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:02,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,755 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:44:02,755 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:02,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:44:02,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,756 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:44:02,756 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:44:02,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,757 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:02,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,757 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:44:02,757 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:02,758 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:02,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,758 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:44:02,759 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:02,759 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:02,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,760 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:44:02,760 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:02,760 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,760 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:02,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,761 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:44:02,761 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:44:02,761 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:02,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,762 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:44:02,762 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:02,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:02,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,764 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:44:02,764 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:44:02,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,764 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:02,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,765 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:44:02,765 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:44:02,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,766 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:02,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,766 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:44:02,766 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:44:02,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,767 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:02,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,768 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:44:02,768 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:44:02,768 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:02,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,769 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:44:02,769 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:44:02,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:02,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,770 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:44:02,770 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:44:02) method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:44:02) method ... +01/30/13 11:44:02,771 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:44:02,772 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:02,772 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:02,773 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:44:02,773 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:44:02,773 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:44:02,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,780 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,781 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,782 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,783 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,785 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,786 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,786 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,786 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,786 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,786 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:44:02,791 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:44:02,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,792 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:44:02,792 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:02,794 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,794 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,795 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:02,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,795 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:02,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,795 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,796 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:02,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,797 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:02,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,797 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:02,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,798 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:02,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,798 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:02,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,799 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:02,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,800 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:02,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,800 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:02,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,801 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:02,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,801 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:44:02,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,802 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:02,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,802 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:44:02,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,802 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:44:02,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,803 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:44:02,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,803 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,804 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:44:02,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,805 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:02,805 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,805 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:44:02,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,806 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:02,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,806 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:44:02,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,807 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:02,807 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:02,807 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:02,811 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:02,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,812 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:44:02,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,813 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:44:02,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,814 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:44:02,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,814 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:44:02,815 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,815 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:44:02,815 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:44:02,818 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:44:02,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,818 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:44:02,818 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:44:02,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:44:02,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,828 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:02,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:02,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,828 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:44:02,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:02,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,829 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:44:02,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,829 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:02,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:02,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,829 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:44:02,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:02,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,829 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:44:02,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:02,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,830 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:02,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:02,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,830 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:02,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:02,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,831 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:44:02,831 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:02,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,831 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:02,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:44:02,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,832 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:44:02,834 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:44:02,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,835 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:44:02,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:44:02,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,835 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:44:02,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:44:02,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,836 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:44:02,836 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:44:02,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,836 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:44:02,837 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:44:02,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,837 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:44:02,837 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:02,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,837 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:44:02,837 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:44:02,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,838 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:44:02,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:44:02,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,838 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:44:02,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:44:02,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,839 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:44:02,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:02,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,839 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:02,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:02,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,840 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:44:02,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:02,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,840 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:44:02,840 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:02,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,840 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:44:02,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:02,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,841 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:44:02,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:44:02,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,842 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:44:02,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:02,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,842 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:02,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:02,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,842 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:44:02,842 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:44:02,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,843 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:44:02,843 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:02,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,843 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:44:02,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:02,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,844 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:44:02,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:02,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,844 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:02,844 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:02,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,845 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:44:02,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:02,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,846 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:44:02,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,847 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:44:02,847 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:02,847 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:02,849 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:02,849 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:02,850 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,850 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:02,850 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:44:02,850 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,853 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:44:02,853 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,856 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:44:02,856 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,859 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:44:02,859 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,861 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:44:02,861 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:02,864 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,865 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:44:02,865 [1520] DEBUG index - id is 138 +01/30/13 11:44:02,865 [1520] DEBUG index - name is OSSEZ +01/30/13 11:44:02,865 [1520] INFO index - Account detail view +01/30/13 11:44:02,866 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:44:02,866 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:02,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:02,866 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:44:02,866 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:02,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,869 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:44:02,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,870 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:44:02,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,870 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:44:02,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,870 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:44:02,871 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:44:02,871 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:44:02,881 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:44:02,882 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:44:02,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,882 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:44:02,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,883 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,883 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:44:02,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,884 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:44:02,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,884 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,885 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:44:02,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,885 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:44:02,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,886 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,886 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:44:02,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,887 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:44:02,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,887 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,888 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:44:02,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,889 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:44:02,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,889 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,889 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:44:02,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,890 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:44:02,890 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,890 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,890 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,891 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:44:02,891 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:44:02,891 [1520] INFO index - in getAccountName 8 +01/30/13 11:44:02,892 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:44:02,892 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:44:02,894 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:44:02,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,894 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:44:02,894 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,894 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,894 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,895 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:44:02,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,895 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:44:02,895 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,895 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,896 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,896 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:44:02,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,897 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:44:02,897 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,897 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,897 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,898 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:44:02,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,898 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:44:02,898 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,898 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,899 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,899 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:44:02,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,900 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:44:02,900 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,900 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,900 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,901 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:44:02,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,901 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:44:02,901 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,901 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,902 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,902 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:44:02,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,903 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:44:02,903 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:44:02,903 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:44:02,903 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:44:02,903 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:44:02,903 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:44:02,906 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:44:02,906 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:44:02,906 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:44:02,908 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:44:02,908 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:44:02,909 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,909 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:44:02,914 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 330 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:44:02,914 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:02,915 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:02,917 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,917 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:44:02,917 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,917 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:44:02,921 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,921 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:44:02,921 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,921 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:44:02,924 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,924 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:44:02,924 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:44:02,924 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:44:02,927 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:44:02,927 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:44:02,951 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:44:02,952 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:44:02,953 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:44:02,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,954 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,954 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,955 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:44:02,955 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:44:02,955 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,955 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:44:02,959 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 330 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:44:02,960 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:02,960 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:02,962 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,962 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:44:02,962 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,962 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:44:02,965 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,965 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:44:02,965 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,965 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:44:02,969 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,969 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:44:02,969 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:44:02,969 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:44:02,970 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:44:02,970 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:44:02,979 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:44:02,979 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:44:02,979 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:44:02,979 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:44:02,979 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:44:02,980 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:44:02,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:02,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:02,980 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:02,980 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:44:02,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:02,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:02,981 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:44:02,981 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:44:02,981 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:44:02,981 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:44:02,981 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:44:02,982 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,982 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:44:02,985 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 330 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:44:02,986 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:02,986 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:02,988 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,989 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:44:02,989 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,989 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:44:02,992 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,992 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:44:02,992 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:44:02,992 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:44:02,997 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:44:02,997 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:44:02,997 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:44:02,997 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:44:02,999 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:44:02,999 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:44:03,010 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:44:03,010 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:44:03,010 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:44:03,010 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:44:03,011 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:44:03,011 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,011 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,012 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,012 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:44:03,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,013 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:44:03,013 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,013 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,013 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,014 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:44:03,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,014 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:44:03,014 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,014 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,015 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,015 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:44:03,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,016 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:44:03,016 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:44:03,016 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:44:03,016 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:44:03,016 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:44:03,019 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,019 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,020 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:44:03,020 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:44:03,020 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:44:03,022 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:44:03,022 [1520] INFO index - in getOwnerName 5 +01/30/13 11:44:03,022 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:44:03,022 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:03,022 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:03,024 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:44:03,024 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:44:03,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,026 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:03,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,026 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:44:03,027 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:44:03,028 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:44:03,028 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:44:03,029 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:44:03,029 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:44:03,029 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:44:03,031 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:03,031 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:03,033 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:03,034 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:03,035 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:44:03,035 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:44:03,035 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:44:03,035 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:44:03,036 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:44:03,036 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:44:03,036 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:44:03,036 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:44:03,036 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:44:03,038 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:44:03,038 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:44:03,038 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:44:03,038 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,039 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:44:03,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,040 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:44:03,040 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,040 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,040 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,041 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:44:03,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,042 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:44:03,042 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:44:03,042 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:03,042 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:44:03,042 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:44:03,042 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,043 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,043 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,043 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:44:03,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,044 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:44:03,044 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:44:03,044 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:03,044 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:44:03,045 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:44:03,045 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,045 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,045 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,045 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:44:03,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,046 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:44:03,046 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,046 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,046 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,047 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:44:03,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,048 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:44:03,048 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,048 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,048 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,048 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:44:03,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,049 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:44:03,049 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,049 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,049 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,050 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:44:03,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,051 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:44:03,051 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,051 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,051 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,051 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:44:03,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,052 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:44:03,052 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,052 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,052 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,053 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:44:03,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,054 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:44:03,054 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,054 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,054 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,055 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:44:03,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,055 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:44:03,055 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,055 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,055 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,056 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:44:03,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,057 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:44:03,057 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,057 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,057 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,058 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:44:03,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,058 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:44:03,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,059 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,059 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:44:03,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,060 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:44:03,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,060 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,061 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:44:03,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,061 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:44:03,061 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,061 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,062 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,062 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:44:03,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,063 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:44:03,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,063 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,064 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:44:03,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,064 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:44:03,065 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:03,065 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:03,065 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:44:03,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,065 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:44:03,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,065 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:44:03,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,066 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:44:03,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,066 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:44:03,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,066 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:44:03,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,067 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:44:03,067 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:44:03,067 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:44:03,067 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:44:03,067 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:44:03,067 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:03,072 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:44:03,072 [1520] INFO index - in getOwnerName 1 +01/30/13 11:44:03,072 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:44:03,072 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:03,072 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:03,074 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:44:03,074 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:03,076 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:44:03,076 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:03,076 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:44:03,076 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:44:03,077 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,077 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:44:03,077 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:03,077 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:03,078 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:44:03,078 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:03,081 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:44:03,081 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,082 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:44:03,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,082 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:44:03,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,083 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:44:03,083 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:44:03,086 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,086 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,086 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,087 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,088 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,089 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:44:03,089 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:44:03,094 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,094 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:44:03,095 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:44:03,114 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:44:03,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,115 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:44:03,115 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:44:03,115 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:44:03,118 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:44:03,118 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,118 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:03,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:03,118 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:44:03,118 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:03,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,121 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:44:03,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,121 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:44:03,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,122 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:44:03,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,122 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:44:03,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,122 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:44:03,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,123 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:44:03,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,123 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:44:03,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,123 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:44:03,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,124 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:44:03,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,124 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:44:03,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,124 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:44:03,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,124 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:44:03,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,125 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:44:03,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,125 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:44:03,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,125 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:44:03,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,126 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:44:03,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,126 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:44:03,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,126 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:44:03,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,127 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:44:03,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,127 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:03,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,127 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:44:03,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,128 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:44:03,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,128 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:44:03,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,128 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:44:03,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,129 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:44:03,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,129 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:44:03,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,129 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:44:03,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,130 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:44:03,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,130 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:44:03,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,130 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:44:03,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,131 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:44:03,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,131 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:44:03,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,131 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:44:03,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,132 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:44:03,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,132 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:44:03,132 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:44:03,132 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:44:03,132 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:44:03,132 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:03,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,133 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:44:03,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,134 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:44:03,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,134 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:44:03,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,135 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:44:03,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,135 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:44:03,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,136 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:44:03,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,137 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:44:03,137 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,137 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:44:03,137 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:44:03,138 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,139 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:44:03,139 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:44:03,139 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:44:03,142 [1520] DEBUG index - Entering when status=0 +01/30/13 11:44:03,142 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:44:03,142 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:44:03,144 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,144 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:44:03,144 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:03,149 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:44:03,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:44:03,150 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:03,152 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:44:03,152 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:03,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,152 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:03,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:03,152 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:44:03,152 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:44:03,152 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:03,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,153 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:03,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,153 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:44:03,153 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:44:03,164 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:03,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,164 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:03,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,164 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,165 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:03,165 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:44:03,165 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:03,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,166 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:03,166 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:44:03,166 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:44:03,138,1] +01/30/13 11:44:03,169 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,169 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:44:03,169 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:44:03,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,178 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,178 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:44:03,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,178 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:44:03,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,179 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,179 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,179 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,180 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,180 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,180 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:03,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,181 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:44:03,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,181 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:44:03,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,182 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:44:03,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,182 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:44:03,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,182 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:44:03,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,182 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:44:03,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,183 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:03,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,183 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:44:03,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,183 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:44:03,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,184 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:44:03,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,184 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:03,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,184 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:03,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,185 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:03,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,185 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:03,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,185 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:44:03,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,185 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:03,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,186 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:44:03,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,186 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:44:03,281 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,281 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,281 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,281 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,281 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,281 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:44:03,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:03,284 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:03,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,284 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:03,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,284 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:44:03,285 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,285 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,285 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,285 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,285 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:44:03,285 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:44:03,289 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:44:03,289 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:44:03,289 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:44:03,289 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:03,289 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,290 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:03,290 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,290 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:03,290 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:44:03,298 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:03,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,298 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,298 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:44:03,299 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:44:03,299 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:44:03,299 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:03,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,299 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:03,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,299 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:03,299 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:44:03,312 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:03,312 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,312 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,313 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,313 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,313 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,313 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,313 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,313 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,313 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:44:03,314 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:44:03,314 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,314 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:03,314 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:44:03,320 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:03,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,320 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,321 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,322 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,322 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,322 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,323 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:03,324 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:03,324 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:03,324 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,324 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:03,325 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:44:03,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:03,325 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:44:03,325 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:03,352 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:03,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:03,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,353 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:44:03,353 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,353 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:44:03,353 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,353 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:44:03,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:03,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:03,354 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:44:03,354 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:44:03,354 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:44:03,355 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,301 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:04,431 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:04,431 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:04,431 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:04,431 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:04,432 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '138', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:04,432 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:44:04,432 [1520] DEBUG index - in CallRelatedList +01/30/13 11:44:04,432 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:44:04,432 [1520] INFO index - current module is Accounts +01/30/13 11:44:04,470 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:04,470 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:04,470 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:04,470 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,471 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,471 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:04,471 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:04,483 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,483 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:04,483 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:04,483 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:04,484 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:04,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,484 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:04,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,485 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:04,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,485 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:04,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,486 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:04,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,486 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:04,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,487 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:04,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,487 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:04,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,488 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:04,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,488 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:04,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,489 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:04,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,489 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:04,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,490 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:04,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,490 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:04,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,491 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:04,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,491 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:04,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,492 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:04,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,492 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:04,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,492 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:04,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,493 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:04,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,493 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:04,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,494 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:04,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,494 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,495 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:04,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,496 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:04,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,496 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:04,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,497 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:04,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,497 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:04,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,498 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:04,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,498 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:04,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,499 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:04,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,499 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:04,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,500 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:04,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,500 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:04,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,501 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:04,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,501 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:04,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,502 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:04,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,502 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:04,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,503 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:04,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,503 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:04,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,503 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:04,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,504 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:04,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,504 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:04,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,505 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:04,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,505 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:04,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,506 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:04,518 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:04,518 [1520] DEBUG index - Prepared sql query parameters : [331,1,Accounts,CallRelatedList,138,2013-01-30 11:44:04] +01/30/13 11:44:04,523 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:04,532 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:04,532 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:04,532 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:04,532 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:04,534 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:04,534 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:04,536 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:04,536 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:04,537 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:04,538 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,538 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,538 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:04,538 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:04,538 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:04,539 [1520] DEBUG index - including headers +01/30/13 11:44:04,539 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:44:04,539 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:44:04,543 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:04,543 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:04,545 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:44:04,546 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:44:04,546 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,546 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:44:04,547 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,547 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:44:04,547 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,547 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,548 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:44:04,549 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,549 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:44:04,549 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,549 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:44:04,549 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:44:04,550 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:44:04,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,558 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:44:04,558 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:04,559 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:04,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,560 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:44:04,560 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:44:04,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:04,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,561 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:44:04,561 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:44:04,562 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:04,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,563 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:44:04,563 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:44:04,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,564 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:04,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,564 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:44:04,564 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:44:04,565 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:04,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,566 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:44:04,566 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:04,566 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:04,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,567 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:44:04,567 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:04,568 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:44:04,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,568 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:44:04,568 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:44:04,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,569 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:04,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,570 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:44:04,570 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:04,570 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,570 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:04,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,571 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:44:04,571 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:04,572 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:04,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,572 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:44:04,573 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:04,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,573 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:04,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,574 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:44:04,574 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:44:04,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:04,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,575 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:44:04,575 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:04,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:04,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,576 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:44:04,576 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:44:04,577 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,577 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:04,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,578 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:44:04,578 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:44:04,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,579 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:04,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,579 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:44:04,579 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:44:04,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,580 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:04,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,581 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:44:04,581 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:44:04,582 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:04,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,582 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:44:04,582 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:44:04,583 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:04,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,583 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:44:04,583 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:44:04,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,584 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:44:04,584 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:44:04) method ... +01/30/13 11:44:04,584 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:04,585 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:44:04) method ... +01/30/13 11:44:04,585 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:44:04,585 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:04,585 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:04,586 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:44:04,586 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:44:04,586 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:44:04,590 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,590 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,591 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,592 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,593 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,594 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,595 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,596 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,597 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,598 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:44:04,603 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:44:04,604 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,604 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:44:04,604 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:04,606 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,606 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,607 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:04,607 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,607 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,608 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,609 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:04,610 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,610 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:04,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,610 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:04,611 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,611 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:44:04,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,611 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:44:04,611 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,612 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:04,613 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,613 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:04,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,613 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:44:04,614 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,614 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:04,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,614 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:44:04,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,615 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:44:04,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,615 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:44:04,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,616 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:04,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,616 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:44:04,617 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,617 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:44:04,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,617 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,618 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:04,619 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,619 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:44:04,619 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,619 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:04,619 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:04,620 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:04,623 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:04,624 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,624 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:44:04,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,625 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:44:04,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,626 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:44:04,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,626 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:44:04,627 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,627 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:44:04,627 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:44:04,630 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:44:04,630 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,630 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:44:04,630 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:44:04,634 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:44:04,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,640 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:04,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,641 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:44:04,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:04,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,641 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:44:04,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,642 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:04,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,642 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:44:04,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:04,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,642 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:44:04,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:04,642 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,643 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:04,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:04,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,643 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:04,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:04,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,644 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:44:04,644 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:04,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,644 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:04,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:44:04,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,645 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:44:04,647 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:44:04,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,648 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:44:04,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:44:04,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,648 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:44:04,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:44:04,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,649 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:44:04,649 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:44:04,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,649 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:44:04,650 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:44:04,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,650 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:44:04,650 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:04,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,650 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:44:04,650 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:44:04,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,651 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:44:04,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:44:04,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,651 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:44:04,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:44:04,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,652 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:44:04,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:04,652 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,652 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:04,652 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:04,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,653 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:44:04,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:04,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,653 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:44:04,653 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:04,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,653 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:44:04,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:04,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,653 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:44:04,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:44:04,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,654 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:44:04,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:04,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,654 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:04,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:04,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,655 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:44:04,655 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:44:04,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,655 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:44:04,655 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:04,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,656 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:44:04,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:04,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,656 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:44:04,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:04,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,656 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:04,657 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:04,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,657 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:44:04,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:04,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,658 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:44:04,658 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:04,658 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:04,659 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:04,659 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:04,659 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '138', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:04,659 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:44:04,659 [1520] DEBUG index - in CallRelatedList +01/30/13 11:44:04,660 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:44:04,660 [1520] INFO index - current module is Accounts +01/30/13 11:44:04,699 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:04,699 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:04,699 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:04,699 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,700 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,700 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:04,700 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:04,711 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:04,711 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,711 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:04,711 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:04,712 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:04,712 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:04,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,713 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:04,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,713 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:04,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,714 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:04,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,714 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:04,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,715 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:04,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,715 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:04,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,715 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:04,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,716 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:04,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,716 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:04,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,717 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:04,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,717 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:04,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,718 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:04,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,718 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:04,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,719 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:04,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,719 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:04,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,720 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:04,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,720 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:04,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,721 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:04,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,721 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:04,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,721 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:04,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,722 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:04,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,722 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:04,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,723 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:04,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,723 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:04,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,724 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:04,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,724 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:04,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,725 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:04,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,725 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:04,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,726 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:04,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,726 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:04,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,726 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:04,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,727 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:04,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,727 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:04,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,728 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:04,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,728 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:04,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,729 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:04,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,729 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:04,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,730 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:04,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,730 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:04,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,731 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:04,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,731 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:04,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,732 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:04,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,732 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:04,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,733 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:04,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,733 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:04,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,734 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:04,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,734 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:04,738 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:04,738 [1520] DEBUG index - Prepared sql query parameters : [332,1,Accounts,CallRelatedList,138,2013-01-30 11:44:04] +01/30/13 11:44:04,742 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:04,742 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:04,742 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:04,742 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:04,744 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:04,744 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:04,746 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:04,746 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:04,748 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:04,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,748 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:04,748 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:04,749 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:04,749 [1520] DEBUG index - including headers +01/30/13 11:44:04,749 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:44:04,749 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:44:04,752 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:04,753 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:04,756 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:44:04,756 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:44:04,757 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,757 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:44:04,757 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,757 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,758 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:44:04,759 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,759 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:44:04,759 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,759 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:44:04,760 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:44:04,760 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:44:04,760 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:44:04,760 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:44:04,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,768 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:44:04,769 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:04,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:04,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,770 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:44:04,770 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:44:04,770 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:04,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,771 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:44:04,771 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:44:04,771 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:04,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,772 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:44:04,772 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:44:04,772 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,773 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:04,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,773 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:44:04,773 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:44:04,774 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:04,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,774 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:44:04,774 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:04,775 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:04,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,775 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:44:04,775 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:04,776 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:44:04,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,776 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:44:04,777 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:44:04,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,777 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:04,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,778 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:44:04,778 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:04,778 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:04,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,779 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:44:04,779 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:04,779 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:04,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,780 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:44:04,780 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:04,780 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,781 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:04,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,781 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:44:04,781 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:44:04,781 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:04,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,782 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:44:04,782 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:04,783 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:04,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,783 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:44:04,783 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:44:04,784 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,784 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:04,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,784 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:44:04,785 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:44:04,785 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,785 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:04,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,785 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:44:04,786 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:44:04,786 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,786 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:04,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,787 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:44:04,787 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:44:04,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:04,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,788 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:44:04,788 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:44:04,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:04,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,789 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:44:04,789 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:44:04,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,789 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:44:04,789 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:44:04) method ... +01/30/13 11:44:04,790 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:04,790 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:44:04) method ... +01/30/13 11:44:04,790 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:44:04,790 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:04,790 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:04,791 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:44:04,791 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:44:04,791 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:44:04,795 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,795 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,795 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,795 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,797 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,798 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,801 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,803 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,804 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:44:04,808 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:44:04,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,809 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:44:04,809 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:04,811 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:44:04,811 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:44:04,811 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:04,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,812 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:04,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,812 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:44:04,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,812 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,813 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:04,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,814 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:04,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,814 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:04,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,815 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:04,816 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,817 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:44:04,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,817 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:04,817 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,818 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:44:04,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,818 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:44:04,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,818 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:44:04,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,819 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:04,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,819 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:44:04,819 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,820 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:44:04,821 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,821 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:04,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,821 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:44:04,821 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,822 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:04,822 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:44:04,822 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:04,825 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:04,826 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,826 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:44:04,826 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,827 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:44:04,827 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,827 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:44:04,827 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,828 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:44:04,828 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,828 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:44:04,828 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:44:04,831 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:44:04,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,831 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:44:04,831 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:44:04,834 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:44:04,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,841 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:04,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,842 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:44:04,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:44:04,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,843 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:44:04,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,843 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:04,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,843 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:44:04,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:04,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,843 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:44:04,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:04,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,844 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:04,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:04,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,844 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:04,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:04,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,845 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:44:04,845 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:04,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,845 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:04,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:44:04,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,846 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:44:04,848 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:44:04,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,848 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:44:04,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:44:04,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,849 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:44:04,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:44:04,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,850 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:44:04,850 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:44:04,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,850 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:44:04,850 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:44:04,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,851 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:44:04,851 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:44:04,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,851 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:44:04,851 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:44:04,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,852 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:44:04,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:44:04,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,853 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:44:04,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:44:04,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,853 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:44:04,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:04,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,854 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:04,854 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:04,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,854 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:44:04,854 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:44:04,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,854 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:44:04,854 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:44:04,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,854 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:44:04,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:44:04,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,855 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:44:04,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:44:04,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,855 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:44:04,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:04,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,856 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:04,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:04,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,856 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:44:04,856 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:44:04,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,857 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:44:04,857 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:44:04,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,857 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:44:04,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:44:04,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,857 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:44:04,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:04,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,858 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:04,858 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:04,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,859 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:44:04,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:04,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,860 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:44:04,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,860 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:44:04,860 [1520] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,138) method ... +01/30/13 11:44:04,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,864 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:04,864 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:04,865 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:04,865 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:04,865 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,866 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,866 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:04,866 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:04,876 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,876 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,876 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:04,876 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:44:04,876 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,879 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:44:04,879 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,882 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:44:04,882 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,884 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:44:04,884 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,886 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:44:04,886 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,888 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,889 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:44:04,889 [1520] DEBUG index - id is 138 +01/30/13 11:44:04,889 [1520] DEBUG index - name is OSSEZ +01/30/13 11:44:04,889 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:44:04,890 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:44:04,890 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:04,890 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:44:04,891 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:44:04,891 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:04,891 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,891 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:04,891 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,891 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:44:04,891 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:44:04,902 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:04,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,902 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:04,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,902 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:44:04,903 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:44:04,904 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:04,906 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:44:04,906 [1520] INFO index - in getOwnerName 1 +01/30/13 11:44:04,906 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:44:04,906 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:04,906 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:04,908 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:44:04,908 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:04,910 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:44:04,910 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:44:04,911 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:44:04,911 [1520] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/30/13 11:44:04,911 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,911 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:44:04,911 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:04,917 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:44:04,917 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:04,917 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:04,917 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:44:04,918 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:04,921 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:44:04,921 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:44:04,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,922 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:44:04,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,922 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:44:04,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,923 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:44:04,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,923 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:44:04,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,924 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:44:04,924 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,924 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:44:04,924 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,925 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:44:04,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:04,925 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:44:04,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,927 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,927 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:44:04,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,928 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:44:04,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,928 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,929 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,929 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,929 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,930 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:04,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,930 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:44:04,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:04,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,933 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:44:04,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:04,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,934 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:44:04,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:04,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,934 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:44:04,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:44:04,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,935 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:44:04,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:04,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,935 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:04,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:44:04,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,936 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:44:04,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:04,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,936 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:44:04,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:44:04,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,937 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:44:04,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:04,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,937 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:04,937 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:04,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,938 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:04,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:04,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,938 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:04,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:04,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,938 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:04,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:44:04,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,939 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:44:04,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:04,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,939 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:04,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:44:04,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,939 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:44:04,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:44:04,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:04,940 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:44:04,941 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:44:04,941 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:44:04,941 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:05,267 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:05,387 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:05,387 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:05,388 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:05,388 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:05,388 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:05,388 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:05,388 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:05,389 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:05,389 [1520] INFO index - current module is Accounts +01/30/13 11:44:05,422 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:05,422 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:05,422 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:05,422 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:05,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,423 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:05,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,423 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:05,423 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:05,432 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:05,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,432 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:05,432 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:05,432 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:05,433 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:05,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,433 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:05,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,434 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:05,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,434 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:05,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,435 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:05,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,435 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:05,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,436 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:05,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,436 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:05,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,436 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:05,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,437 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:05,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,437 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:05,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,438 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:05,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,438 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:05,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,439 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:05,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,439 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:05,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,440 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:05,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,440 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:05,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,441 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:05,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,441 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:05,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,442 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:05,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,442 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:05,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,443 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:05,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,443 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:05,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,443 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:05,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,444 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:05,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,444 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:05,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,445 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:05,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,445 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:05,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,445 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:05,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,446 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:05,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,446 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:05,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,447 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:05,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,447 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:05,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,448 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:05,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,448 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:05,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,449 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:05,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,449 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:05,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,450 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:05,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,450 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:05,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,451 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:05,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,451 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:05,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,452 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:05,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,452 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:05,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,452 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:05,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,453 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:05,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,453 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:05,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,454 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:05,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,454 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:05,458 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:05,458 [1520] DEBUG index - Prepared sql query parameters : [333,1,Accounts,AccountsAjax,138,2013-01-30 11:44:05] +01/30/13 11:44:05,461 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:05,461 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:05,462 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:05,462 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:05,464 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:05,464 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:05,466 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:05,466 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:05,467 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:05,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:05,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,468 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:05,468 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:05,468 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:05,468 [1520] DEBUG index - skipping headers +01/30/13 11:44:05,469 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:05,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:05,471 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:05,471 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:05,471 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:05,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,471 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:05,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,471 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:05,471 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:05,478 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:05,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,479 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:05,482 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:05,482 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:44:05,484 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:05,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:05,484 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:05,484 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,484 [1520] DEBUG index - Entering get_contacts(138) method ... +01/30/13 11:44:05,485 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:05,485 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:44:05,487 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:44:05,487 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:44:05,487 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,487 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,488 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:05,488 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:44:05,495 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,496 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:05,496 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:05,496 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:05,497 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/30/13 11:44:05,497 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,498 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:05,498 [1520] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/30/13 11:44:05,498 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:05,498 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:05,498 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:44:05,499 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:05,499 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:44:05,499 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:05,499 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:05,501 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:05,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:05,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,504 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:44:05,504 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,504 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:05,504 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:05,508 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:05,508 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:44:05,508 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:44:05,508 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,508 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,509 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:05,509 [1520] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/30/13 11:44:05,513 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:05,513 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 138 +01/30/13 11:44:05,515 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/30/13 11:44:05,521 [1520] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,138,) method ... +01/30/13 11:44:05,521 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:44:05,522 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:05,522 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,522 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,522 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:05,522 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:05,523 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,523 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,524 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:44:05,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,526 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:44:05,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,528 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:44:05,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,529 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:44:05,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,530 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:44:05,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,531 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:44:05,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:44:05,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:05,533 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:05,535 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:44:05,535 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:05,535 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:05,537 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:05,537 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:05,537 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:05,538 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,538 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,538 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:44:05,538 [1520] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:44:05,542 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:05,542 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:05,542 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:44:05,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,542 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:05,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:05,543 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:05,543 [1520] DEBUG index - Prepared sql query parameters : [6,4] +01/30/13 11:44:05,545 [1520] INFO index - getNextRow +01/30/13 11:44:05,546 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:05,546 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:05,546 [1520] DEBUG index - Exiting get_contacts method ... +01/30/13 11:44:07,454 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:07,576 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:07,576 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:07,576 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:07,577 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:07,577 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:07,577 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:07,577 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:07,577 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:07,578 [1520] INFO index - current module is Accounts +01/30/13 11:44:07,610 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:07,611 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:07,611 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:07,611 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:07,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,611 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:07,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,611 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:07,612 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:07,619 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:07,619 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,620 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:07,620 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:07,620 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:07,621 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:07,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,621 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:07,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,622 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:07,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,622 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:07,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,622 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:07,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,623 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:07,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,623 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:07,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,624 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:07,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,624 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:07,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,625 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:07,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,625 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:07,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,626 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:07,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,626 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:07,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,627 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:07,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,627 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:07,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,628 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:07,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,628 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:07,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,629 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:07,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,629 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:07,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,629 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:07,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,630 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:07,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,630 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,631 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:07,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,632 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:07,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,632 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:07,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,633 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:07,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,633 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:07,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,634 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:07,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,634 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:07,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,635 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:07,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,635 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:07,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,636 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:07,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,636 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:07,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,637 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:07,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,637 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:07,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,638 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:07,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,638 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:07,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,638 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:07,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,639 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:07,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,639 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:07,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,640 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:07,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,640 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:07,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,641 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:07,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,641 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:07,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,642 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:07,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,642 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:07,646 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:07,646 [1520] DEBUG index - Prepared sql query parameters : [334,1,Accounts,AccountsAjax,138,2013-01-30 11:44:07] +01/30/13 11:44:07,649 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:07,649 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:07,649 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:07,650 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:07,651 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:07,651 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:07,653 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:07,653 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:07,655 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:07,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:07,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,656 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:07,656 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:07,656 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:07,656 [1520] DEBUG index - skipping headers +01/30/13 11:44:07,656 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:07,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:07,658 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:07,658 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:07,658 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:07,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,658 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:07,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,659 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:07,659 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:07,665 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:07,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,665 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:07,669 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:07,669 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:44:07,671 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:07,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:07,671 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:07,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,672 [1520] DEBUG index - Entering get_opportunities(138) method ... +01/30/13 11:44:07,672 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:07,672 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:44:07,673 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:44:07,674 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:44:07,674 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,674 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,674 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:07,674 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:44:07,678 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:07,679 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:07,679 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:07,680 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 11:44:07,680 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:07,681 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:44:07,681 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:44:07,681 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:07,681 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:44:07,681 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:07,681 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:07,683 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:07,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:07,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,686 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 11:44:07,686 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,686 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:07,686 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:07,689 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:07,689 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:44:07,689 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:44:07,689 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,689 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,690 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:07,690 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 11:44:07,693 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:07,693 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 138 +01/30/13 11:44:07,695 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 11:44:07,699 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,138,) method ... +01/30/13 11:44:07,699 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:44:07,700 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:07,700 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:07,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:07,701 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,702 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:44:07,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,704 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:44:07,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,705 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:44:07,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,707 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:44:07,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,709 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:44:07,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,710 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:07,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:44:07,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:07,711 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:44:07,712 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:44:07,713 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:07,713 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:07,713 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:07,713 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:07,713 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:07,715 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,715 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,715 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:44:07,715 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 11:44:07,719 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:07,719 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:07,719 [1520] DEBUG index - Prepared sql query parameters : [6,2] +01/30/13 11:44:07,724 [1520] INFO index - getNextRow +01/30/13 11:44:07,724 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:07,725 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:07,725 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 11:44:19,257 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:19,379 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:19,379 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:19,379 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:19,379 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:19,379 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:19,380 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:19,380 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:19,380 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:19,380 [1520] INFO index - current module is Accounts +01/30/13 11:44:19,413 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:19,413 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:19,413 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:19,414 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:19,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,414 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:19,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,414 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:19,414 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:19,423 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:19,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,423 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:19,423 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:19,424 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:19,424 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:19,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,425 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:19,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,425 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:19,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,426 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:19,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,426 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:19,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,426 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:19,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,427 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:19,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,427 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:19,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,428 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:19,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,428 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:19,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,429 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:19,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,429 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:19,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,430 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:19,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,430 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:19,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,431 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:19,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,431 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:19,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,432 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:19,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,432 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:19,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,433 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:19,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,433 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:19,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,433 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:19,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,434 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:19,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,434 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,435 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:19,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,436 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:19,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,436 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:19,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,437 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:19,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,437 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:19,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,438 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:19,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,438 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:19,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,439 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:19,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,439 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:19,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,440 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:19,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,440 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:19,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,441 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:19,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,441 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:19,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,442 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:19,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,442 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:19,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,443 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:19,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,443 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:19,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,444 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:19,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,444 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:19,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,445 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:19,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,445 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:19,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,446 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:19,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,446 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:19,451 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:19,451 [1520] DEBUG index - Prepared sql query parameters : [335,1,Accounts,AccountsAjax,138,2013-01-30 11:44:19] +01/30/13 11:44:19,462 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:19,462 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:19,462 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:19,462 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:19,464 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:19,464 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:19,466 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:19,466 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:19,468 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:19,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:19,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,468 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:19,468 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:19,469 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:19,469 [1520] DEBUG index - skipping headers +01/30/13 11:44:19,469 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:19,469 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:19,471 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:19,471 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:19,471 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:19,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,471 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:19,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,471 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:19,471 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:19,478 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:19,479 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,479 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:19,482 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:19,482 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:44:19,484 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:19,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:19,485 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:19,485 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,485 [1520] DEBUG index - Entering get_quotes(138) method ... +01/30/13 11:44:19,485 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:19,485 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:44:19,490 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:44:19,490 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:44:19,490 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,490 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,490 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,490 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:19,490 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:44:19,498 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,498 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,498 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:19,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:19,499 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:19,500 [1520] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/30/13 11:44:19,500 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,500 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:19,500 [1520] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/30/13 11:44:19,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:19,501 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:19,501 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:44:19,501 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:19,501 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:44:19,501 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:19,501 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:19,503 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:19,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:19,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,506 [1520] DEBUG index - Entering function initSortByField (Quotes) +01/30/13 11:44:19,506 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,507 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:19,507 [1520] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:19,510 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:19,511 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:44:19,511 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:44:19,511 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,511 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,511 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:19,511 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,511 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,512 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:19,512 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:44:19,515 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:44:19,542 [1520] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,138,) method ... +01/30/13 11:44:19,542 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:44:19,542 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:19,542 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,542 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,542 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:19,543 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:19,544 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,545 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:44:19,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,546 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:44:19,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,548 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,548 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:44:19,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,550 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:44:19,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,550 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:44:19,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,550 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:44:19,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:44:19,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:19,552 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:19,553 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:44:19,554 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:19,554 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:19,555 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:19,555 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:19,555 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:19,556 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,556 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,557 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:44:19,557 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:44:19,560 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:19,560 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:19,560 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:44:19,560 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,561 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:19,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:19,561 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:19,561 [1520] DEBUG index - Prepared sql query parameters : [6,20] +01/30/13 11:44:19,563 [1520] INFO index - getNextRow +01/30/13 11:44:19,564 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:19,564 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:19,564 [1520] DEBUG index - Exiting get_quotes method ... +01/30/13 11:44:22,365 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:22,486 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:22,486 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:22,486 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:22,487 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:22,487 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:22,487 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:22,487 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:22,487 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:22,487 [1520] INFO index - current module is Accounts +01/30/13 11:44:22,521 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:22,522 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:22,522 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:22,522 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:22,522 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,522 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:22,522 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,522 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:22,523 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:22,531 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:22,531 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,531 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:22,531 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:22,531 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:22,532 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:22,532 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,533 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:22,533 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,533 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:22,534 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,534 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:22,534 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,534 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:22,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,535 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:22,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,535 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:22,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,536 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:22,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,536 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:22,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,537 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:22,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,537 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:22,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,538 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:22,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,538 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:22,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,539 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:22,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,539 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:22,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,540 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:22,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,540 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:22,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,540 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:22,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,541 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:22,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,541 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:22,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,542 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:22,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,542 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,543 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:22,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,544 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:22,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,544 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:22,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,545 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:22,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,545 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:22,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,546 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:22,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,546 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:22,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,547 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:22,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,547 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:22,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,548 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:22,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,548 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:22,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,549 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:22,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,549 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:22,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,549 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:22,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,550 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:22,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,550 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:22,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,551 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:22,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,551 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:22,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,552 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:22,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,552 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:22,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,553 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:22,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,553 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:22,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,554 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:22,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,554 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:22,558 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:22,558 [1520] DEBUG index - Prepared sql query parameters : [336,1,Accounts,AccountsAjax,138,2013-01-30 11:44:22] +01/30/13 11:44:22,562 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:22,562 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:22,562 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:22,562 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:22,564 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:22,564 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:22,566 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:22,566 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:22,567 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:22,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:22,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,568 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:22,568 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:22,568 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:22,569 [1520] DEBUG index - skipping headers +01/30/13 11:44:22,569 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:22,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:22,571 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:22,571 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:22,571 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:22,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,571 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:22,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,571 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:22,571 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:22,579 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:22,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,579 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:22,582 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:22,582 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:44:22,585 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:22,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:22,585 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:22,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,585 [1520] DEBUG index - Entering get_salesorder(138) method ... +01/30/13 11:44:22,585 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:22,585 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:44:22,588 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:44:22,588 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:44:22,588 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,588 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,589 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,589 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:22,589 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:44:22,597 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,597 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,597 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:22,598 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:22,598 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:22,599 [1520] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/30/13 11:44:22,599 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,599 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:22,599 [1520] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/30/13 11:44:22,600 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:22,600 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:22,600 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:44:22,600 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:22,600 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:44:22,600 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:22,600 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:22,602 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:22,605 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:22,605 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,605 [1520] DEBUG index - Entering function initSortByField (SalesOrder) +01/30/13 11:44:22,605 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,606 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,606 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:22,606 [1520] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:22,611 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:22,612 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:44:22,612 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:44:22,612 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,612 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:22,612 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,613 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:22,613 [1520] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/30/13 11:44:22,615 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:22,616 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 138 +01/30/13 11:44:22,619 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/30/13 11:44:22,624 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,138,) method ... +01/30/13 11:44:22,624 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:44:22,624 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:22,624 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,624 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:22,625 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:22,626 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,626 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,627 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:44:22,627 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,627 [1520] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/30/13 11:44:22,629 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,629 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:44:22,630 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,630 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:44:22,631 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,631 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:44:22,631 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,631 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:44:22,632 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:44:22,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:22,633 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:22,634 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:44:22,634 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:22,635 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:22,636 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,SalesOrderEditView,DeleteSalesOrder,) method ... +01/30/13 11:44:22,636 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:22,636 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:22,637 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,637 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:44:22,637 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:44:22,640 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:22,640 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:22,641 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:44:22,641 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,641 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:22,641 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:22,641 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:22,641 [1520] DEBUG index - Prepared sql query parameters : [6,22] +01/30/13 11:44:22,643 [1520] INFO index - getNextRow +01/30/13 11:44:22,644 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:22,644 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:22,644 [1520] DEBUG index - Exiting get_salesorder method ... +01/30/13 11:44:24,839 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:24,961 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:24,961 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:24,961 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:24,962 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:24,962 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:24,962 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:24,962 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:24,963 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:24,963 [1520] INFO index - current module is Accounts +01/30/13 11:44:24,996 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:24,996 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:24,996 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:24,996 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:24,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:24,997 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:24,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:24,997 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:24,997 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:25,005 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:25,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,006 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:25,006 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:25,006 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:25,007 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:25,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,007 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:25,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,007 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:25,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,008 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:25,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,008 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:25,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,009 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:25,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,009 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:25,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,010 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:25,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,010 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:25,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,011 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:25,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,011 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:25,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,012 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:25,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,012 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:25,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,013 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:25,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,013 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:25,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,014 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:25,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,014 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:25,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,014 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:25,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,015 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:25,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,015 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:25,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,016 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:25,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,016 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,017 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:25,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,018 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:25,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,018 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:25,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,019 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:25,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,019 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:25,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,020 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:25,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,020 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:25,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,021 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:25,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,021 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:25,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,022 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:25,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,022 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:25,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,023 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:25,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,023 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:25,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,023 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:25,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,024 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:25,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,024 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:25,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,025 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:25,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,025 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:25,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,026 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:25,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,026 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:25,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,027 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:25,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,027 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:25,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,028 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:25,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,028 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:25,033 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:25,033 [1520] DEBUG index - Prepared sql query parameters : [337,1,Accounts,AccountsAjax,138,2013-01-30 11:44:25] +01/30/13 11:44:25,037 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:25,037 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:25,037 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:25,037 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:25,039 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:25,039 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:25,041 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:25,041 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:25,043 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:25,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:25,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,043 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:25,043 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:25,043 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:25,044 [1520] DEBUG index - skipping headers +01/30/13 11:44:25,044 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:25,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:25,046 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:25,046 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:25,046 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:25,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,046 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:25,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,046 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:25,046 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:25,053 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:25,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,053 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:25,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:25,057 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:44:25,059 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:25,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:25,059 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:25,059 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,059 [1520] DEBUG index - Entering get_invoices(138) method ... +01/30/13 11:44:25,060 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:25,060 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:44:25,065 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:44:25,065 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:44:25,065 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:44:25,065 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,065 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,065 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:25,065 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:44:25,073 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,073 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:25,073 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:44:25,073 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:25,073 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:25,074 [1520] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/30/13 11:44:25,074 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,075 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:25,075 [1520] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/30/13 11:44:25,075 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:25,075 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:25,075 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:25,076 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:25,076 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:44:25,076 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:25,076 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:25,078 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:25,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:25,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,081 [1520] DEBUG index - Entering function initSortByField (Invoice) +01/30/13 11:44:25,081 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,081 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:25,081 [1520] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:25,085 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:25,085 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:44:25,085 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:44:25,085 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:44:25,085 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,085 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,085 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:25,085 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:44:25,086 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,086 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:25,086 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:44:25,089 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:44:25,119 [1520] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,138,) method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:25,119 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:25,120 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,121 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:44:25,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,123 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:44:25,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,125 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:44:25,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,125 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:44:25,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,127 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:44:25,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:44:25,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:25,128 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:25,130 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:44:25,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:25,130 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:25,131 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:25,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:25,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:25,133 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,133 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,133 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:44:25,133 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:44:25,136 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:25,136 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:25,136 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:44:25,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,137 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:25,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:25,137 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:25,137 [1520] DEBUG index - Prepared sql query parameters : [6,23] +01/30/13 11:44:25,139 [1520] INFO index - getNextRow +01/30/13 11:44:25,139 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:25,140 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:25,140 [1520] DEBUG index - Exiting get_invoices method ... +01/30/13 11:44:26,763 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:26,884 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:26,884 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:26,885 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:26,885 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:26,885 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:26,885 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:26,885 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:26,886 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:26,886 [1520] INFO index - current module is Accounts +01/30/13 11:44:26,919 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:26,919 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:26,919 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:26,919 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:26,920 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,920 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:26,920 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,920 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:26,920 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:26,928 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:26,928 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,928 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:26,928 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:26,929 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:26,929 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:26,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,930 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:26,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,930 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:26,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,931 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:26,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,931 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:26,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,932 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:26,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,932 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:26,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,933 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:26,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,933 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:26,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,934 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:26,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,934 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:26,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,935 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:26,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,935 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:26,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,936 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:26,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,936 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:26,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,937 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:26,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,937 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:26,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,937 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:26,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,938 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:26,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,938 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:26,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,939 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:26,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,939 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:26,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,940 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:26,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,940 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:26,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,941 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:26,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,941 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:26,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,941 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:26,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,942 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:26,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,942 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:26,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,943 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:26,943 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,943 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:26,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,944 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:26,944 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,944 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:26,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,945 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:26,945 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,945 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:26,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,946 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:26,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,946 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:26,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,947 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:26,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,947 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:26,947 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,947 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:26,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,948 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:26,948 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,948 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:26,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,949 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:26,949 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,949 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:26,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,950 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:26,950 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,950 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:26,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,951 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:26,951 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,951 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:26,956 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:26,956 [1520] DEBUG index - Prepared sql query parameters : [338,1,Accounts,AccountsAjax,138,2013-01-30 11:44:26] +01/30/13 11:44:26,969 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:26,969 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:26,969 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:26,970 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:26,971 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:26,972 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:26,973 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:26,974 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:26,975 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:26,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:26,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:26,976 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:26,976 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:26,976 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:26,976 [1520] DEBUG index - skipping headers +01/30/13 11:44:26,976 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:26,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:26,978 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:26,978 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:26,979 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:26,979 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,979 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:26,979 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,979 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:26,979 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:26,986 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:26,986 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,986 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:26,989 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:26,990 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:26,992 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:26,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:26,992 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:26,992 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,992 [1520] DEBUG index - Entering get_activities(138) method ... +01/30/13 11:44:26,992 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:26,992 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:44:26,995 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:44:26,995 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:44:26,995 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:26,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,995 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:26,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:26,995 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:44:26,995 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:44:27,004 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,004 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:27,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,005 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:27,005 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:27,005 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:27,006 [1520] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/30/13 11:44:27,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:27,006 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:44:27,007 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,007 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:27,007 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:44:27,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,008 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:44:27,008 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:27,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,008 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:44:27,008 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:44:27,008 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:27,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,009 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:27,009 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:44:27,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,009 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:44:27,009 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:27,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,010 [1520] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/30/13 11:44:27,010 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:27,010 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:27,012 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:27,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:27,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,015 [1520] DEBUG index - Entering function initSortByField (Calendar) +01/30/13 11:44:27,015 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,015 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,015 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:27,015 [1520] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:27,019 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:27,019 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:44:27,020 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:44:27,020 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,020 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:44:27,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,020 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:27,020 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,021 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:27,021 [1520] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/30/13 11:44:27,024 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:27,024 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 138 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/30/13 11:44:27,067 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/30/13 11:44:27,075 [1520] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,138,) method ... +01/30/13 11:44:27,075 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:44:27,075 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:27,075 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,075 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:27,076 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:27,078 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,079 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:44:27,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,083 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:44:27,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,086 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:44:27,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,089 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:44:27,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,090 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:44:27,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,093 [1520] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/30/13 11:44:27,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,094 [1520] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/30/13 11:44:27,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,098 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:44:27,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,101 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:44:27,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,102 [1520] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/30/13 11:44:27,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,105 [1520] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/30/13 11:44:27,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,108 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:27,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:27,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:27,112 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:44:27,115 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:44:27,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:27,116 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:27,117 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:27,117 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:27,117 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:27,118 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,118 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:44:27,118 [1520] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/30/13 11:44:27,122 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:27,123 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:27,123 [1520] DEBUG index - Prepared sql query parameters : [6,9] +01/30/13 11:44:27,126 [1520] INFO index - getNextRow +01/30/13 11:44:27,126 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:27,127 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:27,127 [1520] DEBUG index - Exiting get_activities method ... +01/30/13 11:44:28,494 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:28,616 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:28,616 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:28,616 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:28,616 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:28,617 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:28,617 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:28,617 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:28,617 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:28,617 [1520] INFO index - current module is Accounts +01/30/13 11:44:28,650 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:28,650 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:28,651 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:28,651 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:28,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,651 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:28,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,651 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:28,651 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:28,728 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:28,728 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,728 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:28,728 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:28,729 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:28,730 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:28,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,731 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:28,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,732 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:28,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,733 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:28,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,734 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:28,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,735 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:28,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,736 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:28,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,736 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:28,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,737 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:28,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,737 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:28,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,737 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:28,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,738 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:28,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,738 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:28,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,739 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:28,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,739 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:28,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,740 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:28,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,740 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:28,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,741 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:28,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,741 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:28,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,742 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:28,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,742 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:28,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,743 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:28,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,743 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:28,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,744 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:28,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,744 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:28,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,744 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:28,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,745 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:28,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,745 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:28,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,746 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:28,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,746 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:28,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,747 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:28,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,747 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:28,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,747 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:28,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,748 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:28,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,748 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:28,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,749 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:28,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,749 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:28,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,750 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:28,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,750 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:28,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,751 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:28,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,751 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:28,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,752 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:28,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,752 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:28,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,753 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:28,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,753 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:28,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,753 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:28,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,754 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:28,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,754 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:28,758 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:28,758 [1520] DEBUG index - Prepared sql query parameters : [339,1,Accounts,AccountsAjax,138,2013-01-30 11:44:28] +01/30/13 11:44:28,776 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:28,776 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:28,776 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:28,776 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:28,778 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:28,778 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:28,780 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:28,780 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:28,782 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:28,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:28,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,783 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:28,783 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:28,783 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:28,783 [1520] DEBUG index - skipping headers +01/30/13 11:44:28,783 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:28,783 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:28,785 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:28,785 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:28,785 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:28,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,785 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:28,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,785 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:28,786 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:28,792 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:28,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,793 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:28,796 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:28,796 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:44:28,800 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:28,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:28,801 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:28,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,801 [1520] DEBUG index - Entering get_emails(138) method ... +01/30/13 11:44:28,801 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:28,801 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:44:28,803 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:44:28,803 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:44:28,803 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:44:28,803 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,803 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,803 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:28,804 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:44:28,808 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,808 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:28,809 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:44:28,809 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:28,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:28,810 [1520] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/30/13 11:44:28,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:28,811 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:28,811 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:44:28,811 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:28,811 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:44:28,811 [1520] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/30/13 11:44:28,811 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:44:28,813 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:28,813 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:28,815 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (138) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 138 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:28,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:28,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,817 [1520] DEBUG index - Entering function initSortByField (Emails) +01/30/13 11:44:28,818 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,818 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:28,818 [1520] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:28,820 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:28,820 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:44:28,820 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:44:28,820 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:44:28,820 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,820 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:28,821 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,821 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:28,821 [1520] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/30/13 11:44:28,823 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:28,823 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/30/13 11:44:28,826 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/30/13 11:44:28,830 [1520] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,138,) method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:28,830 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:28,831 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,832 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:44:28,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,834 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:44:28,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,834 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:44:28,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,836 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:28,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,836 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:44:28,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,838 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:44:28,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:44:28,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:28,838 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:44:28,838 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:44:28,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:28,839 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:28,839 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:28,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:28,840 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:28,841 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,841 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:44:28,841 [1520] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/30/13 11:44:28,844 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:28,844 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:28,844 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:44:28,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,844 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:28,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:28,845 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:28,845 [1520] DEBUG index - Prepared sql query parameters : [6,10] +01/30/13 11:44:28,847 [1520] INFO index - getNextRow +01/30/13 11:44:28,848 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:28,848 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:28,848 [1520] DEBUG index - Exiting get_emails method ... +01/30/13 11:44:29,990 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:30,111 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:30,111 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:30,111 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:30,111 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:30,111 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:30,112 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:30,112 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:30,112 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:30,112 [1520] INFO index - current module is Accounts +01/30/13 11:44:30,145 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:30,146 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:30,146 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:30,146 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:30,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,146 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:30,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,146 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:30,147 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:30,157 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:30,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,158 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:30,158 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:30,158 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:30,159 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:30,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,159 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:30,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,160 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:30,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,160 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:30,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,161 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:30,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,161 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:30,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,161 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:30,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,162 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:30,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,162 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:30,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,163 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:30,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,163 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:30,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,164 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:30,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,164 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:30,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,165 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:30,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,165 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:30,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,166 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:30,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,166 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:30,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,167 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:30,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,167 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:30,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,167 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:30,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,168 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:30,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,168 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,169 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:30,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,170 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:30,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,170 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:30,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,171 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:30,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,171 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:30,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,172 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:30,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,172 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:30,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,173 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:30,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,173 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:30,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,174 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:30,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,174 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:30,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,175 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:30,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,175 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:30,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,176 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:30,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,176 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:30,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,176 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:30,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,177 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:30,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,177 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:30,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,178 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:30,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,178 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:30,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,179 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:30,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,179 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:30,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,180 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:30,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,180 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:30,184 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:30,185 [1520] DEBUG index - Prepared sql query parameters : [340,1,Accounts,AccountsAjax,138,2013-01-30 11:44:30] +01/30/13 11:44:30,188 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:30,188 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:30,188 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:30,188 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:30,190 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:30,190 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:30,192 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:30,192 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:30,193 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:30,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:30,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:30,194 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:30,194 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:30,194 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:30,195 [1520] DEBUG index - skipping headers +01/30/13 11:44:30,195 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:30,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:30,197 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:30,197 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:30,197 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:30,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,197 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:30,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,197 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:30,197 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:30,204 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:30,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,205 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:30,208 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:30,208 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:44:30,210 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:30,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:30,210 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:30,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,210 [1520] DEBUG index - Entering get_history(138) method ... +01/30/13 11:44:30,210 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:30,211 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:30,213 [1520] DEBUG index - Exiting get_history method ... +01/30/13 11:44:30,213 [1520] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0,138) method ... +01/30/13 11:44:30,214 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:30,214 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,214 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:44:30,214 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:30,215 [1520] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/30/13 11:44:31,367 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:31,491 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:31,492 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:31,492 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:31,492 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:31,492 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:31,493 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:31,493 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:31,493 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:31,493 [1520] INFO index - current module is Accounts +01/30/13 11:44:31,527 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:31,527 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:31,527 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:31,527 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:31,528 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,528 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:31,528 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,528 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:31,528 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:31,536 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:31,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,536 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:31,537 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:31,537 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:31,537 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:31,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,538 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:31,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,538 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:31,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,539 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:31,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,539 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:31,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,540 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:31,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,540 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:31,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,541 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:31,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,541 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:31,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,542 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:31,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,542 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:31,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,543 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:31,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,543 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:31,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,544 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:31,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,544 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:31,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,545 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:31,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,545 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:31,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,546 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:31,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,546 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:31,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,547 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:31,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,547 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:31,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,548 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:31,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,548 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,549 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:31,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,550 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:31,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,550 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:31,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,551 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:31,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,551 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:31,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,552 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:31,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,552 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:31,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,553 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:31,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,553 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:31,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,553 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:31,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,554 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:31,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,554 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:31,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,555 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:31,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,555 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:31,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,556 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:31,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,556 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:31,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,557 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:31,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,557 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:31,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,558 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:31,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,558 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:31,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,559 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:31,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,559 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:31,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,559 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:31,564 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:31,564 [1520] DEBUG index - Prepared sql query parameters : [341,1,Accounts,AccountsAjax,138,2013-01-30 11:44:31] +01/30/13 11:44:31,567 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:31,567 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:31,567 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:31,567 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:31,569 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:31,569 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:31,571 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:31,571 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:31,573 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:31,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:31,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,574 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:31,574 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:31,574 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:31,574 [1520] DEBUG index - skipping headers +01/30/13 11:44:31,574 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:31,575 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:31,577 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:31,577 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:31,577 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:31,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,577 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:31,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,577 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:31,577 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:31,585 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:31,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,585 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:31,589 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:31,589 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:44:31,591 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:31,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:31,591 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:31,591 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,591 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:31,592 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:31,593 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:31,593 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:44:31,595 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:44:31,595 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:44:31,595 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:44:31,595 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,595 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,596 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:31,596 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:44:31,599 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,599 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:31,600 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:44:31,600 [1520] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/30/13 11:44:31,600 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:31,600 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:31,600 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:31,601 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:31,601 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:44:31,601 [1520] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/30/13 11:44:31,601 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:31,601 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:31,601 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:44:31,602 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:31,602 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:44:31,602 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:31,602 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:31,604 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:31,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:31,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,607 [1520] DEBUG index - Entering function initSortByField (Documents) +01/30/13 11:44:31,607 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,607 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,607 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:31,607 [1520] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:31,610 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:31,610 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:44:31,610 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:44:31,610 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:44:31,610 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:31,611 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:31,611 [1520] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/30/13 11:44:31,612 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,612 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:31,612 [1520] DEBUG index - Prepared sql query parameters : [8,%title%] +01/30/13 11:44:31,614 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:31,614 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=138 +01/30/13 11:44:31,700 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/30/13 11:44:31,706 [1520] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,138,) method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:31,707 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:31,710 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:31,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,712 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:44:31,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:31,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,715 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:44:31,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:31,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,719 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:44:31,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:31,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,722 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:31,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:44:31,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:31,725 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:44:31,725 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:44:31,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:31,726 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:31,728 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:31,728 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:31,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:31,730 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,730 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,731 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:44:31,731 [1520] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/30/13 11:44:31,735 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:31,735 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:31,735 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:44:31,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,735 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:31,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:31,736 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:31,736 [1520] DEBUG index - Prepared sql query parameters : [6,8] +01/30/13 11:44:31,738 [1520] INFO index - getNextRow +01/30/13 11:44:31,739 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:31,739 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:34,535 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:34,658 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:34,658 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:34,658 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:34,659 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:34,659 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:34,659 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:34,659 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:34,659 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:34,660 [1520] INFO index - current module is Accounts +01/30/13 11:44:34,693 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:34,693 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:34,693 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:34,693 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:34,694 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,694 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:34,694 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,694 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:34,694 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:34,704 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:34,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,704 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:34,704 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:34,704 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:34,705 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:34,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,705 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:34,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,706 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:34,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,706 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:34,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,707 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:34,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,707 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:34,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,708 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:34,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,708 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:34,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,709 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:34,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,709 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:34,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,709 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:34,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,710 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:34,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,710 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:34,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,711 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:34,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,712 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:34,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,712 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:34,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,713 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:34,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,713 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:34,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,714 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:34,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,714 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:34,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,715 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:34,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,715 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,716 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:34,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,717 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:34,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,717 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:34,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,718 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:34,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,718 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:34,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,719 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:34,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,719 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:34,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,720 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:34,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,720 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:34,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,720 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:34,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,721 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:34,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,721 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:34,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,722 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:34,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,722 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:34,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,723 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:34,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,723 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:34,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,724 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:34,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,724 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:34,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,725 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:34,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,725 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:34,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,726 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:34,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,726 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:34,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,727 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:34,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,727 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:34,731 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:34,731 [1520] DEBUG index - Prepared sql query parameters : [342,1,Accounts,AccountsAjax,138,2013-01-30 11:44:34] +01/30/13 11:44:34,735 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:34,735 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:34,735 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:34,735 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:34,737 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:34,737 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:34,739 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:34,739 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:34,741 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:34,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:34,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,741 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:34,742 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:34,742 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:34,742 [1520] DEBUG index - skipping headers +01/30/13 11:44:34,742 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:34,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:34,744 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:34,744 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:34,744 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:34,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,744 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:34,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,744 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:34,744 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:34,752 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:34,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,752 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:34,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:34,755 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:44:34,759 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:34,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:34,759 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:34,759 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,759 [1520] DEBUG index - Entering get_tickets(138) method ... +01/30/13 11:44:34,759 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:34,759 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:44:34,761 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:44:34,761 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:44:34,761 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:44:34,761 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,762 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,762 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,762 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:34,762 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:44:34,767 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,767 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:34,767 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:44:34,768 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:34,768 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:34,769 [1520] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/30/13 11:44:34,769 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,769 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:34,769 [1520] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/30/13 11:44:34,770 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:34,770 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:34,770 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:34,770 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:34,770 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:44:34,770 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:34,770 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:34,775 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:34,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:34,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,778 [1520] DEBUG index - Entering function initSortByField (HelpDesk) +01/30/13 11:44:34,778 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,778 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,778 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:34,778 [1520] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:34,781 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:34,781 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:44:34,781 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:44:34,781 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:44:34,781 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,781 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:34,781 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,782 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:34,782 [1520] DEBUG index - Prepared sql query parameters : [13,%title%] +01/30/13 11:44:34,790 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:34,790 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 +01/30/13 11:44:34,793 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/30/13 11:44:34,797 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,138,) method ... +01/30/13 11:44:34,797 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:44:34,797 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:34,798 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,798 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:34,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:34,799 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,799 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,800 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:44:34,802 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,802 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:44:34,803 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,804 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:44:34,804 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,804 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:44:34,805 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,806 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:44:34,807 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,807 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:44:34,807 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:44:34,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:34,808 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:44:34,809 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:44:34,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:34,810 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:34,810 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:34,810 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:34,810 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:34,811 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,812 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:44:34,812 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:44:34,815 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:34,815 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:34,815 [1520] DEBUG index - Prepared sql query parameters : [6,13] +01/30/13 11:44:34,818 [1520] INFO index - getNextRow +01/30/13 11:44:34,818 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:34,818 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:34,818 [1520] DEBUG index - Exiting get_tickets method ... +01/30/13 11:44:36,026 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:36,152 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:36,152 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:36,152 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:36,153 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:36,153 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:36,153 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:36,153 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:36,153 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:36,153 [1520] INFO index - current module is Accounts +01/30/13 11:44:36,188 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:36,188 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:36,188 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:36,188 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:36,188 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,189 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:36,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,189 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:36,189 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:36,198 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:36,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,198 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:36,198 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:36,199 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:36,199 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:36,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,200 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:36,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,200 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:36,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,201 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:36,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,201 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:36,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,202 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:36,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,202 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:36,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,203 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:36,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,203 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:36,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,203 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:36,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,204 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:36,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,204 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:36,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,205 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:36,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,205 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:36,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,206 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:36,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,206 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:36,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,207 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:36,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,207 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:36,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,208 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:36,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,208 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:36,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,209 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:36,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,209 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:36,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,210 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:36,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,210 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:36,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,210 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:36,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,211 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:36,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,211 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:36,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,212 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:36,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,212 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:36,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,213 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:36,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,213 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:36,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,213 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:36,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,214 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:36,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,214 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:36,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,215 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:36,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,215 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:36,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,216 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:36,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,216 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:36,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,217 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:36,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,217 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:36,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,218 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:36,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,218 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:36,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,219 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:36,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,219 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:36,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,220 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:36,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,220 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:36,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,220 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:36,221 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,221 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:36,226 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:36,226 [1520] DEBUG index - Prepared sql query parameters : [343,1,Accounts,AccountsAjax,138,2013-01-30 11:44:36] +01/30/13 11:44:36,229 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:36,229 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:36,229 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:36,229 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:36,231 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:36,231 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:36,233 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:36,233 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:36,235 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:36,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:36,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,236 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:36,236 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:36,236 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:36,236 [1520] DEBUG index - skipping headers +01/30/13 11:44:36,236 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:36,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:36,238 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:36,238 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:36,238 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:36,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,238 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:36,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,238 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:36,239 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:36,246 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:36,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,246 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:36,249 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:36,250 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:44:36,252 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:36,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:36,252 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:36,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,252 [1520] DEBUG index - Entering get_products(138) method ... +01/30/13 11:44:36,252 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:36,252 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:44:36,254 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:44:36,254 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:44:36,254 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:44:36,254 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,255 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,255 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:36,255 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:44:36,261 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,261 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:36,261 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:44:36,261 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:36,261 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:36,263 [1520] DEBUG index - Entering isPermitted(Products,4,) method ... +01/30/13 11:44:36,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:36,263 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:36,263 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:36,263 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:36,263 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:44:36,264 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:36,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:36,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,266 [1520] DEBUG index - Entering function initSortByField (Products) +01/30/13 11:44:36,266 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,267 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:36,267 [1520] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:36,270 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:36,270 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:44:36,270 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:44:36,270 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:44:36,271 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,271 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:36,271 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:44:36,271 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,272 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:36,272 [1520] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/30/13 11:44:36,275 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:36,276 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:44:36,295 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/30/13 11:44:36,299 [1520] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,138,) method ... +01/30/13 11:44:36,299 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:44:36,299 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:36,299 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,299 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,299 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:36,300 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:36,301 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,301 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:36,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,302 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:44:36,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:36,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,304 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:44:36,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:36,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,305 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:44:36,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:36,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,307 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:44:36,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:44:36,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:36,309 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:44:36,310 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:44:36,311 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:36,311 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:36,312 [1520] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:36,312 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:36,312 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:36,313 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,314 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:44:36,314 [1520] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/30/13 11:44:36,317 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:36,317 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:36,317 [1520] DEBUG index - Prepared sql query parameters : [6,14] +01/30/13 11:44:36,319 [1520] INFO index - getNextRow +01/30/13 11:44:36,320 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:36,320 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:36,320 [1520] DEBUG index - Exiting get_products method ... +01/30/13 11:44:37,790 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:37,913 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:37,913 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:37,913 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:37,914 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:37,914 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:37,914 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:37,914 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:37,914 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:37,914 [1520] INFO index - current module is Accounts +01/30/13 11:44:37,948 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:37,948 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:37,948 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:37,948 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:37,948 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:37,949 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:37,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:37,949 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:37,949 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:37,957 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:37,957 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:37,957 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:37,957 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:37,958 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:37,958 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:37,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,959 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:37,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,959 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:37,959 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,960 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:37,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,960 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:37,960 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,961 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:37,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,961 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:37,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,961 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:37,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,962 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:37,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,962 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:37,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,963 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:37,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,963 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:37,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,964 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:37,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,964 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:37,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,965 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:37,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,965 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:37,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,966 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:37,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,966 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:37,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,967 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:37,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,967 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:37,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,968 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:37,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,968 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,969 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:37,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,970 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:37,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,970 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:37,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,971 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:37,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,971 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:37,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,972 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:37,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,972 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:37,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,973 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:37,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,973 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:37,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,974 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:37,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,974 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:37,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,975 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:37,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,975 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:37,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,976 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:37,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,976 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:37,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,976 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:37,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,977 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:37,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,977 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:37,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,978 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:37,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,978 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:37,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,979 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:37,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,979 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:37,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,980 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:37,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:37,980 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:37,984 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:37,984 [1520] DEBUG index - Prepared sql query parameters : [344,1,Accounts,AccountsAjax,138,2013-01-30 11:44:37] +01/30/13 11:44:37,987 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:37,987 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:37,987 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:37,987 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:37,989 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:37,989 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:37,991 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:37,991 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:37,992 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:37,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:37,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:37,993 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:37,993 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:37,993 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:37,993 [1520] DEBUG index - skipping headers +01/30/13 11:44:37,994 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:37,994 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:37,996 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:37,996 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:37,996 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:37,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:37,996 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:37,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:37,996 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:37,996 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:38,003 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:38,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,004 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:38,007 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:38,007 [1520] DEBUG index - Prepared sql query parameters : [87] +01/30/13 11:44:38,009 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:38,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:38,009 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:38,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,010 [1520] DEBUG index - Entering get_campaigns(138) method ... +01/30/13 11:44:38,010 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:38,010 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:44:38,012 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:44:38,012 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:44:38,012 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,012 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,012 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:38,012 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:44:38,019 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,020 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:38,020 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:38,020 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:38,021 [1520] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/30/13 11:44:38,021 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:38,022 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:38,022 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:38,022 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:38,022 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:44:38,022 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:38,022 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:38,024 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:38,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:38,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,027 [1520] DEBUG index - Entering function initSortByField (Campaigns) +01/30/13 11:44:38,027 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,027 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:38,027 [1520] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:38,031 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:38,031 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:44:38,031 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:44:38,031 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,031 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:38,032 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,032 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,032 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:38,032 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 +01/30/13 11:44:38,068 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/30/13 11:44:38,073 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,138,) method ... +01/30/13 11:44:38,074 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:44:38,074 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:38,074 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,074 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:38,075 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:38,077 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,077 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,080 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:44:38,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,083 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:44:38,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,086 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:44:38,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,090 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:44:38,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,093 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:44:38,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:44:38,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:38,096 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:44:38,097 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:44:38,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:38,098 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:38,099 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:38,099 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:38,099 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:38,100 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,100 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,100 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:44:38,100 [1520] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:44:38,104 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:38,104 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:38,104 [1520] DEBUG index - Prepared sql query parameters : [6,26] +01/30/13 11:44:38,107 [1520] INFO index - getNextRow +01/30/13 11:44:38,108 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:38,108 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:38,108 [1520] DEBUG index - Exiting get_campaigns method ... +01/30/13 11:44:40,982 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:41,103 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:41,104 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:41,104 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:41,104 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:41,104 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:41,104 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:41,105 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:41,105 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:41,105 [1520] INFO index - current module is Accounts +01/30/13 11:44:41,138 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:41,139 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:41,139 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:41,139 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:41,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,139 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:41,139 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,140 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:41,140 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:41,148 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:41,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,148 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:41,148 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:41,148 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:41,149 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:41,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,149 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:41,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,150 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:41,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,150 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:41,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,151 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:41,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,151 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:41,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,152 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:41,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,152 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:41,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,152 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:41,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,153 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:41,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,153 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:41,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,154 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:41,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,154 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:41,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,155 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:41,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,155 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:41,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,156 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:41,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,156 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:41,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,157 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:41,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,157 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:41,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,158 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:41,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,158 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:41,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,159 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:41,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,159 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:41,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,159 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:41,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,160 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:41,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,160 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:41,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,161 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:41,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,161 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:41,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,161 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:41,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,162 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:41,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,162 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:41,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,163 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:41,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,163 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:41,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,164 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:41,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,164 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:41,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,165 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:41,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,165 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:41,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,166 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:41,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,166 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:41,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,167 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:41,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,167 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:41,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,167 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:41,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,168 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:41,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,168 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:41,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,169 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:41,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,169 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:41,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,170 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:41,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,170 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:41,175 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:41,175 [1520] DEBUG index - Prepared sql query parameters : [345,1,Accounts,AccountsAjax,138,2013-01-30 11:44:41] +01/30/13 11:44:41,184 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:41,184 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:41,184 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:41,184 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:41,186 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:41,186 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:41,188 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:41,188 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:41,190 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:41,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:41,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,190 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:41,190 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:41,191 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:41,191 [1520] DEBUG index - skipping headers +01/30/13 11:44:41,191 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:41,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:41,193 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:41,193 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:41,193 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:41,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,193 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:41,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,193 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:41,193 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:41,200 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:41,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,200 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:41,204 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:41,204 [1520] DEBUG index - Prepared sql query parameters : [92] +01/30/13 11:44:41,206 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:41,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:41,206 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:41,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,206 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:41,206 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:41,207 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:41,207 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:44:41,240 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:44:41,240 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:44:41,240 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,240 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,240 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:41,241 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:44:41,245 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,245 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:41,245 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:41,245 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:44:41,246 [1520] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/30/13 11:44:41,252 [1520] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/30/13 11:44:41,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:41,252 [1520] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/30/13 11:44:41,252 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,252 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:44:41,253 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:41,253 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,254 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:44:41,254 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:44:41,254 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,254 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:44:41,254 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:41,254 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:41,256 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:41,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:41,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,259 [1520] DEBUG index - Entering function initSortByField (ServiceContracts) +01/30/13 11:44:41,259 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,260 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,260 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:41,260 [1520] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:41,262 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:41,262 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:44:41,263 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:44:41,263 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,263 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,263 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:41,263 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:41,263 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,263 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,264 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:41,264 [1520] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/30/13 11:44:41,264 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,264 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:41,264 [1520] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/30/13 11:44:41,266 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:41,267 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:44:41,332 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/30/13 11:44:41,338 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,138,) method ... +01/30/13 11:44:41,338 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:44:41,338 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:41,338 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,338 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,339 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:41,339 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:41,341 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,342 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,342 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:44:41,343 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,343 [1520] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/30/13 11:44:41,346 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,346 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:44:41,346 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,347 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:44:41,350 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,350 [1520] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/30/13 11:44:41,350 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,351 [1520] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/30/13 11:44:41,351 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,351 [1520] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/30/13 11:44:41,351 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,352 [1520] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/30/13 11:44:41,355 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,355 [1520] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/30/13 11:44:41,355 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:44:41,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:41,356 [1520] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/30/13 11:44:41,358 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:44:41,359 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:41,359 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:41,361 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:41,361 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:41,362 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:41,364 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,364 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:44:41,365 [1520] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/30/13 11:44:41,368 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:41,368 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:41,368 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:44:41,368 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,368 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:41,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:41,369 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:41,369 [1520] DEBUG index - Prepared sql query parameters : [6,37] +01/30/13 11:44:41,371 [1520] INFO index - getNextRow +01/30/13 11:44:41,372 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:41,372 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:42,898 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:43,019 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:43,019 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:43,020 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:43,020 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:43,020 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:43,020 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:43,020 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:43,021 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:43,021 [1520] INFO index - current module is Accounts +01/30/13 11:44:43,054 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:43,054 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:43,054 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:43,055 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,055 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,055 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:43,055 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:43,064 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,064 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:43,064 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:43,065 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:43,065 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:43,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,066 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:43,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,066 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:43,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,067 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:43,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,067 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:43,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,068 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:43,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,068 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:43,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,068 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:43,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,069 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:43,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,069 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:43,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,070 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:43,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,070 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:43,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,071 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:43,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,071 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:43,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,072 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:43,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,072 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:43,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,073 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:43,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,073 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:43,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,074 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:43,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,074 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:43,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,075 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:43,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,075 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:43,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,075 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:43,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,076 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:43,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,076 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:43,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,077 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:43,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,077 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:43,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,078 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:43,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,078 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:43,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,078 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:43,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,079 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:43,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,079 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:43,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,080 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:43,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,080 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:43,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,081 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:43,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,081 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:43,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,082 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:43,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,082 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:43,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,083 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:43,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,083 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:43,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,083 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:43,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,084 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:43,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,084 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:43,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,085 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:43,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,085 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:43,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,086 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:43,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,086 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:43,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,087 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:43,091 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:43,091 [1520] DEBUG index - Prepared sql query parameters : [346,1,Accounts,AccountsAjax,138,2013-01-30 11:44:43] +01/30/13 11:44:43,094 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:43,094 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:43,094 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:43,094 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:43,096 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:43,096 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:43,098 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:43,098 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:43,099 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:43,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:43,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,100 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:43,100 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:43,100 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:43,100 [1520] DEBUG index - skipping headers +01/30/13 11:44:43,101 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:43,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:43,103 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:43,103 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:43,103 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:43,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,103 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:43,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,103 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:43,103 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:43,110 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:43,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,110 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:43,113 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:43,113 [1520] DEBUG index - Prepared sql query parameters : [108] +01/30/13 11:44:43,115 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:43,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,116 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:43,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,116 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:43,116 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:43,117 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:43,117 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:44:43,129 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:44:43,130 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:44:43,130 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,130 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,130 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,130 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,130 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:43,130 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:44:43,136 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,137 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,137 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:43,137 [1520] DEBUG index - Entering isPermitted(Services,4,) method ... +01/30/13 11:44:43,137 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:43,137 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:43,137 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:43,138 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:44:43,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,138 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:44:43,138 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:44:43,138 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:44:43,141 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138), ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:44:43,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:43,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,144 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 11:44:43,144 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,144 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:44:43,144 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 11:44:43,147 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:44:43,147 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:44:43,147 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:44:43,147 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,147 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Entering ListViewSession() method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,148 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:44:43,148 [1520] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/30/13 11:44:43,151 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:44:43,151 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) +01/30/13 11:44:43,235 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/30/13 11:44:43,257 [1520] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,138,) method ... +01/30/13 11:44:43,257 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:44:43,258 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:44:43,258 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,258 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,258 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:43,258 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:43,259 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,260 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 11:44:43,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,260 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:44:43,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,262 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 11:44:43,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,263 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:44:43,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:44:43,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,265 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:44:43,267 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:44:43,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:43,267 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:44:43,268 [1520] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:44:43,268 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:43,268 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:43,269 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,270 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:44:43,270 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/30/13 11:44:43,273 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,273 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:44:43,273 [1520] DEBUG index - Prepared sql query parameters : [6,38] +01/30/13 11:44:43,275 [1520] INFO index - getNextRow +01/30/13 11:44:43,276 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:44:43,276 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:44:43,278 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:43,407 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:43,407 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:43,407 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:43,407 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:43,408 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:44:43,408 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:44:43,408 [1520] DEBUG index - in CalendarAjax +01/30/13 11:44:43,408 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:44:43,408 [1520] INFO index - current module is Calendar +01/30/13 11:44:43,448 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:43,448 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:43,448 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:43,449 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,449 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,449 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:43,449 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:43,458 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:43,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:43,458 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:43,458 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:43,459 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:43,459 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:43,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,460 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:43,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,460 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:43,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,461 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:43,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,461 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:43,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,462 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:43,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,462 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:43,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,463 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:43,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,463 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:43,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,464 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:43,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,464 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:43,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,465 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:43,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,465 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:43,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,466 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:43,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,466 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:43,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,467 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:43,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,467 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:43,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,468 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:43,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,468 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:43,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,469 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:43,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,469 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:43,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,470 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:43,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,470 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,471 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:43,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,472 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:43,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,472 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:43,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,473 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:43,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,473 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:43,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,474 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:43,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,474 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:43,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,475 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:43,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,475 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:43,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,476 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:43,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,476 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:43,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,477 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:43,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,477 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:43,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,478 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:43,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,478 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:43,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,479 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:43,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,479 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:43,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,480 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:43,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,480 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:43,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,481 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:43,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,481 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:43,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,482 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:43,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:43,482 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:43,482 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:43,483 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:43,483 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:43,483 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:43,484 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:43,485 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:43,487 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:43,487 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:43,488 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:43,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:44:43,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:43,489 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:43,489 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:43,489 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:43,489 [1520] DEBUG index - skipping headers +01/30/13 11:44:43,490 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:44:43,491 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:43,495 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:44:43,496 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:44:43,496 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:44:43,496 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:44:43,500 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:45')) +01/30/13 11:44:43,504 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:44:44,690 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:44:44,811 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:44:44,811 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:44:44,811 [1520] DEBUG index - ****Starting for new session +01/30/13 11:44:44,812 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:44:44,812 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:44:44,812 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:44:44,812 [1520] DEBUG index - in AccountsAjax +01/30/13 11:44:44,812 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:44:44,812 [1520] INFO index - current module is Accounts +01/30/13 11:44:44,845 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:44:44,846 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:44:44,846 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:44:44,846 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:44,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,846 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:44,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,846 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:44,847 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:44:44,855 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:44:44,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,855 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:44,855 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:44:44,855 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:44:44,856 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:44:44,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,856 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:44:44,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,857 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:44:44,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,857 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:44:44,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,858 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:44:44,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,858 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:44:44,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,859 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:44:44,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,859 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:44:44,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,859 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:44:44,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,860 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:44:44,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,860 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:44:44,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,861 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:44:44,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,861 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:44:44,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,862 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:44:44,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,862 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:44:44,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,863 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:44:44,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,863 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:44:44,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,864 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:44:44,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,864 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:44:44,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,865 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:44:44,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,865 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:44:44,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,866 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:44:44,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,866 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:44:44,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,867 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:44:44,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,867 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:44:44,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,867 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:44:44,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,868 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:44:44,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,868 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:44:44,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,869 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:44:44,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,869 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:44:44,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,869 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:44:44,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,870 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:44:44,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,870 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:44:44,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,871 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:44:44,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,871 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:44:44,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,872 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:44,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,872 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:44:44,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,873 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:44:44,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,873 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:44:44,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,874 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:44:44,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,874 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:44:44,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,875 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:44:44,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,875 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:44:44,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,876 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:44:44,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,876 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:44:44,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,877 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:44:44,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,877 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:44:44,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,877 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:44:44,881 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:44:44,881 [1520] DEBUG index - Prepared sql query parameters : [347,1,Accounts,AccountsAjax,138,2013-01-30 11:44:44] +01/30/13 11:44:44,885 [1520] DEBUG index - Current user is: admin +01/30/13 11:44:44,885 [1520] DEBUG index - Current theme is: softed +01/30/13 11:44:44,885 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:44:44,885 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:44:44,887 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:44:44,887 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:44:44,889 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:44:44,889 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:44:44,890 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:44:44,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:44:44,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:44:44,891 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:44:44,891 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:44:44,891 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:44:44,891 [1520] DEBUG index - skipping headers +01/30/13 11:44:44,892 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:44:44,892 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:44:44,894 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:44:44,894 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:44:44,894 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:44,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,894 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:44,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,894 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:44,894 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:44:44,901 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:44,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,902 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:44,905 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:44:44,905 [1520] DEBUG index - Prepared sql query parameters : [114] +01/30/13 11:44:44,907 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:44:44,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:44:44,908 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:44:44,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,908 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:44:44,908 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:44:44,909 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:44:44,909 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:44:44,936 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:44:44,936 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:44:44,936 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:44:44,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,936 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:44:44,936 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,936 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:44:44,936 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:44:44,941 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:44:44,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:44:44,941 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:44:44,941 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:44:44,941 [1520] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/30/13 11:45:07,304 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:07,427 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:07,427 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:07,427 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:07,427 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:07,428 [1520] DEBUG index - array ( + 'module' => 'Potentials', + 'maxrecords' => '', + 'mode' => '', + 'return_module' => 'Accounts', + 'RLreturn_module' => 'Accounts', + 'allselectedboxes' => '', + 'return_action' => 'CallRelatedList', + 'return_id' => '138', + 'parent_id' => '138', + 'RLparent_id' => '138', + 'parenttab' => 'Marketing', + 'action' => 'EditView', + 'account_id' => '138', + 'pagenum' => '1', + 'button' => '新增 销售机会', + 'activity_mode' => '', + 'email_directing_module' => '', + 'record' => '', + 'createmode' => 'link', + 'sc_related_to' => '138', + 'sc_related_to_type' => 'Accounts', +) +01/30/13 11:45:07,428 [1520] INFO index - About to take action EditView +01/30/13 11:45:07,428 [1520] DEBUG index - in EditView +01/30/13 11:45:07,428 [1520] INFO index - current page is modules/Potentials/EditView.php +01/30/13 11:45:07,428 [1520] INFO index - current module is Potentials +01/30/13 11:45:07,461 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:07,461 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:07,461 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:07,462 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:07,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,462 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:07,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,462 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:07,463 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:07,473 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:07,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,474 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:07,474 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:07,474 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:07,475 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:07,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,475 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:07,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,476 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:07,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,476 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:07,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,477 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:07,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,477 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:07,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,478 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:07,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,478 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:07,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,478 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:07,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,479 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:07,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,479 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:07,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,480 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:07,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,480 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:07,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,481 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:07,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,481 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:07,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,482 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:07,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,482 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:07,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,483 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:07,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,483 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:07,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,484 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:07,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,484 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:07,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,485 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:07,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,485 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,486 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:07,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,487 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:07,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,487 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:07,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,488 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:07,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,488 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:07,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,489 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:07,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,489 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:07,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,490 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:07,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,490 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:07,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,490 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:07,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,491 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:07,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,491 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:07,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,492 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:07,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,492 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:07,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,493 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:07,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,493 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:07,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,494 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:07,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,494 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:07,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,495 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:07,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,495 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:07,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,496 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:07,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,496 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:07,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,497 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:07,501 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:07,501 [1520] DEBUG index - Prepared sql query parameters : [348,1,Potentials,EditView,,2013-01-30 11:45:07] +01/30/13 11:45:07,533 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:07,533 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:07,533 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:07,533 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:07,535 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:07,536 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:07,539 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:07,540 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:07,543 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:07,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,544 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:07,544 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:07,544 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:07,544 [1520] DEBUG index - including headers +01/30/13 11:45:07,545 [1520] DEBUG index - Entering getParentTabFromModule(Potentials) method ... +01/30/13 11:45:07,546 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:45:07,552 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,552 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,555 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:45:07,556 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:45:07,557 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,557 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:45:07,558 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,558 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:45:07,559 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,559 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:45:07,560 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,560 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:45:07,561 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,561 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:45:07,561 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,562 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:45:07,562 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,563 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:45:07,563 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:07,563 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:45:07,564 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:45:07,564 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:45:07,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:07,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,573 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:45:07,573 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:45:07,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:07,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,574 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:45:07,574 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:45:07,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:07,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,575 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:45:07,575 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:45:07,576 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:07,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,577 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:45:07,577 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:45:07,578 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,578 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:07,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,578 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:45:07,578 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:45:07,579 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:07,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,579 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:45:07,579 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:45:07,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:07,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,580 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:45:07,581 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:45:07,581 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:45:07,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,581 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:45:07,582 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:45:07,582 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,582 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:07,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,583 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:45:07,583 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:45:07,583 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:07,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,584 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:45:07,584 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:45:07,584 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,585 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:45:07,585 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:07,585 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,585 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:07,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,586 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:45:07,586 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:45:07,586 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:07,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,587 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:45:07,587 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:45:07,587 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:07,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,588 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:45:07,588 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:45:07,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:07,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,589 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:45:07,589 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:45:07,590 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:07,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,590 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:45:07,590 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:45:07,591 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,591 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:07,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,592 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:45:07,592 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:45:07,592 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:07,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,593 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:45:07,593 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:45:07,593 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:07,594 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,594 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:45:07,594 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:45:07,594 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,594 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:07) method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:07) method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:07,595 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:07,597 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:45:07,597 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:45:07,597 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:45:07,600 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,600 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,600 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,600 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,601 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,602 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,603 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,603 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,603 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,603 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,603 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,604 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,605 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,606 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,607 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,608 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,609 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,610 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,610 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,610 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:45:07,614 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:45:07,614 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,614 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:45:07,614 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:07,616 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:07,616 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:07,617 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:07,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,617 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:07,618 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,619 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:45:07,619 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,619 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,619 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,619 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,620 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:45:07,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,621 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:45:07,621 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,621 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:45:07,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,622 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:45:07,623 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,623 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:45:07,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,623 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:45:07,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,624 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:45:07,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,624 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:45:07,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,626 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:45:07,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,626 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:07,626 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,626 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:45:07,627 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,627 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:07,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,627 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:45:07,627 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,627 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:45:07,628 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:45:07,628 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:07,631 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:07,632 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,632 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:45:07,632 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,633 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:45:07,633 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,633 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:45:07,634 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,634 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:45:07,634 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,634 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:45:07,634 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:45:07,637 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:45:07,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,637 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:45:07,637 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:45:07,640 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:45:07,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,646 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:07,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:07,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,647 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:45:07,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:07,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,647 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:45:07,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:07,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,647 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:07,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:07,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,648 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:45:07,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,648 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:07,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:07,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,648 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:45:07,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:07,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,649 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:45:07,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:45:07,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,649 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:45:07,650 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:07,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,650 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:45:07,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:45:07,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,650 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:45:07,652 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:45:07,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,653 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:45:07,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:45:07,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,654 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:45:07,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:45:07,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,654 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:45:07,655 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:45:07,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,655 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:45:07,655 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:45:07,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,656 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:45:07,656 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:07,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,656 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:45:07,656 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:45:07,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,657 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:45:07,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:45:07,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,657 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:45:07,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:45:07,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,658 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:45:07,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:07,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,659 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:45:07,659 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:07,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,659 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:45:07,659 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:07,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,659 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:45:07,659 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:07,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,660 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:45:07,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:07,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,660 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:45:07,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:45:07,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,661 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:45:07,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:07,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,661 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:45:07,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:07,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,661 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:45:07,661 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:45:07,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,662 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:45:07,662 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:07,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,662 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:45:07,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:07,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,662 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:45:07,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:07,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,663 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:07,663 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:07,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,664 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:45:07,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:07,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,665 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:45:07,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,665 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:45:07,666 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:07,666 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,679 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:07,679 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:07,679 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,680 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,680 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:07,680 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:07,685 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Entering setObjectValuesFromRequest(Potentials) method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Entering getBlocks(Potentials,create_view,,Array,BAS) method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,686 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:45:07,687 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:07,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,689 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:45:07,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,689 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:45:07,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,690 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:45:07,690 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:45:07,690 [1520] DEBUG index - Prepared sql query parameters : [2,1,2,3,BAS] +01/30/13 11:45:07,697 [1520] DEBUG index - Entering getBlockInformation(Potentials,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +2,110,potentialname,vtiger_potential,1,2,potentialname,Potential Name,1,0,,100,1,1,1,V~M,0,1,BAS,1, +2,111,potential_no,vtiger_potential,1,4,potential_no,Potential No,1,0,,100,2,1,1,V~O,3,,BAS,0, +2,113,related_to,vtiger_potential,1,10,related_to,Related To,1,0,,100,3,1,1,V~M,0,2,BAS,1, +2,112,amount,vtiger_potential,1,71,amount,Amount,1,2,,100,4,1,1,N~O,2,5,BAS,1, +2,115,potentialtype,vtiger_potential,1,15,opportunity_type,Type,1,2,,100,6,1,1,V~O,1,,BAS,1, +2,114,closingdate,vtiger_potential,1,23,closingdate,Expected Close Date,1,2,,100,7,1,1,D~M,2,3,BAS,1, +2,117,leadsource,vtiger_potential,1,15,leadsource,Lead Source,1,2,,100,8,1,1,V~O,1,,BAS,1, +2,116,nextstep,vtiger_potential,1,1,nextstep,Next Step,1,2,,100,9,1,1,V~O,1,,BAS,1, +2,119,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,2,,100,10,1,1,V~M,0,6,BAS,1, +2,118,sales_stage,vtiger_potential,1,15,sales_stage,Sales Stage,1,2,,100,11,1,1,V~M,2,4,BAS,1, +2,121,campaignid,vtiger_potential,1,58,campaignid,Campaign Source,1,2,,100,12,1,1,N~O,1,,BAS,1, +2,120,probability,vtiger_potential,1,9,probability,Probability,1,2,,100,13,1,1,N~O,1,,BAS,1, +2,125,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,3,1,V~O,1,,BAS,1, +,Array,2,Array) method ... +01/30/13 11:45:07,697 [1520] DEBUG index - Entering getOutputHtml(2,potentialname,Potential Name,100,Array,1,Potentials) method ... +01/30/13 11:45:07,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,698 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:45:07,698 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,698 [1520] DEBUG index - Entering getOutputHtml(4,potential_no,Potential No,100,Array,1,Potentials) method ... +01/30/13 11:45:07,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,699 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:45:07,699 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,700 [1520] DEBUG index - Entering getOutputHtml(10,related_to,Related To,100,Array,1,Potentials) method ... +01/30/13 11:45:07,700 [1520] DEBUG index - Prepared sql query being executed : SELECT relmodule, status FROM vtiger_fieldmodulerel WHERE fieldid= + (SELECT fieldid FROM vtiger_field, vtiger_tab WHERE vtiger_field.tabid=vtiger_tab.tabid AND fieldname=? AND name=? and vtiger_field.presence in (0,2)) +01/30/13 11:45:07,700 [1520] DEBUG index - Prepared sql query parameters : [related_to,Potentials] +01/30/13 11:45:07,703 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:45:07,703 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:45:07,703 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:45:07,703 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:07,705 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:45:07,705 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:45:07,705 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,705 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:45:07,707 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:45:07,707 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:07,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,711 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:45:07,711 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,712 [1520] DEBUG index - Entering getOutputHtml(71,amount,Amount,100,Array,1,Potentials) method ... +01/30/13 11:45:07,712 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:45:07,712 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:45:07,712 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:45:07,713 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:07,715 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:45:07,715 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:45:07,715 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:45:07,715 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:45:07,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,715 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:45:07,715 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,716 [1520] DEBUG index - Entering getOutputHtml(15,opportunity_type,Type,100,Array,1,Potentials) method ... +01/30/13 11:45:07,716 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:45:07,717 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:45:07,717 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:45:07,717 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:45:07,717 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:45:07,719 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:45:07,719 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:45:07,719 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:45:07,721 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:45:07,721 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:45:07,721 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,721 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:45:07,725 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 348 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #482 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #482 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:45:07,726 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,726 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,728 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,729 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:45:07,729 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,729 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:45:07,732 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,732 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:45:07,732 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,733 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:45:07,736 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,736 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:45:07,736 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:45:07,737 [1520] DEBUG index - Prepared sql query parameters : [opportunity_type] +01/30/13 11:45:07,738 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct opportunity_type FROM vtiger_opportunity_type inner join vtiger_role2picklist on vtiger_opportunity_type.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:45:07,738 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:45:07,784 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:45:07,785 [1520] DEBUG index - function getTranslatedString(Existing Business) - translated to (已有业务往来) +01/30/13 11:45:07,785 [1520] DEBUG index - function getTranslatedString(New Business) - translated to (新业务) +01/30/13 11:45:07,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,785 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:45:07,786 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,787 [1520] DEBUG index - Entering getOutputHtml(23,closingdate,Expected Close Date,100,Array,1,Potentials) method ... +01/30/13 11:45:07,788 [1520] INFO index - uitype is 23 +01/30/13 11:45:07,788 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,788 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:45:07,788 [1520] INFO index - in getNewDisplayDate +01/30/13 11:45:07,788 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:45:07,789 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:07) method ... +01/30/13 11:45:07,789 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:45:07,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,790 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:45:07,790 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:45:07,790 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:45:07,790 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,791 [1520] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Potentials) method ... +01/30/13 11:45:07,792 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:45:07,792 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:45:07,793 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:45:07,793 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:45:07,793 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,793 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:45:07,798 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 348 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #492 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #492 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:45:07,799 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,800 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,802 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,802 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:45:07,803 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,803 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:45:07,807 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,807 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:45:07,807 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,808 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:45:07,814 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,814 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:45:07,814 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:45:07,814 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:45:07,816 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:45:07,816 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:45:07,834 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:45:07,834 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:45:07,834 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:45:07,834 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:45:07,834 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:45:07,835 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其他) +01/30/13 11:45:07,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,836 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:45:07,836 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,836 [1520] DEBUG index - Entering getOutputHtml(1,nextstep,Next Step,100,Array,1,Potentials) method ... +01/30/13 11:45:07,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,837 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:45:07,837 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,838 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Potentials) method ... +01/30/13 11:45:07,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,838 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:07,838 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:45:07,839 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:45:07,840 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:45:07,841 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:45:07,841 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:45:07,841 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:45:07,841 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:45:07,843 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,844 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,846 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,846 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,848 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:45:07,848 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:45:07,848 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:45:07,848 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:45:07,848 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:45:07,848 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:45:07,849 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:45:07,849 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:45:07,849 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:45:07,851 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:45:07,851 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:45:07,851 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:45:07,851 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:45:07,852 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:45:07,852 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:45:07,852 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,852 [1520] DEBUG index - Entering getOutputHtml(15,sales_stage,Sales Stage,100,Array,1,Potentials) method ... +01/30/13 11:45:07,853 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:45:07,853 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:45:07,853 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:45:07,853 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:45:07,853 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,853 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:45:07,858 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 348 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #513 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #513 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:45:07,859 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:07,859 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:07,861 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,861 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:45:07,861 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,862 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:45:07,865 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,866 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:45:07,866 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:45:07,866 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:45:07,872 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:45:07,872 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:45:07,872 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:45:07,872 [1520] DEBUG index - Prepared sql query parameters : [sales_stage] +01/30/13 11:45:07,874 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct sales_stage FROM vtiger_sales_stage inner join vtiger_role2picklist on vtiger_sales_stage.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:45:07,874 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:45:07,924 [1520] DEBUG index - function getTranslatedString(Prospecting) - translated to (初期沟通) +01/30/13 11:45:07,924 [1520] DEBUG index - function getTranslatedString(Qualification) - translated to (立项评估) +01/30/13 11:45:07,925 [1520] DEBUG index - function getTranslatedString(Needs Analysis) - translated to (需求分析) +01/30/13 11:45:07,925 [1520] DEBUG index - function getTranslatedString(Value Proposition) - translated to (方案制订) +01/30/13 11:45:07,925 [1520] DEBUG index - function getTranslatedString(Id. Decision Makers) - translated to (辨识决策者) +01/30/13 11:45:07,925 [1520] DEBUG index - function getTranslatedString(Perception Analysis) - translated to (感性分析) +01/30/13 11:45:07,925 [1520] DEBUG index - function getTranslatedString(Proposal/Price Quote) - translated to (投标/报价) +01/30/13 11:45:07,926 [1520] DEBUG index - function getTranslatedString(Negotiation/Review) - translated to (谈判/回顾) +01/30/13 11:45:07,926 [1520] DEBUG index - function getTranslatedString(Closed Won) - translated to (成功结案) +01/30/13 11:45:07,926 [1520] DEBUG index - function getTranslatedString(Closed Lost) - translated to (失败结案) +01/30/13 11:45:07,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,927 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:45:07,927 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,928 [1520] DEBUG index - Entering getOutputHtml(58,campaignid,Campaign Source,100,Array,1,Potentials) method ... +01/30/13 11:45:07,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,929 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:45:07,929 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,930 [1520] DEBUG index - Entering getOutputHtml(9,probability,Probability,100,Array,1,Potentials) method ... +01/30/13 11:45:07,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,931 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:45:07,931 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,932 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Potentials) method ... +01/30/13 11:45:07,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,933 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:45:07,934 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:45:07,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,934 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:45:07,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,935 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:45:07,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,935 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:45:07,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,936 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:45:07,936 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:45:07,936 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:45:07,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:07,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:07,939 [1520] INFO index - Potential detail view +01/30/13 11:45:07,941 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:45:07,941 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:45:07,945 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,945 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:07,946 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:07,946 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:45:07,946 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:07,949 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,950 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:45:07,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,950 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:45:07,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,951 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:45:07,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,952 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:45:07,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,952 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:45:07,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,953 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:45:07,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,953 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:45:07,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,954 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:45:07,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,955 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:45:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,955 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,955 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:45:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,956 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:45:07,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,956 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:45:07,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:07,956 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:45:07,956 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:45:07,957 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:45:07,957 [1520] DEBUG index - Entering Button_Check(Potentials) method ... +01/30/13 11:45:07,957 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:07,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,958 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:45:07,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,958 [1520] DEBUG index - Entering isPermitted(Potentials,Import,) method ... +01/30/13 11:45:07,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,959 [1520] DEBUG index - Entering isPermitted(Potentials,Export,) method ... +01/30/13 11:45:07,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,959 [1520] DEBUG index - Entering isPermitted(Potentials,Merge,) method ... +01/30/13 11:45:07,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,960 [1520] DEBUG index - Entering isPermitted(Potentials,DuplicatesHandling,) method ... +01/30/13 11:45:07,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,960 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:07,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,966 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:45:07,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:07,967 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:45:07,967 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Potentials)... +01/30/13 11:45:07,967 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:07,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:07,967 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:45:07,967 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:45:07,967 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:45:07,968 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:07,970 [1520] DEBUG index - Prepared sql query being executed : select potential_no from vtiger_potential where potential_no = ? +01/30/13 11:45:07,971 [1520] DEBUG index - Prepared sql query parameters : [POT11] +01/30/13 11:45:07,975 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:45:08,014 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:08,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:08,014 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:45:08,014 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:08,019 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:08,019 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:08,019 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:45:08,020 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:08,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,031 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,031 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:08,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,032 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:08,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,033 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,033 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,034 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,035 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,036 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,036 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:08,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:08,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,037 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:08,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:08,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,056 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:08,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:08,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:08,057 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:45:08,102 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:45:08,103 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:08,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:43,253 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:43,374 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:43,374 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:43,374 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:43,375 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:43,375 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:45:43,375 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:45:43,375 [1520] DEBUG index - in CalendarAjax +01/30/13 11:45:43,375 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:45:43,375 [1520] INFO index - current module is Calendar +01/30/13 11:45:43,408 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:43,408 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:43,408 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:43,408 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:43,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:43,409 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:43,409 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:43,409 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:43,409 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:43,489 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:43,489 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:43,489 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:43,490 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:43,490 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:43,491 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:43,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,492 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:43,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,493 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:43,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,494 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:43,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,495 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:43,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,496 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:43,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,497 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:43,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,498 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:43,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,499 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:43,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,500 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:43,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,501 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:43,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,502 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:43,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,503 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:43,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,504 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:43,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,504 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:43,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,505 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:43,506 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,506 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:43,507 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,507 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:43,508 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,508 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:43,509 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,509 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:43,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,510 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:43,510 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,510 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,511 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:43,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,512 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:43,512 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,512 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:43,513 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,513 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:43,513 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,513 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:43,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,514 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:43,514 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,514 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:43,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,515 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:43,515 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,515 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:43,516 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,516 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:43,516 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,516 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:43,517 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,517 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:43,517 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,517 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:43,517 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,518 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:43,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,518 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:43,518 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,519 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:43,519 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,519 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:43,519 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,519 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:43,520 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,520 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:43,520 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,520 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:43,521 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,521 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:43,521 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,521 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:43,522 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,522 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:43,522 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:43,522 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:43,522 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:43,523 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:43,523 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:43,523 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:43,524 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:43,525 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:43,526 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:43,527 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:43,528 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:43,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:43,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:43,529 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:43,529 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:43,529 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:43,529 [1520] DEBUG index - skipping headers +01/30/13 11:45:43,530 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:45:43,531 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:43,535 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:43,535 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:45:43,536 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:45:43,536 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:45:43,539 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:46')) +01/30/13 11:45:43,543 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:45:56,748 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:56,871 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:56,871 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:56,872 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:56,872 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:56,872 [1520] DEBUG index - array ( + 'contact_id' => '', + 'pagenumber' => '', + 'module' => 'Potentials', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => 'Accounts', + 'return_id' => '138', + 'return_action' => 'CallRelatedList', + 'return_viewname' => '', + 'createmode' => 'link', + 'potentialname' => 'OSSEZ TEST', + 'potential_no' => '自动生成编号', + 'related_to_type' => 'Accounts', + 'related_to' => '138', + 'related_to_display' => 'OSSEZ', + 'amount' => '0', + 'opportunity_type' => '--None--', + 'closingdate' => '2013-01-30', + 'leadsource' => '--None--', + 'nextstep' => '', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'sales_stage' => 'Prospecting', + 'campaignname' => '', + 'campaignid' => '', + 'probability' => '', + 'description' => '', + 'button' => ' 保存 ', +) +01/30/13 11:45:56,872 [1520] INFO index - About to take action Save +01/30/13 11:45:56,872 [1520] DEBUG index - in Save +01/30/13 11:45:56,873 [1520] INFO index - current page is modules/Potentials/Save.php +01/30/13 11:45:56,873 [1520] INFO index - current module is Potentials +01/30/13 11:45:56,906 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:56,906 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:56,906 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:56,906 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:56,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,907 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:56,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,907 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:56,907 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:56,918 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:56,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,918 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:56,918 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:56,918 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:56,919 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:56,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,919 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:56,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,920 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:56,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,920 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:56,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,921 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:56,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,921 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:56,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,922 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:56,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,922 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:56,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,923 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:56,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,923 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:56,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,924 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:56,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,924 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:56,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,925 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:56,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,925 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:56,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,926 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:56,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,926 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:56,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,927 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:56,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,927 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:56,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,927 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:56,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,928 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:56,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,928 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:56,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,929 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:56,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,929 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,930 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:56,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,931 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:56,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,931 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:56,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,932 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:56,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,932 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:56,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,933 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:56,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,933 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:56,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,934 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:56,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,934 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:56,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,935 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:56,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,935 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:56,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,936 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:56,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,936 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:56,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,936 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:56,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,937 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:56,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,937 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:56,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,938 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:56,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,938 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:56,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,939 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:56,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,939 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:56,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,940 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:56,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,940 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:56,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:56,941 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:56,946 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:56,946 [1520] DEBUG index - Prepared sql query parameters : [349,1,Potentials,Save,,2013-01-30 11:45:56] +01/30/13 11:45:56,949 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:56,949 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:56,949 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:56,949 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:56,951 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:56,951 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:56,953 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:56,953 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:56,955 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:56,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:56,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:56,955 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:56,955 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:56,955 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:56,956 [1520] DEBUG index - skipping headers +01/30/13 11:45:56,956 [1520] DEBUG index - Entering isPermitted(Potentials,Save,) method ... +01/30/13 11:45:56,956 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:56,975 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:56,975 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:56,975 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:56,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,976 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:56,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,976 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:56,976 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:56,982 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:56,982 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:56,982 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:56,983 [1520] DEBUG index - Entering setObjectValuesFromRequest(Potentials) method ... +01/30/13 11:45:56,983 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:45:56,983 [1520] DEBUG index - module name is Potentials +01/30/13 11:45:56,983 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:45:56,992 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:45:56,992 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:56,996 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Potentials +01/30/13 11:45:56,996 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:45:56,996 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:45:56,996 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:57,001 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:45:57,001 [1520] DEBUG index - Prepared sql query parameters : [141,1,5,Potentials,,1,2013-01-30 11:45:56,2013-01-30 11:45:56] +01/30/13 11:45:57,004 [1520] INFO index - function insertIntoEntityTable Potentials vtiger_table name vtiger_potential +01/30/13 11:45:57,004 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,004 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:45:57,004 [1520] DEBUG index - Prepared sql query parameters : [2,vtiger_potential] +01/30/13 11:45:57,008 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:45:57,008 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:57,009 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:45:57,010 [1520] DEBUG index - Prepared sql query parameters : [12,11,Potentials] +01/30/13 11:45:57,013 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:45:57,013 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:45:57,013 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:45:57,013 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:57,015 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:45:57,015 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:45:57,015 [1520] DEBUG index - Entering convertToDollar(0,1.000) method ... +01/30/13 11:45:57,015 [1520] DEBUG index - Exiting convertToDollar method ... +01/30/13 11:45:57,015 [1520] DEBUG index - Entering function get_column_value (amount, 0, amount, 71, N='') +01/30/13 11:45:57,016 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:45:57,016 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:45:57,016 [1520] DEBUG index - Entering function get_column_value (nextstep, , nextstep, 1, V='') +01/30/13 11:45:57,016 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:45:57,017 [1520] DEBUG index - Entering function get_column_value (probability, , probability, 9, N='') +01/30/13 11:45:57,017 [1520] DEBUG index - Entering function get_column_value (campaignid, , campaignid, 58, N='') +01/30/13 11:45:57,018 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_potential(potentialid,potentialname,potential_no,amount,related_to,closingdate,potentialtype,nextstep,leadsource,sales_stage,probability,campaignid) values(?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:45:57,018 [1520] DEBUG index - Prepared sql query parameters : [141,OSSEZ TEST,POT11,0,138,2013-01-30,--None--,,--None--,Prospecting,0,0] +01/30/13 11:45:57,023 [1520] INFO index - function insertIntoEntityTable Potentials vtiger_table name vtiger_potentialscf +01/30/13 11:45:57,023 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,023 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:45:57,023 [1520] DEBUG index - Prepared sql query parameters : [2,vtiger_potentialscf] +01/30/13 11:45:57,026 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_potentialscf(potentialid) values(?) +01/30/13 11:45:57,026 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,059 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:45:57,060 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:45:57,060 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:45:57,063 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:57,063 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:57,063 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:57,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,064 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:57,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,064 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:57,064 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:57,079 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:57,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,080 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,080 [1520] DEBUG index - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentityrel WHERE + crmid = ? AND module = ? AND relcrmid = ? AND relmodule = ? +01/30/13 11:45:57,080 [1520] DEBUG index - Prepared sql query parameters : [138,Accounts,141,Potentials] +01/30/13 11:45:57,082 [1520] DEBUG index - Prepared sql query being executed : INSERT INTO vtiger_crmentityrel(crmid, module, relcrmid, relmodule) VALUES(?,?,?,?) +01/30/13 11:45:57,082 [1520] DEBUG index - Prepared sql query parameters : [138,Accounts,141,Potentials] +01/30/13 11:45:57,104 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity SET modifiedtime = ?, modifiedby = ? WHERE crmid = ? +01/30/13 11:45:57,104 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:45:57,1,138] +01/30/13 11:45:57,108 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:45:57,108 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,110 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:57,110 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:57,110 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,110 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,110 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:45:57,111 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,112 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potential where potentialid=? +01/30/13 11:45:57,113 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,115 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potentialscf where potentialid=? +01/30/13 11:45:57,115 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,118 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,129 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:45:57,131 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:57,132 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:57,132 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:57,132 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:57,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,132 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,133 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:57,133 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,134 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:57,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:45:57,136 [1520] DEBUG index - Prepared sql query parameters : [13x141] +01/30/13 11:45:57,140 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:57,140 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:57,141 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,141 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,141 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,142 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:45:57,142 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,144 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,145 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,146 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,147 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:57,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:57,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:57,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:57,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:57,152 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:45:57,156 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:45:57,156 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,156 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:45:57,159 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:45:57,159 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:45:57,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,192 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:45:57,196 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,196 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:45:57,204 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,205 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:45:57,209 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,209 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:45:57,215 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:45:57,216 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:45:57,262 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,262 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:45:57,264 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,265 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:45:57,266 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,266 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:45:57,268 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,268 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:45:57,272 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,272 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:45:57,274 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,274 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:45:57,276 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,276 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:45:57,278 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,278 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:45:57,280 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,280 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:45:57,282 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:45:57,282 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:45:57,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,315 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:45:57,316 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,317 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:45:57,319 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,319 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:45:57,321 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,321 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:45:57,323 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:45:57,323 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:57,325 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,325 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:45:57,327 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,328 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:45:57,333 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:45:57,333 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:45:57,366 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,366 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:45:57,368 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,369 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:45:57,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,371 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:45:57,375 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,375 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:45:57,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,377 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:45:57,379 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,379 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:45:57,381 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,382 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:45:57,383 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,384 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:45:57,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,386 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:45:57,389 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,389 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:45:57,391 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,391 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:45:57,393 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:45:57,393 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:45:57,396 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:57,400 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:57,400 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:57,403 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:57,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:57,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,406 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:45:57,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:57,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,407 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:45:57,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:57,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,408 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:45:57,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:57,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,409 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:45:57,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:45:57,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,410 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:45:57,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:45:57,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,410 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:45:57,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:57,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,412 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:45:57,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:57,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,412 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:45:57,412 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:45:57,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,413 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:45:57,414 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:45:57,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,414 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:45:57,414 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:57,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,415 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:45:57,415 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:57,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,415 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:45:57,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:57,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,416 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:57,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:57,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,416 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:45:57,416 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:57,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,416 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:45:57,417 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:57,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,417 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:45:57,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:57,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,418 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:45:57,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:57,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,418 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:45:57,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:57,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,419 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:45:57,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:57,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,419 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:45:57,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:57,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,420 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:57,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:57,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,420 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:45:57,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:57,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,421 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:45:57,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:57,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,421 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:45:57,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:57,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,421 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:57,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:57,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,421 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:45:57,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:57,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,422 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:45:57,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:57,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,422 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:45:57,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:57,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,423 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:45:57,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:57,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,423 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:45:57,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:45:57,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,424 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:45:57,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:45:57,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,424 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:45:57,424 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:57,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,425 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:45:57,425 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:57,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,425 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:45:57,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:57,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,425 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:45:57,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:57,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,426 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:45:57,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:45:57,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,427 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:45:57,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:45:57,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,427 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:45:57,427 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:45:57,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,428 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:45:57,428 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:45:57,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,428 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:45:57,428 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:57,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,429 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:45:57,429 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:57,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,429 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:45:57,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:57,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,430 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:45:57,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:57,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,430 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:45:57,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:57,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,431 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:45:57,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:57,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,431 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:45:57,431 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:57,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,431 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:45:57,431 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:57,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,432 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:45:57,432 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:57,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,432 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:45:57,432 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:57,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,432 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:45:57,433 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:57,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,433 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:45:57,433 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:57,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,433 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:45:57,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:57,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,434 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:45:57,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:57,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,434 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:45:57,434 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:45:57,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,435 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:45:57,435 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:45:57,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,435 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:45:57,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:57,436 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:57,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,436 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:45:57,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:57,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,438 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:45:57,438 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:57,443 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:45:57,443 [1520] DEBUG index - Prepared sql query parameters : [2,1,3] +01/30/13 11:45:57,452 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:45:57,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:57,452 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Potentials' +01/30/13 11:45:57,452 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,454 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:57,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:57,455 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:57,455 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:57,455 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,455 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,455 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:45:57,455 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:45:57,455 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,457 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potential where potentialid=? +01/30/13 11:45:57,457 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,460 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potentialscf where potentialid=? +01/30/13 11:45:57,460 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:57,462 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,463 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:45:57,463 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:45:57,463 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:45:57,532 [1520] DEBUG index - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:45:57,532 [1520] DEBUG index - Prepared sql query parameters : [113] +01/30/13 11:45:57,537 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:57,537 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:57,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:45:57,538 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:45:57,540 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:57,540 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:57,541 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:45:57,541 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:45:57,543 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:57,543 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:57,543 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,544 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:45:57,546 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:57,546 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:57,546 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:57,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,547 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,547 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:57,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,548 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:45:57,548 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:57,550 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:45:57,550 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:57,552 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:57,553 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:57,553 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:57,553 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:57,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,554 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:57,554 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:57,554 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:57,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,554 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? and deleted=0 and status='Active' +01/30/13 11:45:57,554 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:57,558 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:45:57,558 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:45:57,560 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:45:57,560 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:45:57,564 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:45:57,564 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:45:57,566 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:45:57,614 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:45:57,614 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:45:57,658 [1520] DEBUG index - Prepared sql query being executed : select task from com_vtiger_workflowtasks + where workflow_id=? +01/30/13 11:45:57,658 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:45:57,699 [1520] DEBUG index - Prepared sql query being executed : select * from com_vtiger_workflowtask_queue + where task_id=? and entity_id=? +01/30/13 11:45:57,699 [1520] DEBUG index - Prepared sql query parameters : [5,13x141] +01/30/13 11:45:57,703 [1520] DEBUG index - Prepared sql query being executed : insert into com_vtiger_workflowtask_queue (task_id, entity_id, do_after) + values (?,?,?) +01/30/13 11:45:57,703 [1520] DEBUG index - Prepared sql query parameters : [5,13x141,0] +01/30/13 11:45:57,717 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:57,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:57,717 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:45:57,717 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:57,719 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:57,719 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:57,723 [1520] DEBUG index - Saved record with id of 138 +01/30/13 11:45:57,724 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:45:57,725 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:57,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:57,922 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,043 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:58,044 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:58,044 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:58,044 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:58,044 [1520] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'record' => '138', + 'pot_id' => '141', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:45:58,044 [1520] INFO index - About to take action CallRelatedList +01/30/13 11:45:58,045 [1520] DEBUG index - in CallRelatedList +01/30/13 11:45:58,045 [1520] INFO index - current page is modules/Accounts/CallRelatedList.php +01/30/13 11:45:58,045 [1520] INFO index - current module is Accounts +01/30/13 11:45:58,079 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:58,079 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:58,079 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:58,079 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:58,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,079 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:58,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,080 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:58,080 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:58,090 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:58,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,091 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:58,091 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:58,091 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:58,092 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:58,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,092 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:58,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,093 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:58,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,093 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:58,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,094 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:58,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,094 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:58,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,094 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:58,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,095 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:58,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,095 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:58,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,096 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:58,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,096 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:58,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,097 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:58,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,097 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:58,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,098 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:58,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,098 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:58,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,099 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:58,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,099 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:58,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,100 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:58,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,100 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:58,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,100 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:58,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,101 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:58,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,101 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:58,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,102 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:58,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,102 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:58,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,103 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:58,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,103 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:58,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,103 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:58,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,104 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:58,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,104 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:58,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,105 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:58,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,105 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:58,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,106 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:58,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,106 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:58,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,107 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:58,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,107 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:58,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,108 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:58,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,108 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:58,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,109 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:58,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,109 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:58,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,110 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:58,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,110 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:58,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,111 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:58,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,111 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:58,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,112 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:58,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,112 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:58,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,112 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:58,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,113 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:58,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,113 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:58,117 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:58,117 [1520] DEBUG index - Prepared sql query parameters : [350,1,Accounts,CallRelatedList,138,2013-01-30 11:45:58] +01/30/13 11:45:58,120 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:58,120 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:58,120 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:58,120 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:58,122 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:58,122 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:58,124 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:58,124 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:58,125 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:58,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,126 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:58,126 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:58,126 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:58,126 [1520] DEBUG index - including headers +01/30/13 11:45:58,126 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:45:58,127 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:45:58,130 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:58,130 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:58,132 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:45:58,133 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:45:58,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,134 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:45:58,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,134 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:45:58,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,135 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:45:58,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,135 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:45:58,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,135 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:45:58,136 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,136 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:45:58,136 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,136 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:45:58,137 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:45:58,137 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:45:58,137 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:45:58,137 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:45:58,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,145 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:45:58,146 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:45:58,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:58,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,147 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:45:58,147 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:45:58,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:58,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,148 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:45:58,148 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:45:58,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:58,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,150 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:45:58,150 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:45:58,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,150 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:58,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,151 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:45:58,151 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:45:58,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:58,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,152 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:45:58,152 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:45:58,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:58,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,153 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:45:58,153 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:45:58,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:45:58,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,154 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:45:58,154 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:45:58,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,155 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:58,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,155 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:45:58,155 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:45:58,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:58,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,157 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:45:58,157 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:45:58,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:58,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,158 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:45:58,158 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:58,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,158 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:58,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,159 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:45:58,159 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:45:58,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:58,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,160 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:45:58,160 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:45:58,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:58,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,161 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:45:58,161 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:45:58,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,162 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:58,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,162 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:45:58,162 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:45:58,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,163 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:58,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,163 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:45:58,163 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:45:58,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,164 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:58,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,165 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:45:58,165 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:45:58,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:58,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,166 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:45:58,166 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:45:58,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:58,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,167 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:45:58,167 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:45:58,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,168 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:45:58,168 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:58) method ... +01/30/13 11:45:58,168 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:45:58,168 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:58) method ... +01/30/13 11:45:58,169 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:45:58,169 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:58,169 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:58,170 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:45:58,170 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:45:58,170 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:45:58,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,183 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:45:58,187 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:45:58,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,187 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:45:58,187 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:58,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:45:58,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:45:58,190 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:58,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,190 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,192 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:45:58,192 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,192 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:58,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,192 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:45:58,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,194 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:45:58,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,194 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:45:58,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,194 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,195 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:45:58,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,196 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:45:58,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,196 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:45:58,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,197 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:45:58,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,197 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,198 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,199 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:45:58,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,200 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:58,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,200 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:45:58,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,200 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:45:58,201 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:45:58,201 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:58,204 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:58,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,205 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:45:58,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,205 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:45:58,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,206 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:45:58,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,207 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:45:58,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,207 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:45:58,207 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:45:58,210 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:45:58,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,210 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:45:58,210 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:45:58,214 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:45:58,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,220 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:45:58,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,220 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:45:58,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:45:58,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,221 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:45:58,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,221 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:58,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,221 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:45:58,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:58,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,221 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:58,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:58,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,222 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:45:58,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:58,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,222 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:45:58,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:45:58,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,223 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:45:58,223 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:58,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,223 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:45:58,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:45:58,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,224 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:45:58,226 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:45:58,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,226 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:45:58,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:45:58,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,227 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:45:58,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:45:58,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,228 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:45:58,228 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:45:58,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,228 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:45:58,228 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:45:58,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,229 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:45:58,229 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:45:58,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,229 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:45:58,229 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:45:58,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,230 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:45:58,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:45:58,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,231 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:45:58,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:45:58,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,231 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:45:58,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:58,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,232 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:45:58,232 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:45:58,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,232 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:45:58,232 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:45:58,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,233 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:45:58,233 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:45:58,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,233 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:45:58,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:45:58,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,233 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:45:58,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:45:58,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,234 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:45:58,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:58,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,234 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:45:58,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:58,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,234 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:45:58,234 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:45:58,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,235 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:45:58,235 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:45:58,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,235 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:45:58,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:45:58,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,236 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:45:58,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:58,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,236 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:58,237 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:58,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,237 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:45:58,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:58,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,238 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:45:58,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,238 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:45:58,239 [1520] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,138) method ... +01/30/13 11:45:58,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,243 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:58,243 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:58,244 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:58,244 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:58,244 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,244 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,244 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:58,245 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:58,253 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,253 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:58,254 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:45:58,254 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,256 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:45:58,256 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,259 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:45:58,259 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,261 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:45:58,261 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,263 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:45:58,263 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,265 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,266 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:45:58,266 [1520] DEBUG index - id is 138 +01/30/13 11:45:58,267 [1520] DEBUG index - name is OSSEZ +01/30/13 11:45:58,267 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:45:58,267 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,267 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:45:58,267 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:45:58,267 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:45:58,268 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:45:58,268 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,268 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:45:58,268 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:45:58,279 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:45:58,279 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,279 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:45:58,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,281 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:58,281 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:45:58,281 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:45:58,281 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:58,283 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:45:58,283 [1520] INFO index - in getOwnerName 1 +01/30/13 11:45:58,283 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:45:58,283 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:58,283 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:58,285 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:45:58,286 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:58,288 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:57) method ... +01/30/13 11:45:58,288 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:45:58,288 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:45:58,288 [1520] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/30/13 11:45:58,288 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,288 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/30/13 11:45:58,289 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:58,297 [1520] DEBUG index - Exiting getRelatedLists method ... +01/30/13 11:45:58,298 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:58,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:58,298 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:45:58,298 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:58,301 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:45:58,302 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:45:58,302 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,302 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:45:58,302 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,303 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:45:58,303 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,303 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:45:58,303 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,303 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:45:58,304 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,304 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:45:58,304 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,304 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:58,305 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,305 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:45:58,306 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,306 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:45:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,308 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,308 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:45:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,309 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:45:58,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,309 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,309 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,310 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,310 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,310 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:58,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,311 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:45:58,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:58,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,314 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:45:58,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:58,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,314 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:45:58,314 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:58,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,315 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:45:58,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/30/13 11:45:58,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,315 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:45:58,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:58,315 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,315 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:58,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/30/13 11:45:58,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,316 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:45:58,316 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:45:58,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,317 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:45:58,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/30/13 11:45:58,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,317 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:45:58,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:45:58,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,318 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:45:58,318 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:45:58,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,318 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:45:58,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:45:58,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,318 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:45:58,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:45:58,318 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,319 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:45:58,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/30/13 11:45:58,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,319 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:45:58,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:45:58,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,320 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:45:58,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:45:58,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,320 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:45:58,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/30/13 11:45:58,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:58,321 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:45:58,321 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:45:58,321 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:45:58,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:58,766 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,780 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,784 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,789 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,789 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,792 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:58,948 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:58,948 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:58,948 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:58,949 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:58,949 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:58,949 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:58,949 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:58,949 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:58,949 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,001 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,001 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,002 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,002 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,002 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,002 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,003 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,013 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,014 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,014 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,014 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,015 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,015 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,016 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,016 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,017 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,017 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,018 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,018 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,019 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,019 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,020 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,020 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,021 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,021 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,022 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,022 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,023 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,023 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,024 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,024 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,025 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,025 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,026 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,027 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,027 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,028 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,028 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,029 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,029 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,030 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,030 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,031 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,031 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,032 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,032 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,033 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,033 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,034 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,034 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,035 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,035 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,036 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,036 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,037 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,037 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,038 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:59,042 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:59,042 [1520] DEBUG index - Prepared sql query parameters : [351,1,Accounts,AccountsAjax,138,2013-01-30 11:45:59] +01/30/13 11:45:59,045 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:59,045 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:59,045 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:59,045 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:59,047 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:59,047 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:59,049 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:59,049 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:59,051 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:59,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,051 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:59,051 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:59,052 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:59,052 [1520] DEBUG index - skipping headers +01/30/13 11:45:59,052 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:59,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,054 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,054 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,054 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,054 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,054 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,054 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,054 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,054 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:59,061 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,061 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,065 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:45:59,065 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:45:59,067 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,067 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,067 [1520] DEBUG index - Entering get_contacts(138) method ... +01/30/13 11:45:59,067 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:45:59,067 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:45:59,070 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:45:59,070 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:45:59,070 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,070 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,070 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,070 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:45:59,079 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,079 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,079 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,079 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,081 [1520] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/30/13 11:45:59,081 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,081 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:59,081 [1520] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/30/13 11:45:59,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,082 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,082 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:45:59,082 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,082 [1520] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/30/13 11:45:59,082 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,082 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:59,084 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:45:59,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,087 [1520] DEBUG index - Entering function initSortByField (Contacts) +01/30/13 11:45:59,087 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,088 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:45:59,088 [1520] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/30/13 11:45:59,091 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:45:59,091 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:45:59,091 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:45:59,092 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/30/13 11:45:59,092 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,093 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,093 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:45:59,093 [1520] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/30/13 11:45:59,095 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:45:59,096 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 138 +01/30/13 11:45:59,098 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 138 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/30/13 11:45:59,103 [1520] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,138,) method ... +01/30/13 11:45:59,103 [1520] DEBUG index - Entering getURLstring(Contacts) method ... +01/30/13 11:45:59,103 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:45:59,103 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,103 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,104 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,105 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,106 [1520] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/30/13 11:45:59,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,108 [1520] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/30/13 11:45:59,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,109 [1520] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/30/13 11:45:59,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,111 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:45:59,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,111 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:45:59,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,113 [1520] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/30/13 11:45:59,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:45:59,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,115 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:59,116 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:45:59,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,116 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:45:59,117 [1520] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:45:59,117 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,118 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,119 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,119 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:45:59,119 [1520] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/30/13 11:45:59,122 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:45:59,122 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/30/13 11:45:59,122 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:45:59,122 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,123 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,123 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:45:59,123 [1520] DEBUG index - Prepared sql query parameters : [6,4] +01/30/13 11:45:59,125 [1520] INFO index - getNextRow +01/30/13 11:45:59,126 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:45:59,126 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:45:59,126 [1520] DEBUG index - Exiting get_contacts method ... +01/30/13 11:45:59,129 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:59,129 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:59,129 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:59,130 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:59,130 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:59,130 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:59,130 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:59,130 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:59,130 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,171 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,171 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,171 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,171 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,172 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,172 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,172 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,181 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,181 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,181 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,182 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,182 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,183 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,184 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,184 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,185 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,185 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,186 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,186 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,187 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,187 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,188 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,188 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,189 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,189 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,190 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,190 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,191 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,191 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,192 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,192 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,193 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,193 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,194 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,195 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,195 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,195 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,196 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,196 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,197 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,197 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,197 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:59,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,198 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,198 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,199 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,199 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,200 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,200 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,201 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,201 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,202 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,202 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,203 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,203 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,204 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,204 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,205 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,206 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,206 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,207 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:59,211 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:59,211 [1520] DEBUG index - Prepared sql query parameters : [352,1,Accounts,AccountsAjax,138,2013-01-30 11:45:59] +01/30/13 11:45:59,216 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:59,216 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:59,216 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:59,216 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:59,218 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:59,218 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:59,220 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:59,220 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:59,222 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:59,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,223 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:59,223 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:59,223 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:59,223 [1520] DEBUG index - skipping headers +01/30/13 11:45:59,223 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:59,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,225 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,225 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,225 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,225 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,226 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,226 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:59,233 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,233 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,237 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:45:59,237 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:45:59,239 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,239 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,240 [1520] DEBUG index - Entering get_quotes(138) method ... +01/30/13 11:45:59,240 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:45:59,240 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:45:59,245 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:45:59,245 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:45:59,245 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,245 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,245 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,246 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:45:59,253 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,253 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,253 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,253 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,253 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,254 [1520] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/30/13 11:45:59,254 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,255 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:59,255 [1520] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/30/13 11:45:59,255 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,255 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,255 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:45:59,256 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,256 [1520] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/30/13 11:45:59,256 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,256 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:59,258 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:45:59,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,261 [1520] DEBUG index - Entering function initSortByField (Quotes) +01/30/13 11:45:59,261 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,262 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:45:59,262 [1520] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/30/13 11:45:59,265 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:45:59,265 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:45:59,265 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:45:59,265 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,265 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,266 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,266 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:45:59,269 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:45:59,296 [1520] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,138,) method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,296 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,297 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,298 [1520] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/30/13 11:45:59,300 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,300 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,300 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:45:59,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,302 [1520] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/30/13 11:45:59,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,303 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:45:59,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,304 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:45:59,304 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,304 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:45:59,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:45:59,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,306 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:59,308 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:45:59,308 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,308 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:45:59,309 [1520] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:45:59,309 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,309 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,310 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,311 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,311 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/30/13 11:45:59,311 [1520] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:45:59,315 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,315 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:45:59,316 [1520] DEBUG index - Prepared sql query parameters : [6,20] +01/30/13 11:45:59,319 [1520] INFO index - getNextRow +01/30/13 11:45:59,319 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:45:59,319 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:45:59,320 [1520] DEBUG index - Exiting get_quotes method ... +01/30/13 11:45:59,324 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:59,324 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:59,324 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:59,325 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:59,325 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:59,325 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:59,325 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:59,325 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:59,325 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,372 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,372 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,372 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,372 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,373 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,373 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,373 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,381 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,381 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,382 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,382 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,383 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,383 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,384 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,384 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,385 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,385 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,386 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,386 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,387 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,387 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,388 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,388 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,389 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,389 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,390 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,390 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,391 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,391 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,392 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,392 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,393 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,393 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,394 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,394 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,395 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,395 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,396 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,395 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:59,396 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,397 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,397 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,398 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,398 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,399 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,399 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,400 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,400 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,401 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,401 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,401 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,402 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,402 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,402 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,403 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,403 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,404 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,404 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,405 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,405 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,406 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,406 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:59,410 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:59,411 [1520] DEBUG index - Prepared sql query parameters : [353,1,Accounts,AccountsAjax,138,2013-01-30 11:45:59] +01/30/13 11:45:59,422 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:59,422 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:59,423 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:59,423 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:59,424 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:59,425 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:59,426 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:59,427 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:59,428 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:59,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,429 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:59,429 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:59,429 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:59,429 [1520] DEBUG index - skipping headers +01/30/13 11:45:59,429 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:59,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,432 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,432 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,432 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,432 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,432 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,432 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:59,440 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,440 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,444 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:45:59,444 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:45:59,446 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,446 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,446 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,447 [1520] DEBUG index - Entering get_salesorder(138) method ... +01/30/13 11:45:59,447 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:45:59,447 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:45:59,450 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:45:59,450 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:45:59,450 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,450 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,451 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,451 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:45:59,459 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,459 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,459 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,459 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,461 [1520] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/30/13 11:45:59,461 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,461 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:59,461 [1520] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/30/13 11:45:59,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,462 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,462 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:45:59,462 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,462 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:45:59,462 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,462 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:59,465 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:45:59,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,468 [1520] DEBUG index - Entering function initSortByField (SalesOrder) +01/30/13 11:45:59,468 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,468 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,468 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:45:59,468 [1520] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/30/13 11:45:59,472 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:45:59,472 [1520] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:45:59,472 [1520] DEBUG index - in getColumnFields SalesOrder +01/30/13 11:45:59,472 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,473 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:45:59,474 [1520] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/30/13 11:45:59,476 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:45:59,477 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 138 +01/30/13 11:45:59,481 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 138 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/30/13 11:45:59,486 [1520] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,138,) method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,486 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,488 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,488 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,489 [1520] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/30/13 11:45:59,489 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,489 [1520] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/30/13 11:45:59,491 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,491 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:45:59,492 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,493 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:45:59,493 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,493 [1520] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/30/13 11:45:59,493 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,493 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:45:59,495 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:45:59,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,495 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:59,496 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:45:59,497 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,497 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:45:59,498 [1520] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,SalesOrderEditView,DeleteSalesOrder,) method ... +01/30/13 11:45:59,498 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,498 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,499 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,499 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,500 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:45:59,500 [1520] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/30/13 11:45:59,503 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,504 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:45:59,504 [1520] DEBUG index - Prepared sql query parameters : [6,22] +01/30/13 11:45:59,506 [1520] INFO index - getNextRow +01/30/13 11:45:59,507 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:45:59,507 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:45:59,507 [1520] DEBUG index - Exiting get_salesorder method ... +01/30/13 11:45:59,511 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:59,512 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:59,512 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:59,512 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:59,513 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:59,513 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:59,513 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:59,513 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:59,513 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,558 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,558 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,558 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,559 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,559 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,559 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,559 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,568 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,568 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,568 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,568 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,569 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,569 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,570 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,570 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,571 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,571 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,572 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,572 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,573 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,573 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,574 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,574 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,575 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,575 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,576 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,576 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,577 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,577 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,578 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,578 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,579 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,579 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,580 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,580 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:59,580 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,581 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,582 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,582 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,583 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,583 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,584 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,584 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,585 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,585 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,586 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,586 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,587 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,587 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,588 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,588 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,589 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,589 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,590 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,590 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,591 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,591 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,592 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,592 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:59,596 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:59,596 [1520] DEBUG index - Prepared sql query parameters : [354,1,Accounts,AccountsAjax,138,2013-01-30 11:45:59] +01/30/13 11:45:59,599 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:59,599 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:59,599 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:59,599 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:59,601 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:59,601 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:59,603 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:59,603 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:59,605 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:59,605 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,606 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:59,606 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:59,606 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:59,606 [1520] DEBUG index - skipping headers +01/30/13 11:45:59,606 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:59,607 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,608 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,609 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,609 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,609 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,609 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,609 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,609 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:59,616 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,616 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,620 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:45:59,620 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:45:59,622 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,622 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,622 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,622 [1520] DEBUG index - Entering get_invoices(138) method ... +01/30/13 11:45:59,622 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:45:59,622 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:45:59,627 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:45:59,628 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:45:59,628 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:45:59,628 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,628 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,628 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:45:59,635 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,636 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,636 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:45:59,636 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,636 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,637 [1520] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/30/13 11:45:59,637 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,638 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:45:59,638 [1520] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/30/13 11:45:59,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,638 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,639 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:59,639 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,639 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:45:59,639 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,639 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:59,641 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:45:59,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,644 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,644 [1520] DEBUG index - Entering function initSortByField (Invoice) +01/30/13 11:45:59,644 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,645 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:45:59,645 [1520] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/30/13 11:45:59,648 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:45:59,648 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:45:59,648 [1520] DEBUG index - Entering getColumnFields(Invoice) method ... +01/30/13 11:45:59,648 [1520] DEBUG index - in getColumnFields Invoice +01/30/13 11:45:59,649 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,649 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,649 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,649 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:45:59,649 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,650 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,650 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:45:59,652 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 138 ORDER BY crmid ASC LIMIT 0, 20 +01/30/13 11:45:59,669 [1520] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,138,) method ... +01/30/13 11:45:59,669 [1520] DEBUG index - Entering getURLstring(Invoice) method ... +01/30/13 11:45:59,670 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:45:59,670 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,670 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,671 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,671 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,672 [1520] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/30/13 11:45:59,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,674 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:45:59,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,676 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:45:59,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,676 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:45:59,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,678 [1520] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/30/13 11:45:59,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:45:59,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,680 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:59,681 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:45:59,682 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,682 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:45:59,683 [1520] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:45:59,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,684 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,684 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,685 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:45:59,685 [1520] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/30/13 11:45:59,688 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,688 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:45:59,688 [1520] DEBUG index - Prepared sql query parameters : [6,23] +01/30/13 11:45:59,691 [1520] INFO index - getNextRow +01/30/13 11:45:59,691 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:45:59,691 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:45:59,692 [1520] DEBUG index - Exiting get_invoices method ... +01/30/13 11:45:59,696 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:59,696 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:59,696 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:59,697 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:59,697 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:59,697 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:59,697 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:59,697 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:59,698 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,745 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,745 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,745 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,745 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,746 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,746 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,746 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,756 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,756 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,757 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,757 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,758 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,758 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,759 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,759 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,760 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,760 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,761 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,761 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,762 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,762 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,763 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,763 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,764 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,764 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,765 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,765 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,766 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,766 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,767 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,767 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,768 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,768 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,769 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:59,769 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,770 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,770 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,770 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,771 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,771 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,772 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,772 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,773 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,773 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,774 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,774 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,775 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,776 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,776 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,777 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,777 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,778 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,778 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,779 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,779 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,780 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,780 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,781 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,781 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,782 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:45:59,797 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:45:59,797 [1520] DEBUG index - Prepared sql query parameters : [355,1,Accounts,AccountsAjax,138,2013-01-30 11:45:59] +01/30/13 11:45:59,801 [1520] DEBUG index - Current user is: admin +01/30/13 11:45:59,801 [1520] DEBUG index - Current theme is: softed +01/30/13 11:45:59,801 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:45:59,801 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:45:59,803 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:45:59,803 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:45:59,805 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:45:59,805 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:45:59,807 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:45:59,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,807 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:45:59,808 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:45:59,808 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:45:59,808 [1520] DEBUG index - skipping headers +01/30/13 11:45:59,808 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:45:59,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,810 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,810 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,810 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,810 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,811 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,811 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,811 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:45:59,818 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,818 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,821 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:45:59,822 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:59,824 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,824 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,824 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,824 [1520] DEBUG index - Entering get_opportunities(138) method ... +01/30/13 11:45:59,824 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:45:59,824 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:59,826 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:59,827 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:59,827 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,827 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,827 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,827 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,827 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,827 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:45:59,833 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,833 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,834 [1520] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/30/13 11:45:59,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,835 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:45:59,835 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:59,835 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:45:59,835 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:59,836 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,836 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:45:59,838 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:45:59,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:45:59,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,841 [1520] DEBUG index - Entering function initSortByField (Potentials) +01/30/13 11:45:59,841 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,841 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:45:59,841 [1520] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/30/13 11:45:59,844 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:45:59,844 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:45:59,844 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:45:59,844 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,845 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:45:59,845 [1520] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/30/13 11:45:59,848 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:45:59,848 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 138 +01/30/13 11:45:59,852 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 138 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/30/13 11:45:59,856 [1520] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,138,) method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Entering getURLstring(Potentials) method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,858 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,859 [1520] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/30/13 11:45:59,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,861 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:45:59,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,862 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:45:59,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,864 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:45:59,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,866 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:45:59,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,867 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:45:59,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,868 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:45:59,869 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:59,870 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,870 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:45:59,871 [1520] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +141,138,OSSEZ TEST,Prospecting,--None--,0.00,2013-01-30,--None--,OSSEZ,胡昱铖,141,5 +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:45:59,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,872 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,873 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:45:59,873 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/30/13 11:45:59,877 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,potentialname,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,878 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,878 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,879 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,880 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,880 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,related_to,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,880 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,880 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,882 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,882 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:45:59,882 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:45:59,882 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:45:59,882 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:59,884 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:45:59,884 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:45:59,885 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:45:59,885 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:45:59,887 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:45:59,887 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:45:59,892 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,892 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,sales_stage,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,892 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,893 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,894 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,894 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,894 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,895 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,amount,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,895 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,895 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,896 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,897 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,897 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,closingdate,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,899 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,899 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,900 [1520] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,assigned_user_id,Potentials,Potentials,141,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,) method ... +01/30/13 11:45:59,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,901 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Exiting getValue method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,904 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/30/13 11:45:59,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:45:59,904 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:45:59,904 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:45:59,909 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:45:59,909 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:45:59,909 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,910 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,911 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:45:59,911 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:45:59,914 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,914 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:45:59,914 [1520] DEBUG index - Prepared sql query parameters : [6,2] +01/30/13 11:45:59,917 [1520] INFO index - getNextRow +01/30/13 11:45:59,918 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:45:59,918 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:45:59,918 [1520] DEBUG index - Exiting get_opportunities method ... +01/30/13 11:45:59,922 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:45:59,922 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:45:59,923 [1520] DEBUG index - ****Starting for new session +01/30/13 11:45:59,923 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:45:59,923 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:45:59,923 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:45:59,923 [1520] DEBUG index - in AccountsAjax +01/30/13 11:45:59,924 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:45:59,924 [1520] INFO index - current module is Accounts +01/30/13 11:45:59,964 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:45:59,964 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:45:59,965 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:45:59,965 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,965 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,965 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:45:59,966 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:45:59,974 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:45:59,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:45:59,974 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:45:59,974 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:45:59,975 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:45:59,976 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:45:59,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,976 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:45:59,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,977 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:45:59,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,977 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:45:59,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,978 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:45:59,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,978 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:45:59,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,979 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:45:59,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,979 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:45:59,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,980 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:45:59,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,980 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:45:59,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,981 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:45:59,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,981 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:45:59,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,982 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:45:59,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,982 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:45:59,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,983 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:45:59,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,983 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:45:59,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,984 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:45:59,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,984 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:45:59,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,985 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:45:59,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,985 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:45:59,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,986 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:45:59,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,987 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:45:59,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,987 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:45:59,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,988 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:45:59,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,988 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:45:59,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,988 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:45:59,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,989 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:45:59,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,989 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:45:59,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,990 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:45:59,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,991 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:45:59,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,991 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:45:59,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,992 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:45:59,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,992 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:45:59,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,993 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:45:59,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,993 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:45:59,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,994 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:45:59,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,994 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:45:59,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,995 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:45:59,995 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:45:59,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,995 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:45:59,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,996 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:45:59,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,996 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:45:59,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,997 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:45:59,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,998 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:45:59,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,998 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:45:59,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,999 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:45:59,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,999 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:45:59,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:45:59,1000 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:45:59,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,000 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,004 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,004 [1520] DEBUG index - Prepared sql query parameters : [356,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,013 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,014 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,014 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,014 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,016 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,016 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,018 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,018 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,019 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,020 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,020 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,020 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,020 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,021 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,021 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,023 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,023 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,023 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,023 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,023 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,024 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,030 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,031 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,034 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,034 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,037 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,037 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,037 [1520] DEBUG index - Entering get_activities(138) method ... +01/30/13 11:46:00,037 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:00,037 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:46:00,039 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:00,039 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:00,039 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,040 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,040 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,040 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,040 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:46:00,040 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:46:00,047 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,048 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:00,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,048 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,048 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,050 [1520] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/30/13 11:46:00,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,050 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:46:00,051 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,051 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:00,051 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:46:00,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,052 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:00,052 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,052 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:00,052 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:46:00,053 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:00,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,053 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:00,053 [1520] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/30/13 11:46:00,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,053 [1520] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/30/13 11:46:00,054 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,054 [1520] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/30/13 11:46:00,054 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:00,054 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:00,056 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:00,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,059 [1520] DEBUG index - Entering function initSortByField (Calendar) +01/30/13 11:46:00,059 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,059 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,059 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:00,059 [1520] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:00,062 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:00,063 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:00,063 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:00,063 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,063 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:00,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,063 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,064 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:00,064 [1520] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/30/13 11:46:00,067 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:00,067 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 138 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/30/13 11:46:00,071 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/30/13 11:46:00,079 [1520] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,138,) method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Entering getURLstring(Activity) method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,079 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,080 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,081 [1520] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/30/13 11:46:00,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,083 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:00,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,085 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:00,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,086 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:00,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,087 [1520] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/30/13 11:46:00,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,088 [1520] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/30/13 11:46:00,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,089 [1520] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/30/13 11:46:00,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,091 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:46:00,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,092 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:46:00,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,093 [1520] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/30/13 11:46:00,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,094 [1520] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/30/13 11:46:00,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,096 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:00,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:00,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,098 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:46:00,099 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:00,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,100 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:00,101 [1520] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:00,101 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,101 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,102 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,102 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,103 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:46:00,103 [1520] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/30/13 11:46:00,107 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:00,107 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:00,108 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,108 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,108 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,108 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:00,108 [1520] DEBUG index - Prepared sql query parameters : [6,9] +01/30/13 11:46:00,111 [1520] INFO index - getNextRow +01/30/13 11:46:00,112 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:00,112 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:00,112 [1520] DEBUG index - Exiting get_activities method ... +01/30/13 11:46:00,116 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,116 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,116 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,117 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,117 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,117 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,117 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,117 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,117 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,156 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,156 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,156 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,156 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,157 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,157 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,157 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,167 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,167 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,167 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,168 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,168 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,169 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,169 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,170 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,171 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,171 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,171 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,172 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,173 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,173 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,173 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,174 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,174 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,175 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,175 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,176 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,176 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,177 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,177 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,178 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,178 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,179 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,179 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,180 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,180 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,181 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,181 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,181 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,182 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,182 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,183 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:00,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,183 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,183 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,184 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,184 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,185 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,185 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,186 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,186 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,187 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,187 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,188 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,188 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,189 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,189 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,190 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,190 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,191 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:00,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,191 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,195 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,195 [1520] DEBUG index - Prepared sql query parameters : [357,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,200 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,200 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,200 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,200 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,202 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,202 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,204 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,204 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,206 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,207 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,207 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,207 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,207 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,207 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,209 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,209 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,209 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,210 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,210 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,210 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,217 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,217 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,217 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,221 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,221 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:46:00,223 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,223 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,223 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,223 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,223 [1520] DEBUG index - Entering get_emails(138) method ... +01/30/13 11:46:00,223 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:00,224 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:00,226 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:46:00,226 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:46:00,226 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:46:00,226 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,226 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,226 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,226 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:00,231 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,231 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,231 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:46:00,231 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,231 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,233 [1520] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/30/13 11:46:00,233 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,233 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,233 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:00,233 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,234 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:46:00,234 [1520] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/30/13 11:46:00,234 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:00,236 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:00,236 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:00,240 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (138) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 138 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:00,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,243 [1520] DEBUG index - Entering function initSortByField (Emails) +01/30/13 11:46:00,243 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,243 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:00,243 [1520] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:00,246 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:00,246 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:46:00,247 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:46:00,247 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,247 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,247 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:00,248 [1520] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/30/13 11:46:00,250 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:00,250 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/30/13 11:46:00,255 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (138) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 138 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/30/13 11:46:00,260 [1520] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,138,) method ... +01/30/13 11:46:00,260 [1520] DEBUG index - Entering getURLstring(Emails) method ... +01/30/13 11:46:00,260 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:00,260 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,261 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,261 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,261 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,262 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,263 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:46:00,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,265 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:00,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,265 [1520] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/30/13 11:46:00,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,267 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:00,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,267 [1520] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/30/13 11:46:00,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,269 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:46:00,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:00,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,269 [1520] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/30/13 11:46:00,269 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:00,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,270 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:00,270 [1520] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:00,270 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,270 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,272 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,272 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:00,272 [1520] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/30/13 11:46:00,275 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:00,275 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:00,276 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:00,276 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,276 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,276 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,276 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:00,276 [1520] DEBUG index - Prepared sql query parameters : [6,10] +01/30/13 11:46:00,279 [1520] INFO index - getNextRow +01/30/13 11:46:00,279 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:00,279 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:00,279 [1520] DEBUG index - Exiting get_emails method ... +01/30/13 11:46:00,283 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,283 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,283 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,284 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,284 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,284 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,284 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,285 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,285 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,321 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,321 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,321 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,321 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,322 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,322 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,322 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,331 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,331 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,331 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,332 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,332 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,333 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,333 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,334 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,334 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,335 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,335 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,336 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,337 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,337 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,338 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,338 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,339 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,339 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,340 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,340 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,341 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,341 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,342 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,342 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,343 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,343 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,344 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,344 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,345 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,345 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,346 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,346 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,347 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,347 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,348 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:00,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,348 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,348 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,349 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,349 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,350 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,350 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,351 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,351 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,352 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,352 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,353 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,353 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,354 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,355 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,355 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,356 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,356 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:00,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,357 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,360 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,360 [1520] DEBUG index - Prepared sql query parameters : [358,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,363 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,364 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,364 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,364 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,365 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,366 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,367 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,367 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,369 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,370 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,370 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,370 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,370 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,370 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,372 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,372 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,372 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,372 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,372 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,373 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,373 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,380 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,380 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,380 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,384 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:00,386 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,386 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,386 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,386 [1520] DEBUG index - Entering get_history(138) method ... +01/30/13 11:46:00,387 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:00,387 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:00,389 [1520] DEBUG index - Exiting get_history method ... +01/30/13 11:46:00,389 [1520] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0,138) method ... +01/30/13 11:46:00,390 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,390 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:00,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,390 [1520] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 138 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/30/13 11:46:00,419 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,419 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,419 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,420 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,420 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,420 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,420 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,420 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,420 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,468 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,469 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,469 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,469 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,469 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,469 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,470 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,470 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,470 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,478 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,478 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,478 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,478 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,479 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,479 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,480 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,480 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,481 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,482 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,482 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,483 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,483 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,484 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,484 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,484 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:00,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,485 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,485 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,486 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,486 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,487 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,487 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,488 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,488 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,489 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,489 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,490 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,490 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,491 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,491 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,492 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,492 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,493 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,493 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,494 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,494 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,495 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,496 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,496 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,497 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,497 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,498 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,498 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,499 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,499 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,500 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,500 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,501 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,501 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,502 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,502 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,503 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,503 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:00,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,504 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,509 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,509 [1520] DEBUG index - Prepared sql query parameters : [359,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,512 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,512 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,512 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,512 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,514 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,514 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,516 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,516 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,518 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,518 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,519 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,519 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,519 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,519 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,521 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,521 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,521 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,521 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,522 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,522 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,522 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,530 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,530 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,530 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,534 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,534 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:46:00,536 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,536 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,536 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,536 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,537 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:00,538 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:00,540 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:46:00,540 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:46:00,540 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:46:00,540 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,540 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,540 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,541 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:46:00,544 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,544 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,544 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:46:00,544 [1520] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/30/13 11:46:00,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,545 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:00,545 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:00,545 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:00,545 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:00,545 [1520] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/30/13 11:46:00,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,546 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,546 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:46:00,546 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,546 [1520] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/30/13 11:46:00,546 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:00,546 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:00,549 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:00,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,552 [1520] DEBUG index - Entering function initSortByField (Documents) +01/30/13 11:46:00,552 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,553 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:00,553 [1520] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:00,556 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:00,556 [1520] DEBUG notes - Entering Documents() method ... +01/30/13 11:46:00,556 [1520] DEBUG index - Entering getColumnFields(Documents) method ... +01/30/13 11:46:00,556 [1520] DEBUG index - in getColumnFields Documents +01/30/13 11:46:00,556 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,556 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,556 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,556 [1520] DEBUG notes - Exiting Documents method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,557 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:00,557 [1520] DEBUG index - Prepared sql query parameters : [8,%title%] +01/30/13 11:46:00,559 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:00,560 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=138 +01/30/13 11:46:00,563 [1520] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=138 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/30/13 11:46:00,569 [1520] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,138,) method ... +01/30/13 11:46:00,569 [1520] DEBUG index - Entering getURLstring(Documents) method ... +01/30/13 11:46:00,569 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:00,569 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,570 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,570 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,571 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,571 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:00,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,572 [1520] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/30/13 11:46:00,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:00,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,574 [1520] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/30/13 11:46:00,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:00,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,576 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:46:00,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:00,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,578 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:00,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:00,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,579 [1520] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/30/13 11:46:00,580 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:00,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,580 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:00,581 [1520] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:00,581 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,581 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,582 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,583 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:00,583 [1520] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/30/13 11:46:00,586 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:00,586 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:00,587 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:00,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,587 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,587 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:00,587 [1520] DEBUG index - Prepared sql query parameters : [6,8] +01/30/13 11:46:00,590 [1520] INFO index - getNextRow +01/30/13 11:46:00,591 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:00,591 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:00,594 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,594 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,595 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,595 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,595 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,595 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,596 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,596 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,596 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,634 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,634 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,634 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,634 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,635 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,635 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,635 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,635 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,643 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,644 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,644 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,644 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,644 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,645 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,645 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,646 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,646 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,647 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,647 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,648 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,648 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,649 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,649 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,650 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,650 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,651 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,651 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,652 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,652 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,653 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,653 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,654 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,654 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,655 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,655 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,656 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,657 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,657 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,658 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,658 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,659 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,659 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,660 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,660 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,661 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,661 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:00,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,661 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,662 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,662 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,663 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,663 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,664 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,664 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,665 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,665 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,666 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,666 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,667 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,667 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:00,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,668 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,672 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,672 [1520] DEBUG index - Prepared sql query parameters : [360,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,675 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,675 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,675 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,676 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,678 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,678 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,680 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,680 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,681 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,682 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,682 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,682 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,682 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,682 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,683 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,685 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,685 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,685 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,685 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,685 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,685 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,692 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,693 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,696 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,696 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:46:00,698 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,698 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,698 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,699 [1520] DEBUG index - Entering get_tickets(138) method ... +01/30/13 11:46:00,699 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:00,699 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:46:00,700 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:46:00,701 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:46:00,701 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:46:00,701 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,701 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,701 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,701 [1520] DEBUG index - Prepared sql query parameters : [13] +01/30/13 11:46:00,706 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,706 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,706 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:46:00,706 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,706 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,707 [1520] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/30/13 11:46:00,707 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,708 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:00,708 [1520] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/30/13 11:46:00,709 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,709 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,709 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:00,709 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:00,709 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:00,709 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:00,709 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:00,711 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:00,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,714 [1520] DEBUG index - Entering function initSortByField (HelpDesk) +01/30/13 11:46:00,714 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,714 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:00,714 [1520] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:00,717 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:00,717 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:46:00,717 [1520] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:46:00,717 [1520] DEBUG index - in getColumnFields HelpDesk +01/30/13 11:46:00,717 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,717 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,717 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,718 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:00,718 [1520] DEBUG index - Prepared sql query parameters : [13,%title%] +01/30/13 11:46:00,720 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:00,721 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 +01/30/13 11:46:00,723 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=138 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/30/13 11:46:00,727 [1520] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,138,) method ... +01/30/13 11:46:00,727 [1520] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/30/13 11:46:00,727 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:00,727 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,727 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,729 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,729 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,729 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,730 [1520] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/30/13 11:46:00,732 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,732 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:00,733 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,734 [1520] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/30/13 11:46:00,734 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,734 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:46:00,735 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,736 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:46:00,737 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,737 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:46:00,737 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:00,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,738 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:46:00,739 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:00,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,740 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:00,741 [1520] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:00,741 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,741 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,742 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,742 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:00,742 [1520] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/30/13 11:46:00,745 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:00,745 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/30/13 11:46:00,745 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:00,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,746 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,746 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:00,746 [1520] DEBUG index - Prepared sql query parameters : [6,13] +01/30/13 11:46:00,748 [1520] INFO index - getNextRow +01/30/13 11:46:00,749 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:00,749 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:00,749 [1520] DEBUG index - Exiting get_tickets method ... +01/30/13 11:46:00,754 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,754 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,755 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,755 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,755 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,755 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,755 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,756 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,756 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,802 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,803 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,803 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,803 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,803 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,803 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,804 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,811 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,812 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,812 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,812 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,813 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,813 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,814 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,814 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,815 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,815 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,816 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,816 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,817 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,817 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,818 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,818 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,819 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,819 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,820 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,820 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,821 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,821 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,822 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,822 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,823 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,823 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,824 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,824 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,825 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,825 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,826 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,826 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,827 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,827 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,828 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,828 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,829 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,829 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,830 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,830 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,831 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,831 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,832 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,832 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,833 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,833 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,834 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,834 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,835 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,835 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,836 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:00,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,836 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:00,841 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:00,841 [1520] DEBUG index - Prepared sql query parameters : [361,1,Accounts,AccountsAjax,138,2013-01-30 11:46:00] +01/30/13 11:46:00,844 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:00,844 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:00,844 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:00,845 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:00,846 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:00,847 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:00,848 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:00,848 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:00,850 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:00,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,851 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:00,851 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:00,851 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:00,851 [1520] DEBUG index - skipping headers +01/30/13 11:46:00,851 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:00,852 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,853 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:00,853 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:00,853 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,854 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,854 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,854 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:00,861 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,862 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,862 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,865 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:00,865 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:46:00,868 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,868 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,868 [1520] DEBUG index - Entering get_products(138) method ... +01/30/13 11:46:00,868 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:00,868 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:46:00,870 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:46:00,870 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:46:00,870 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:46:00,870 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,870 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,871 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,871 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,871 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,871 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:46:00,879 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,879 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,879 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:46:00,879 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,880 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,881 [1520] DEBUG index - Entering isPermitted(Products,4,) method ... +01/30/13 11:46:00,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,881 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:00,881 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:00,882 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:00,882 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:00,882 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:00,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:00,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,885 [1520] DEBUG index - Entering function initSortByField (Products) +01/30/13 11:46:00,885 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,885 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,885 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:00,885 [1520] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:00,888 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:00,888 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:46:00,888 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:46:00,888 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:46:00,888 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,889 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,889 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:46:00,889 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,889 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,889 [1520] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/30/13 11:46:00,890 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,890 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,890 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:00,890 [1520] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/30/13 11:46:00,892 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:00,893 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:00,895 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/30/13 11:46:00,901 [1520] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,138,) method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Entering getURLstring(Products) method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,902 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:00,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,903 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:46:00,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:00,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,905 [1520] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/30/13 11:46:00,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:00,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,907 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/30/13 11:46:00,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:00,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,909 [1520] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/30/13 11:46:00,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:00,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:00,910 [1520] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/30/13 11:46:00,912 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:00,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:00,912 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:00,913 [1520] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:00,913 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:00,913 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:00,914 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,915 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:00,915 [1520] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/30/13 11:46:00,918 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:00,918 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:00,918 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:00,918 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,918 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:00,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,919 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:00,919 [1520] DEBUG index - Prepared sql query parameters : [6,14] +01/30/13 11:46:00,922 [1520] INFO index - getNextRow +01/30/13 11:46:00,922 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:00,923 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:00,923 [1520] DEBUG index - Exiting get_products method ... +01/30/13 11:46:00,925 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:00,925 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:00,926 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:00,926 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:00,926 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:00,926 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:00,926 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:00,927 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:00,927 [1520] INFO index - current module is Accounts +01/30/13 11:46:00,963 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:00,963 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:00,963 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:00,963 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,964 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,964 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:00,964 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:00,975 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:00,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:00,975 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:00,975 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:00,976 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:00,976 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:00,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,977 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:00,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,978 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:00,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,978 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:00,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,979 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:00,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,979 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:00,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,980 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:00,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,980 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:00,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,981 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:00,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,981 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:00,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,982 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:00,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,982 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:00,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,983 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:00,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,983 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:00,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,984 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:00,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,984 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:00,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,985 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:00,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,985 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:00,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,986 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:00,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,986 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:00,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,987 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:00,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,987 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:00,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,988 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:00,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,988 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:00,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,988 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:00,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,989 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:00,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,989 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:00,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,990 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:00,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,990 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:00,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,991 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:00,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,991 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:00,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,992 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:00,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,993 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:00,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,993 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:00,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,994 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:00,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,994 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:00,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,995 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:00,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,995 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:00,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,996 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:00,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,996 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:00,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,997 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:00,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,997 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:00,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,998 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:00,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,998 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:00,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,999 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:00,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,999 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:00,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:00,1000 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:01,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,000 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:01,004 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:01,004 [1520] DEBUG index - Prepared sql query parameters : [362,1,Accounts,AccountsAjax,138,2013-01-30 11:46:01] +01/30/13 11:46:01,007 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:01,007 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:01,008 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:01,008 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:01,009 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:01,010 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:01,011 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:01,011 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:01,013 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:01,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,014 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:01,014 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:01,014 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:01,014 [1520] DEBUG index - skipping headers +01/30/13 11:46:01,014 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:01,015 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,017 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:01,017 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:01,017 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,017 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,017 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,017 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:01,024 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,024 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,027 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:01,028 [1520] DEBUG index - Prepared sql query parameters : [87] +01/30/13 11:46:01,030 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:01,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,030 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,030 [1520] DEBUG index - Entering get_campaigns(138) method ... +01/30/13 11:46:01,030 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:01,030 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:46:01,032 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:46:01,033 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:46:01,033 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,033 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,033 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,033 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,033 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,033 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:46:01,039 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,039 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,039 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,039 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,040 [1520] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/30/13 11:46:01,041 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,041 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:01,041 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:01,041 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:01,041 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:01,042 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:01,042 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:01,044 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:01,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,047 [1520] DEBUG index - Entering function initSortByField (Campaigns) +01/30/13 11:46:01,047 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,047 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,047 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:01,047 [1520] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:01,050 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:01,051 [1520] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/30/13 11:46:01,051 [1520] DEBUG index - in getColumnFields Campaigns +01/30/13 11:46:01,051 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,051 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,051 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,052 [1520] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 +01/30/13 11:46:01,054 [1520] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=138 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/30/13 11:46:01,060 [1520] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,138,) method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Entering getURLstring(Campaigns) method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,060 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,061 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,063 [1520] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/30/13 11:46:01,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,065 [1520] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/30/13 11:46:01,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,066 [1520] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/30/13 11:46:01,068 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,068 [1520] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/30/13 11:46:01,069 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,069 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,070 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/30/13 11:46:01,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:01,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,071 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:01,073 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:01,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,073 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:01,074 [1520] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:01,074 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,074 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,075 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,076 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/30/13 11:46:01,076 [1520] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/30/13 11:46:01,080 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Entering getTabid(Campaigns) method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,080 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:01,080 [1520] DEBUG index - Prepared sql query parameters : [6,26] +01/30/13 11:46:01,083 [1520] INFO index - getNextRow +01/30/13 11:46:01,084 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:01,084 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:01,084 [1520] DEBUG index - Exiting get_campaigns method ... +01/30/13 11:46:01,088 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:01,088 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:01,089 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:01,089 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:01,089 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:01,089 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:01,090 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:01,090 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:01,090 [1520] INFO index - current module is Accounts +01/30/13 11:46:01,127 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:01,127 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:01,127 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:01,127 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,128 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,128 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,128 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:01,136 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,136 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,136 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:01,136 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:01,137 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:01,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,138 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:01,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,138 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:01,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,139 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:01,139 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,139 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:01,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,140 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:01,140 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,140 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:01,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,141 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:01,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,141 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:01,141 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,142 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:01,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,142 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:01,142 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,143 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:01,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,143 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:01,143 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,144 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:01,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,144 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:01,144 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,144 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:01,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,145 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:01,145 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,145 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:01,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,146 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:01,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,146 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:01,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,147 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:01,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,147 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,148 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:01,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,149 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:01,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,149 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:01,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,150 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:01,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,150 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:01,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,151 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:01,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,151 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:01,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,152 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:01,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,152 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:01,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,153 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:01,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,153 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:01,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,154 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:01,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,154 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:01,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,155 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:01,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,155 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:01,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,156 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:01,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,156 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:01,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,157 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:01,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,157 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:01,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,157 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:01,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,158 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:01,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,158 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:01,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,159 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:01,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,159 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:01,166 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:01,167 [1520] DEBUG index - Prepared sql query parameters : [363,1,Accounts,AccountsAjax,138,2013-01-30 11:46:01] +01/30/13 11:46:01,171 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:01,171 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:01,171 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:01,172 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:01,173 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:01,174 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:01,175 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:01,175 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:01,177 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:01,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,178 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:01,178 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:01,178 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:01,178 [1520] DEBUG index - skipping headers +01/30/13 11:46:01,178 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:01,179 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,180 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:01,180 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:01,180 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,181 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,181 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,181 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:01,189 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,189 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,193 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:01,193 [1520] DEBUG index - Prepared sql query parameters : [92] +01/30/13 11:46:01,196 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:01,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,196 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,196 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,196 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,197 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:01,197 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:46:01,200 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:46:01,200 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:46:01,200 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,200 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,201 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,201 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:46:01,205 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,205 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,205 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:01,206 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:46:01,206 [1520] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/30/13 11:46:01,212 [1520] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/30/13 11:46:01,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,212 [1520] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/30/13 11:46:01,212 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,213 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:01,213 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:01,213 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,214 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:01,214 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/30/13 11:46:01,214 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,214 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:01,214 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:01,215 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:01,217 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138, ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:01,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,220 [1520] DEBUG index - Entering function initSortByField (ServiceContracts) +01/30/13 11:46:01,220 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,220 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,220 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:01,220 [1520] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:01,224 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:01,224 [1520] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/30/13 11:46:01,224 [1520] DEBUG index - in getColumnFields ServiceContracts +01/30/13 11:46:01,224 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,224 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,225 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,225 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:01,225 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,225 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,225 [1520] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/30/13 11:46:01,225 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,226 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:01,226 [1520] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/30/13 11:46:01,228 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:01,228 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 +01/30/13 11:46:01,231 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 138 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/30/13 11:46:01,235 [1520] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,138,) method ... +01/30/13 11:46:01,235 [1520] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/30/13 11:46:01,235 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:01,236 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,236 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,236 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,237 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,237 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,238 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:46:01,238 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,238 [1520] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/30/13 11:46:01,239 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,240 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/30/13 11:46:01,240 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,240 [1520] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/30/13 11:46:01,241 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,242 [1520] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/30/13 11:46:01,242 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,242 [1520] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/30/13 11:46:01,242 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,242 [1520] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/30/13 11:46:01,242 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,242 [1520] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/30/13 11:46:01,244 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,244 [1520] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/30/13 11:46:01,244 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:01,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,244 [1520] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/30/13 11:46:01,246 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:01,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,246 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:01,247 [1520] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:01,247 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,247 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,248 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,249 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:01,249 [1520] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/30/13 11:46:01,252 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:01,252 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:01,252 [1520] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/30/13 11:46:01,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,252 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,253 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:01,253 [1520] DEBUG index - Prepared sql query parameters : [6,37] +01/30/13 11:46:01,255 [1520] INFO index - getNextRow +01/30/13 11:46:01,256 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:01,256 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:01,258 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:01,259 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:01,259 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:01,259 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:01,259 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:01,260 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:01,260 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:01,260 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:01,260 [1520] INFO index - current module is Accounts +01/30/13 11:46:01,295 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:01,295 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:01,295 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:01,295 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,296 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,296 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,296 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:01,304 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,305 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,305 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:01,305 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:01,306 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:01,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,306 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:01,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,307 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:01,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,307 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:01,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,308 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:01,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,308 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:01,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,309 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:01,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,310 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:01,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,310 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:01,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,311 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:01,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,311 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:01,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,312 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:01,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,312 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:01,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,313 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:01,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,313 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:01,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,314 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:01,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,314 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:01,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,315 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:01,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,315 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:01,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,316 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:01,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,316 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:01,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,317 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:01,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,317 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:01,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,318 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:01,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,318 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:01,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,318 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:01,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,319 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:01,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,319 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:01,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,320 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:01,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,320 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:01,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,321 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:01,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,321 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:01,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,322 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:01,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,322 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:01,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,323 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:01,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,323 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:01,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,324 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:01,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,324 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:01,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,325 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:01,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,325 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:01,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,326 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:01,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,326 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:01,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,327 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:01,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,327 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:01,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,328 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:01,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,328 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:01,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,329 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:01,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,329 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:01,333 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:01,333 [1520] DEBUG index - Prepared sql query parameters : [364,1,Accounts,AccountsAjax,138,2013-01-30 11:46:01] +01/30/13 11:46:01,336 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:01,336 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:01,336 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:01,336 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:01,338 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:01,338 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:01,340 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:01,340 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:01,341 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:01,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,342 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:01,342 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:01,342 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:01,342 [1520] DEBUG index - skipping headers +01/30/13 11:46:01,343 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:01,343 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,344 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:01,345 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:01,345 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,345 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,345 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,345 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:01,352 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,352 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,352 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,356 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:01,356 [1520] DEBUG index - Prepared sql query parameters : [108] +01/30/13 11:46:01,358 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:01,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,358 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,358 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,358 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,358 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,359 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:01,359 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:46:01,363 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:46:01,363 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:46:01,363 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,363 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,364 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,364 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,364 [1520] DEBUG index - Prepared sql query parameters : [38] +01/30/13 11:46:01,370 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,370 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,370 [1520] DEBUG index - Entering isPermitted(Services,4,) method ... +01/30/13 11:46:01,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,371 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:01,371 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:01,371 [1520] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/30/13 11:46:01,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,372 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:01,372 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:01,372 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:01,374 [1520] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138), ,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,) method ... +01/30/13 11:46:01,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,377 [1520] DEBUG index - Entering function initSortByField (Services) +01/30/13 11:46:01,377 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,377 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:46:01,378 [1520] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/30/13 11:46:01,380 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:46:01,380 [1520] DEBUG index - Entering getColumnFields(Services) method ... +01/30/13 11:46:01,380 [1520] DEBUG index - in getColumnFields Services +01/30/13 11:46:01,380 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/30/13 11:46:01,381 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,382 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,382 [1520] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/30/13 11:46:01,382 [1520] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/30/13 11:46:01,383 [1520] DEBUG index - Exiting getTableNameForField method ... +01/30/13 11:46:01,384 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) +01/30/13 11:46:01,385 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 138 OR vtiger_crmentityrel.relcrmid = 138) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/30/13 11:46:01,402 [1520] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,138,) method ... +01/30/13 11:46:01,402 [1520] DEBUG index - Entering getURLstring(Services) method ... +01/30/13 11:46:01,402 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:46:01,402 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,403 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,403 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,404 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,405 [1520] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/30/13 11:46:01,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,405 [1520] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/30/13 11:46:01,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,407 [1520] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/30/13 11:46:01,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,408 [1520] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/30/13 11:46:01,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:01,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,410 [1520] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/30/13 11:46:01,411 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:01,412 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,412 [1520] DEBUG index - Exiting getListViewHeader method ... +01/30/13 11:46:01,413 [1520] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=138,,,) method ... +01/30/13 11:46:01,413 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,413 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,414 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,414 [1520] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/30/13 11:46:01,415 [1520] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/30/13 11:46:01,417 [1520] DEBUG index - Exiting getListViewEntries method ... +01/30/13 11:46:01,417 [1520] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/30/13 11:46:01,417 [1520] DEBUG index - Entering getTabid(Services) method ... +01/30/13 11:46:01,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,418 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,418 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,418 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/30/13 11:46:01,418 [1520] DEBUG index - Prepared sql query parameters : [6,38] +01/30/13 11:46:01,420 [1520] INFO index - getNextRow +01/30/13 11:46:01,420 [1520] DEBUG index - Exiting getTableHeaderNavigation method ... +01/30/13 11:46:01,421 [1520] DEBUG account_list - Exiting GetRelatedList method ... +01/30/13 11:46:01,424 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:01,425 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:01,425 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:01,425 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:01,425 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '138', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:01,426 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:46:01,426 [1520] DEBUG index - in AccountsAjax +01/30/13 11:46:01,426 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:46:01,426 [1520] INFO index - current module is Accounts +01/30/13 11:46:01,470 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:01,470 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:01,470 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:01,470 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,471 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,471 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,471 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:01,480 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:01,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,480 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,480 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:01,481 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:01,481 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:01,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,482 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:01,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,482 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:01,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,483 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:01,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,483 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:01,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,484 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:01,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,484 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:01,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,485 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:01,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,485 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:01,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,486 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:01,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,486 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:01,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,487 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:01,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,487 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:01,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,488 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:01,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,488 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:01,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,489 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:01,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,489 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:01,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,490 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:01,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,490 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:01,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,491 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:01,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,491 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:01,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,492 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:01,492 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,492 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:01,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,493 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:01,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,493 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:01,493 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,494 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:01,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,494 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:01,494 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,495 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:01,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,495 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:01,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,496 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:01,496 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,496 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:01,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,497 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:01,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,497 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:01,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,498 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:01,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,498 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:01,498 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,499 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:01,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,499 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:01,499 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,500 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:01,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,500 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:01,500 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,501 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:01,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,501 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:01,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,502 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:01,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,502 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:01,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,503 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:01,503 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,503 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:01,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,504 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:01,504 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,504 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:01,505 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,505 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:01,508 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:01,509 [1520] DEBUG index - Prepared sql query parameters : [365,1,Accounts,AccountsAjax,138,2013-01-30 11:46:01] +01/30/13 11:46:01,512 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:01,512 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:01,512 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:01,512 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:01,514 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:01,514 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:01,515 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:01,516 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:01,517 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:01,517 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:01,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:01,518 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:01,518 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:01,518 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:01,518 [1520] DEBUG index - skipping headers +01/30/13 11:46:01,518 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:01,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:01,520 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:01,520 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:01,521 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,521 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,521 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,521 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:01,529 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,529 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,529 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,533 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/30/13 11:46:01,533 [1520] DEBUG index - Prepared sql query parameters : [114] +01/30/13 11:46:01,535 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:01,535 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:01,535 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:01,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,535 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:01,535 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:01,536 [1520] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/30/13 11:46:01,536 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:46:01,539 [1520] DEBUG index - Entering getColumnFields(Assets) method ... +01/30/13 11:46:01,539 [1520] DEBUG index - in getColumnFields Assets +01/30/13 11:46:01,539 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:01,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,540 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:01,540 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,540 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:01,540 [1520] DEBUG index - Prepared sql query parameters : [41] +01/30/13 11:46:01,544 [1520] DEBUG index - Entering getTabid(Assets) method ... +01/30/13 11:46:01,544 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:01,544 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:01,544 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/30/13 11:46:01,545 [1520] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/30/13 11:46:02,457 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:02,579 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:02,579 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:02,579 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:02,580 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:02,580 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'potentialname', + 'id' => '141', + 'modname' => 'Potentials', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:46:02,580 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:46:02,580 [1520] DEBUG index - in TooltipAjax +01/30/13 11:46:02,580 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:46:02,580 [1520] INFO index - current module is Tooltip +01/30/13 11:46:02,613 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:02,613 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:02,613 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:02,613 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:02,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:02,614 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:02,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:02,614 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:02,614 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:02,624 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:02,624 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:02,624 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:02,624 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:02,624 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:02,625 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,625 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,626 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,626 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:02,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,627 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:02,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,627 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:02,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,628 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:02,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,628 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:02,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,629 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:02,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,629 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:02,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,630 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:02,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,630 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:02,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,631 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:02,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,631 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:02,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,632 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:02,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,632 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:02,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,632 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:02,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,633 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:02,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,633 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:02,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,634 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:02,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,634 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:02,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,635 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:02,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,635 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,636 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:02,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,637 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:02,637 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,637 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:02,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,638 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:02,638 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,638 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:02,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,639 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:02,639 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,639 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:02,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,640 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:02,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,640 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:02,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,641 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:02,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,641 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:02,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,642 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:02,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,642 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:02,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,643 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:02,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,643 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:02,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,643 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:02,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,644 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:02,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,644 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:02,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,645 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:02,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,645 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:02,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,646 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:02,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,646 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:02,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:02,647 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:02,651 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:02,651 [1520] DEBUG index - Prepared sql query parameters : [366,1,Tooltip,TooltipAjax,,2013-01-30 11:46:02] +01/30/13 11:46:02,654 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:02,654 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:02,654 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:02,654 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:02,656 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:02,656 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:02,658 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:02,658 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:02,660 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:02,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:46:02,660 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:46:02,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:02,661 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:02,661 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:02,661 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:02,661 [1520] DEBUG index - skipping headers +01/30/13 11:46:02,662 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:46:02,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:02,669 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:02,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:02,669 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:46:02,669 [1520] DEBUG index - Prepared sql query parameters : [2,potentialname] +01/30/13 11:46:02,671 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:46:02,672 [1520] DEBUG index - Prepared sql query parameters : [110] +01/30/13 11:46:11,872 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:11,996 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:11,997 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:11,997 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:11,997 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:11,997 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Potentials', + 'record' => '141', + 'parenttab' => 'Marketing', +) +01/30/13 11:46:11,998 [1520] INFO index - About to take action DetailView +01/30/13 11:46:11,998 [1520] DEBUG index - in DetailView +01/30/13 11:46:11,998 [1520] INFO index - current page is modules/Potentials/DetailView.php +01/30/13 11:46:11,998 [1520] INFO index - current module is Potentials +01/30/13 11:46:12,036 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:12,036 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:12,036 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:12,036 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:12,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,036 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:12,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,037 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:12,037 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:12,048 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:12,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,048 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,048 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:12,049 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:12,049 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:12,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,050 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:12,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,050 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:12,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,051 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:12,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,051 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:12,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,052 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:12,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,052 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:12,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,053 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:12,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,053 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:12,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,054 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:12,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,054 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:12,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,055 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:12,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,055 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:12,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,056 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:12,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,056 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:12,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,056 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:12,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,057 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:12,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,057 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:12,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,058 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:12,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,058 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:12,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,059 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:12,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,059 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,060 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:12,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,061 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:12,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,061 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:12,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,062 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:12,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,062 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:12,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,063 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:12,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,063 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:12,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,064 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:12,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,064 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:12,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,065 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:12,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,065 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:12,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,066 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:12,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,066 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:12,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,067 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:12,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,067 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:12,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,068 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:12,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,068 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:12,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,069 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:12,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,069 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:12,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,069 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:12,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,070 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:12,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,070 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:12,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,071 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:12,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,071 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:12,075 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:12,075 [1520] DEBUG index - Prepared sql query parameters : [367,1,Potentials,DetailView,141,2013-01-30 11:46:12] +01/30/13 11:46:12,091 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:12,091 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:12,091 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:12,091 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:12,093 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:12,093 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:12,095 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:12,095 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:12,097 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:12,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,097 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,098 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,098 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,098 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,098 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,098 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,098 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:12,098 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:12,104 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,104 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,104 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,104 [1520] DEBUG potential - About to call vtiger_tracker (user_id, module_name, item_id)(1, Potentials, ) +01/30/13 11:46:12,104 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:46:12,104 [1520] DEBUG index - Prepared sql query parameters : [1,141] +01/30/13 11:46:12,106 [1520] INFO index - in track view method Potentials +01/30/13 11:46:12,106 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,107 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:46:12,109 [1520] DEBUG index - Prepared sql query being executed : select potentialname as entityname from vtiger_potential where potentialid = ? +01/30/13 11:46:12,109 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,111 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:46:12,111 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:46:12,111 [1520] DEBUG index - Prepared sql query parameters : [1,Potentials,141,OSSEZ TEST] +01/30/13 11:46:12,114 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:46:12,115 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:46:12,116 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:46:12,116 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:46:12,116 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:46:12,121 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:46:12,121 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:46:12,121 [1520] DEBUG index - Prepared sql query parameters : [93] +01/30/13 11:46:12,124 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:12,124 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:12,124 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:12,124 [1520] DEBUG index - including headers +01/30/13 11:46:12,124 [1520] DEBUG index - Entering getParentTabFromModule(Potentials) method ... +01/30/13 11:46:12,125 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:12,128 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,128 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,130 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:46:12,130 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:46:12,130 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:12,132 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:46:12,132 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:46:12,133 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:46:12,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,133 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:46:12,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,134 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:46:12,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,134 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:46:12,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,135 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:46:12,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,135 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:46:12,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,135 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:46:12,136 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:46:12,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:12,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,143 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:46:12,143 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:12,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:12,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,144 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:46:12,144 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:46:12,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:12,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,145 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:46:12,145 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:12,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:12,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,147 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:46:12,147 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:12,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,148 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:12,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,148 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:46:12,148 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:46:12,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:12,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,149 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:46:12,150 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:12,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:12,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,151 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:46:12,151 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:12,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:46:12,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,152 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:46:12,152 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:46:12,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,152 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:12,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,153 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:46:12,153 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:12,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:12,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,154 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:46:12,154 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:12,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,155 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:46:12,155 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:12,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,155 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:12,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,156 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:46:12,156 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:46:12,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:12,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,157 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:46:12,157 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:12,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:12,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,158 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:46:12,158 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:46:12,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,159 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:12,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,159 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:46:12,159 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:46:12,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,160 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:12,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,160 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:46:12,160 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:46:12,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,161 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:12,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,162 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:12,162 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:12,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:12,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,163 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:46:12,163 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:12,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:12,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,164 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:46:12,164 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:46:12) method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:46:12) method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:12,165 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:12,166 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:12,167 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:46:12,167 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:46:12,167 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:46:12,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,172 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,172 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,172 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,181 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:46:12,185 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:46:12,185 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:46:12,186 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:12,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,188 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:12,188 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,188 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,189 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,190 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:46:12,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,192 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:46:12,192 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,192 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:46:12,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,192 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,193 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:46:12,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,194 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:12,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,194 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:46:12,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,195 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:46:12,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,195 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,196 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,197 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:46:12,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,198 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:46:12,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,198 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:46:12,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,199 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:12,199 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:46:12,199 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:12,202 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:46:12,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,203 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:46:12,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,203 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:46:12,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,204 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:46:12,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,205 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:46:12,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,205 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:12,205 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:46:12,207 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:46:12,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,208 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:46:12,208 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:46:12,211 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:46:12,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,217 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:12,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,218 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:46:12,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:12,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,218 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:46:12,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:12,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,218 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:46:12,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:12,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,219 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:12,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,219 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:12,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,219 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:12,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:12,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,220 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:12,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:46:12,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,220 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:46:12,220 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:12,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,221 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:46:12,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:46:12,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,221 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:46:12,223 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:46:12,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,224 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:46:12,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:46:12,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,224 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:46:12,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:46:12,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,225 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:46:12,225 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:46:12,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,226 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:46:12,226 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:46:12,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,227 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:46:12,227 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:12,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,227 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:46:12,227 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:46:12,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,227 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:46:12,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:46:12,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,228 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:46:12,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:46:12,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,229 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:46:12,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:12,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,229 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:46:12,229 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:12,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,229 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:46:12,230 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:12,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,230 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:46:12,230 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:12,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,230 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:46:12,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:12,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,230 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:46:12,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:46:12,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,231 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:46:12,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:12,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,231 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:12,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:12,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,232 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:46:12,232 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:46:12,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,232 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:46:12,232 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:12,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,233 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:46:12,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:12,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,233 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:46:12,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:46:12,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,234 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:46:12,234 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:46:12,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,235 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:46:12,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:46:12,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,235 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:12,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,236 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:46:12,236 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,141) method ... +01/30/13 11:46:12,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,262 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,262 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,262 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,263 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,263 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:46:12,263 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,265 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potential where potentialid=? +01/30/13 11:46:12,265 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,268 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_potentialscf where potentialid=? +01/30/13 11:46:12,268 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,270 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,271 [1520] INFO index - Potential detail view +01/30/13 11:46:12,271 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Potentials)... +01/30/13 11:46:12,271 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,272 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:46:12,272 [1520] DEBUG index - Entering updateInfo(141) method ... +01/30/13 11:46:12,272 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:46:12,272 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,274 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:46:12,274 [1520] INFO index - in getOwnerName 1 +01/30/13 11:46:12,274 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:46:12,274 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,274 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,276 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:46:12,276 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:12,278 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:56) method ... +01/30/13 11:46:12,278 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:12,278 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:46:12,279 [1520] DEBUG index - Entering getBlocks(Potentials,detail_view,,Array,) method ... +01/30/13 11:46:12,279 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,279 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,279 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:46:12,279 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:12,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,283 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:46:12,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,283 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:46:12,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,283 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:12,284 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:46:12,284 [1520] DEBUG index - Prepared sql query parameters : [2,1,2,3] +01/30/13 11:46:12,291 [1520] DEBUG index - Entering getDetailBlockInformation(Potentials,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +2,110,potentialname,vtiger_potential,1,2,potentialname,Potential Name,1,0,,100,1,1,1,V~M,0,1,BAS,1,,0 +2,111,potential_no,vtiger_potential,1,4,potential_no,Potential No,1,0,,100,2,1,1,V~O,3,,BAS,0,,0 +2,113,related_to,vtiger_potential,1,10,related_to,Related To,1,0,,100,3,1,1,V~M,0,2,BAS,1,,0 +2,112,amount,vtiger_potential,1,71,amount,Amount,1,2,,100,4,1,1,N~O,2,5,BAS,1,,0 +2,115,potentialtype,vtiger_potential,1,15,opportunity_type,Type,1,2,,100,6,1,1,V~O,1,,BAS,1,,0 +2,114,closingdate,vtiger_potential,1,23,closingdate,Expected Close Date,1,2,,100,7,1,1,D~M,2,3,BAS,1,,0 +2,117,leadsource,vtiger_potential,1,15,leadsource,Lead Source,1,2,,100,8,1,1,V~O,1,,BAS,1,,0 +2,116,nextstep,vtiger_potential,1,1,nextstep,Next Step,1,2,,100,9,1,1,V~O,1,,BAS,1,,0 +2,119,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,2,,100,10,1,1,V~M,0,6,BAS,1,,0 +2,118,sales_stage,vtiger_potential,1,15,sales_stage,Sales Stage,1,2,,100,11,1,1,V~M,2,4,BAS,1,,0 +2,121,campaignid,vtiger_potential,1,58,campaignid,Campaign Source,1,2,,100,12,1,1,N~O,1,,BAS,1,,0 +2,120,probability,vtiger_potential,1,9,probability,Probability,1,2,,100,13,1,1,N~O,1,,BAS,1,,0 +2,123,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,14,1,2,DT~O,3,,BAS,0,,0 +2,122,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,15,1,2,DT~O,3,,BAS,0,,0 +2,125,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,3,1,V~O,1,,BAS,1,,0 +,Array,2,Array) method ... +01/30/13 11:46:12,291 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,potentialname,Potential Name,Array,1,2) method ... +01/30/13 11:46:12,292 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,292 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,292 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:46:12,292 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,292 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,292 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,293 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,potential_no,Potential No,Array,1,2) method ... +01/30/13 11:46:12,293 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,293 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,293 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:46:12,293 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,293 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,293 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,294 [1520] DEBUG index - Entering getDetailViewOutputHtml(10,related_to,Related To,Array,1,2) method ... +01/30/13 11:46:12,294 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,295 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:46:12,295 [1520] DEBUG index - Entering getSalesEntityType(138) method ... +01/30/13 11:46:12,295 [1520] INFO index - in getSalesEntityType 138 +01/30/13 11:46:12,295 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:46:12,295 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:12,297 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:46:12,297 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:46:12,297 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,297 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:12,299 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:46:12,299 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:12,302 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,302 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,302 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,302 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,amount,Amount,Array,1,2) method ... +01/30/13 11:46:12,303 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,303 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:46:12,303 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:46:12,303 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:46:12,303 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:46:12,303 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:12,305 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Entering convertFromDollar(0.00,1.000) method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,306 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,opportunity_type,Type,Array,1,2) method ... +01/30/13 11:46:12,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,307 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:12,307 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:12,307 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:12,307 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:46:12,307 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:46:12,308 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:46:12,310 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:46:12,310 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:46:12,310 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:46:12,312 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:12,312 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:12,312 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,312 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:12,316 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 367 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #492 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #492 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:12,317 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,317 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,319 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,319 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:12,320 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,320 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:12,325 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,325 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:12,325 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,325 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:12,330 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,330 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:12,330 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:12,330 [1520] DEBUG index - Prepared sql query parameters : [opportunity_type] +01/30/13 11:46:12,332 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct opportunity_type FROM vtiger_opportunity_type inner join vtiger_role2picklist on vtiger_opportunity_type.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:12,332 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:12,341 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:46:12,341 [1520] DEBUG index - function getTranslatedString(Existing Business) - translated to (已有业务往来) +01/30/13 11:46:12,342 [1520] DEBUG index - function getTranslatedString(New Business) - translated to (新业务) +01/30/13 11:46:12,342 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,342 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,342 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,342 [1520] DEBUG index - Entering getDetailViewOutputHtml(23,closingdate,Expected Close Date,Array,1,2) method ... +01/30/13 11:46:12,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,343 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:46:12,343 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,343 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,343 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,344 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,leadsource,Lead Source,Array,1,2) method ... +01/30/13 11:46:12,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,345 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:46:12,345 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:12,345 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:12,345 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:12,345 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:12,345 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,345 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:12,349 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 367 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:12,350 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,351 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,353 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,353 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:12,353 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,353 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:12,357 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,357 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:12,357 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,357 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:12,361 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,361 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:12,361 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:12,361 [1520] DEBUG index - Prepared sql query parameters : [leadsource] +01/30/13 11:46:12,363 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:12,363 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:12,381 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/30/13 11:46:12,381 [1520] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/30/13 11:46:12,381 [1520] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/30/13 11:46:12,381 [1520] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/30/13 11:46:12,382 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其他) +01/30/13 11:46:12,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,383 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,383 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,383 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,nextstep,Next Step,Array,1,2) method ... +01/30/13 11:46:12,384 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,384 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,384 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:46:12,384 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,384 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,384 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,385 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,2) method ... +01/30/13 11:46:12,385 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:46:12,385 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:46:12,387 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:46:12,387 [1520] INFO index - in getOwnerName 5 +01/30/13 11:46:12,387 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:46:12,387 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,387 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,389 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:46:12,389 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:46:12,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,392 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:12,392 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,392 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,392 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:46:12,392 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:46:12,394 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:46:12,394 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:12,394 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:12,395 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:46:12,395 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:46:12,397 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,397 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,399 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,399 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,401 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:12,401 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:12,401 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:46:12,401 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:12,401 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:46:12,401 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:12,401 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:46:12,402 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:46:12,402 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:46:12,403 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:46:12,403 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:46:12,403 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:46:12,403 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:46:12,403 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:46:12,403 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:46:12,404 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,404 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,404 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,404 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,sales_stage,Sales Stage,Array,1,2) method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,405 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:46:12,405 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:46:12,405 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,405 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:46:12,409 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 367 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #526 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #526 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:46:12,410 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:12,410 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:12,412 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,412 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:46:12,412 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,412 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:46:12,415 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,415 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:46:12,415 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:46:12,415 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:46:12,419 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:46:12,419 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:46:12,419 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:46:12,419 [1520] DEBUG index - Prepared sql query parameters : [sales_stage] +01/30/13 11:46:12,421 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct sales_stage FROM vtiger_sales_stage inner join vtiger_role2picklist on vtiger_sales_stage.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:46:12,421 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:46:12,431 [1520] DEBUG index - function getTranslatedString(Prospecting) - translated to (初期沟通) +01/30/13 11:46:12,431 [1520] DEBUG index - function getTranslatedString(Qualification) - translated to (立项评估) +01/30/13 11:46:12,431 [1520] DEBUG index - function getTranslatedString(Needs Analysis) - translated to (需求分析) +01/30/13 11:46:12,431 [1520] DEBUG index - function getTranslatedString(Value Proposition) - translated to (方案制订) +01/30/13 11:46:12,431 [1520] DEBUG index - function getTranslatedString(Id. Decision Makers) - translated to (辨识决策者) +01/30/13 11:46:12,432 [1520] DEBUG index - function getTranslatedString(Perception Analysis) - translated to (感性分析) +01/30/13 11:46:12,432 [1520] DEBUG index - function getTranslatedString(Proposal/Price Quote) - translated to (投标/报价) +01/30/13 11:46:12,432 [1520] DEBUG index - function getTranslatedString(Negotiation/Review) - translated to (谈判/回顾) +01/30/13 11:46:12,432 [1520] DEBUG index - function getTranslatedString(Closed Won) - translated to (成功结案) +01/30/13 11:46:12,432 [1520] DEBUG index - function getTranslatedString(Closed Lost) - translated to (失败结案) +01/30/13 11:46:12,432 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,432 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,432 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,433 [1520] DEBUG index - Entering getDetailViewOutputHtml(58,campaignid,Campaign Source,Array,1,2) method ... +01/30/13 11:46:12,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,433 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:46:12,434 [1520] DEBUG index - Entering getCampaignName(0) method ... +01/30/13 11:46:12,434 [1520] INFO index - in getCampaignName 0 +01/30/13 11:46:12,434 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_campaign where campaignid=? +01/30/13 11:46:12,434 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:46:12,436 [1520] DEBUG index - Exiting getCampaignName method ... +01/30/13 11:46:12,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,437 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,437 [1520] DEBUG index - Entering getDetailViewOutputHtml(9,probability,Probability,Array,1,2) method ... +01/30/13 11:46:12,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,438 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:46:12,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,438 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,439 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,2) method ... +01/30/13 11:46:12,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,439 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:46:12,439 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:56) method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:56) method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,440 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,441 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,2) method ... +01/30/13 11:46:12,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,442 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:46:12,442 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:45:56) method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:45:56) method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,442 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,443 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,2) method ... +01/30/13 11:46:12,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,444 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:12,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,444 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:46:12,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,444 [1520] DEBUG index - function getTranslatedString(LBL_OPPORTUNITY_INFORMATION) - translated to (销售机会信息) +01/30/13 11:46:12,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,445 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:12,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,445 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/30/13 11:46:12,445 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:46:12,445 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:46:12,445 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:12,445 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:12,447 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,141) method ... +01/30/13 11:46:12,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,447 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,141) method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Entering isPermitted(Potentials,Delete,141) method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,448 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:12,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,449 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:46:12,449 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:12,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,451 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:46:12,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,452 [1520] DEBUG index - function getTranslatedString(Potential No) - translated to (销售机会编号) +01/30/13 11:46:12,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,452 [1520] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/30/13 11:46:12,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,452 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (相关客户或联系人) +01/30/13 11:46:12,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,453 [1520] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/30/13 11:46:12,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,453 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:46:12,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,453 [1520] DEBUG index - function getTranslatedString(Next Step) - translated to (下一步) +01/30/13 11:46:12,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,454 [1520] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/30/13 11:46:12,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,454 [1520] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/30/13 11:46:12,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,454 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:46:12,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,455 [1520] DEBUG index - function getTranslatedString(Probability) - translated to (可能性 (%)) +01/30/13 11:46:12,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,455 [1520] DEBUG index - function getTranslatedString(Campaign Source) - translated to (营销活动来源) +01/30/13 11:46:12,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,455 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:46:12,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,456 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:46:12,456 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:46:12,456 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:46:12,456 [1520] DEBUG index - Entering Button_Check(Potentials) method ... +01/30/13 11:46:12,456 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:12,456 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,457 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:46:12,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,457 [1520] DEBUG index - Entering isPermitted(Potentials,Import,) method ... +01/30/13 11:46:12,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,458 [1520] DEBUG index - Entering isPermitted(Potentials,Export,) method ... +01/30/13 11:46:12,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,458 [1520] DEBUG index - Entering isPermitted(Potentials,Merge,) method ... +01/30/13 11:46:12,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,458 [1520] DEBUG index - Entering isPermitted(Potentials,DuplicatesHandling,) method ... +01/30/13 11:46:12,459 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,459 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:12,459 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,460 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:46:12,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,460 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:46:12,460 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,141) method ... +01/30/13 11:46:12,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,461 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,461 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:46:12,461 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:46:12,464 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:46:12,464 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:12,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:46:12,465 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:46:12,465 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,465 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:46:12,465 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:46:12,476 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:46:12,476 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,476 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:12,476 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,476 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,476 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:12,477 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:46:12,477 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:46:12,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,477 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:46:12,477 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:46:12,477 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:46:12,141,1] +01/30/13 11:46:12,480 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,480 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:46:12,480 [1520] DEBUG index - Prepared sql query parameters : [2,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:46:12,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,488 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,489 [1520] DEBUG index - function getTranslatedString(Opportunity) - translated to (销售机会) +01/30/13 11:46:12,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,489 [1520] DEBUG index - function getTranslatedString(Opportunity) - translated to (销售机会) +01/30/13 11:46:12,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,489 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,490 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,490 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,490 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,491 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,491 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:46:12,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,492 [1520] DEBUG index - function getTranslatedString(Opportunity) - translated to (销售机会) +01/30/13 11:46:12,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,492 [1520] DEBUG index - function getTranslatedString(Opportunity) - translated to (销售机会) +01/30/13 11:46:12,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,492 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:46:12,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,493 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:46:12,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,493 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:46:12,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,493 [1520] DEBUG index - function getTranslatedString(Sales Stage History) - translated to (销售阶段历史) +01/30/13 11:46:12,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,494 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:46:12,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,494 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:46:12,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,494 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:46:12,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,494 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:46:12,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,495 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:46:12,539 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,539 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,539 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,539 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,539 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,539 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:46:12,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:12,542 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:12,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,542 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:12,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,542 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:46:12,543 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,543 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,543 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,543 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,543 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:46:12,543 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:46:12,549 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:46:12,549 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:46:12,549 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:46:12,549 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:12,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,550 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:12,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,550 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:12,550 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:46:12,558 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:12,558 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,558 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,558 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:46:12,559 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:46:12,559 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:46:12,559 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:12,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,559 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:12,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,559 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:12,559 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:46:12,570 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:12,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,570 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,570 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:12,570 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:12,570 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:12,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,571 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:12,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,571 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:12,571 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:12,580 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:12,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,580 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,580 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,580 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,580 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,581 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,581 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,581 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,581 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,581 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,583 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,583 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,583 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,583 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,583 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,587 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:46:12,587 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:46:12,587 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:46:12,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,587 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:12,588 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:46:12,588 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:12,588 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:46:12,588 [1520] DEBUG index - Prepared sql query parameters : [141] +01/30/13 11:46:12,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:12,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:12,616 [1520] DEBUG index - function getTranslatedString(Opportunity) - translated to (销售机会) +01/30/13 11:46:12,617 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:46:12,617 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:46:12,617 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:25,807 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:46:25,937 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:46:25,937 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:46:25,937 [1520] DEBUG index - ****Starting for new session +01/30/13 11:46:25,938 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:46:25,938 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'record' => '138', +) +01/30/13 11:46:25,938 [1520] INFO index - About to take action DetailView +01/30/13 11:46:25,938 [1520] DEBUG index - in DetailView +01/30/13 11:46:25,938 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:46:25,938 [1520] INFO index - current module is Accounts +01/30/13 11:46:25,977 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:46:25,977 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:46:25,977 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:46:25,977 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:25,977 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:25,977 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:25,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:25,978 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:25,978 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:46:25,988 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:46:25,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:25,989 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:25,989 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:46:25,989 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:46:25,990 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:46:25,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,990 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:46:25,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,991 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:46:25,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,991 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:46:25,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,992 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:46:25,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,992 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:46:25,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,993 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:46:25,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,993 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:46:25,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,994 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:46:25,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,994 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:46:25,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,994 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:46:25,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:46:25,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,995 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:46:25,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,996 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:46:25,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,996 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:46:25,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,997 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:46:25,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,997 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:46:25,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,998 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:46:25,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,998 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:46:25,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,999 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:46:25,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,999 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:46:25,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:25,1000 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:46:26,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,000 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,001 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:46:26,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,002 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:46:26,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,002 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:46:26,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,003 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:46:26,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,003 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:46:26,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,004 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:46:26,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,004 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:46:26,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,005 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:46:26,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,005 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:46:26,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,006 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:46:26,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,006 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:46:26,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,007 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:46:26,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,007 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:46:26,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,008 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:46:26,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,008 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:46:26,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,008 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:46:26,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,009 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:46:26,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,009 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:46:26,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,010 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:46:26,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,010 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:46:26,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,011 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:46:26,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,011 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:46:26,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:46:26,012 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:46:26,016 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:46:26,016 [1520] DEBUG index - Prepared sql query parameters : [368,1,Accounts,DetailView,138,2013-01-30 11:46:26] +01/30/13 11:46:26,019 [1520] DEBUG index - Current user is: admin +01/30/13 11:46:26,019 [1520] DEBUG index - Current theme is: softed +01/30/13 11:46:26,019 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:46:26,019 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:46:26,021 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:46:26,021 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:46:26,023 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:46:26,023 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:46:26,025 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:46:26,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,025 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:46:26,026 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:46:26,026 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,026 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,026 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,026 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:46:26,026 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:46:26,035 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:46:26,036 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:46:26,036 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:46:26,036 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:46:26,039 [1520] INFO index - in track view method Accounts +01/30/13 11:46:26,039 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,039 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:46:26,041 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:46:26,041 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:46:26,045 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:46:26,045 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:46:26,045 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:46:26,048 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:46:26,048 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:46:26,050 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:46:26,051 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:46:26,051 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:46:26,051 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:46:26,051 [1520] DEBUG index - including headers +01/30/13 11:46:26,051 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:46:26,052 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:26,055 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:46:26,055 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:46:26,057 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:46:26,057 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:46:26,057 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,059 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:46:26,059 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:46:26,060 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:46:26,061 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,061 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:46:26,061 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,061 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:46:26,061 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,062 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:46:26,062 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,062 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:46:26,062 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,062 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:46:26,063 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,063 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:46:26,063 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,063 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:46:26,064 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:46:26,064 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:46:26,064 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:46:26,064 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:46:26,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:46:26,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,074 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:46:26,074 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:26,074 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:46:26,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,075 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:46:26,075 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:46:26,076 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:46:26,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,077 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:46:26,077 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:46:26,077 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:46:26,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,078 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:46:26,078 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:46:26,079 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,079 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:46:26,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,079 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:46:26,079 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:46:26,080 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:46:26,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,081 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:46:26,081 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:26,081 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:46:26,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,082 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:46:26,082 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:46:26,082 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:46:26,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,083 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:46:26,083 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:46:26,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,083 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:46:26,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,084 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:46:26,084 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:46:26,084 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:46:26,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,085 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:46:26,085 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:26,086 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:46:26,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,086 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:46:26,087 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:46:26,087 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,087 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:46:26,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,088 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:46:26,088 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:46:26,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:46:26,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,089 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:46:26,089 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:46:26,089 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:46:26,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,090 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:46:26,090 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:46:26,090 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,090 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:46:26,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,091 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:46:26,091 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:46:26,091 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,092 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:46:26,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,092 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:46:26,092 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:46:26,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,093 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:46:26,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,094 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:46:26,094 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:46:26,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:46:26,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,095 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:46:26,095 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:46:26,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:46:26,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:46:26,096 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:46:26,096 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:46:26,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,096 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:46:26) method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:46:26) method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:46:26,097 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:46:26,098 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:46:26,098 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:46:26,098 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:46:26,098 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:46:26,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,102 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,102 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,104 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,105 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,107 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,108 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,111 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,112 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,112 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:46:26,115 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:46:26,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,116 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:46:26,116 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:46:26,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:46:26,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:46:26,118 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:46:26,118 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,118 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,119 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:46:26,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:46:26,120 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:46:26,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:46:26,120 [1520] DEBUG index - Entering getTabid(Potentials) method ... diff --git a/logs/vtigercrm.log.4 b/logs/vtigercrm.log.4 new file mode 100644 index 0000000..ba00b31 --- /dev/null +++ b/logs/vtigercrm.log.4 @@ -0,0 +1,37076 @@ +01/30/13 11:31:59,097 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,098 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,099 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,099 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,101 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,101 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,102 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:59,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,104 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:59,236 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:31:59,236 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:59,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:32:23,625 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:32:23,753 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:32:23,753 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:32:23,753 [1520] DEBUG index - ****Starting for new session +01/30/13 11:32:23,754 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:32:23,754 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '', +) +01/30/13 11:32:23,754 [1520] INFO index - About to take action Popup +01/30/13 11:32:23,754 [1520] DEBUG index - in Popup +01/30/13 11:32:23,754 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:32:23,754 [1520] INFO index - current module is Accounts +01/30/13 11:32:23,798 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:32:23,798 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:32:23,798 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:32:23,799 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:32:23,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,799 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:32:23,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,799 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:32:23,799 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:32:23,813 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:32:23,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,813 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:32:23,813 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:32:23,813 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:32:23,814 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:32:23,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,814 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:32:23,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,815 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:32:23,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,815 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:32:23,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,816 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:32:23,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,816 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:32:23,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,817 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:32:23,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,817 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:32:23,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,818 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:32:23,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,818 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:32:23,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,819 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:32:23,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,819 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:32:23,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,820 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:32:23,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,820 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:32:23,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,820 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:32:23,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,821 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:32:23,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,821 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:32:23,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,822 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:32:23,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,822 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:32:23,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,823 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:32:23,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,823 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:32:23,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,824 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:32:23,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,824 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,825 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:32:23,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,826 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:32:23,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,826 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:32:23,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,827 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:32:23,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,827 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:32:23,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,828 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:32:23,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,828 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:32:23,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,829 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:32:23,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,829 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:32:23,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,830 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:32:23,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,830 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:32:23,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,831 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:32:23,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,831 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:32:23,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,831 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:32:23,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,832 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:32:23,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,832 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:32:23,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,833 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:32:23,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,833 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:32:23,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,834 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:32:23,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,834 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:32:23,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,835 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:32:23,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,835 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:32:23,836 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:32:23,836 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:32:23,839 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:32:23,839 [1520] DEBUG index - Prepared sql query parameters : [292,1,Accounts,Popup,,2013-01-30 11:32:23] +01/30/13 11:32:23,842 [1520] DEBUG index - Current user is: admin +01/30/13 11:32:23,842 [1520] DEBUG index - Current theme is: softed +01/30/13 11:32:23,842 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:32:23,842 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:32:23,844 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:32:23,844 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:32:23,846 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:32:23,846 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:32:23,848 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:32:23,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:32:23,848 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:32:23,848 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:32:23,849 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:32:23,849 [1520] DEBUG index - skipping headers +01/30/13 11:32:23,849 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:32:23,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:32:23,855 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:32:23,855 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:32:23,855 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,858 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,858 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:32:23,858 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,858 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,858 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:32:23,859 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:32:23,867 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:32:23,868 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:32:23,868 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_account_address,,,,,) method ... +01/30/13 11:32:23,868 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:32:23,869 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:32:23,869 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,869 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,870 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:23,870 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:23,874 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,875 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:23,875 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,875 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,875 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:23,875 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,875 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:23,876 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:32:23,876 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:32:23,877 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,877 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,877 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,877 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,877 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:32:23,877 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:32:23,877 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:32:23,877 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:32:23,878 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:32:23,878 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:32:23,878 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:32:23,878 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:32:23,878 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:32:23,878 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:32:23,878 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:32:23,882 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:32:23,886 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:32:23,886 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,886 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,886 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:32:23,886 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:32:23,889 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:32:23,889 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=specific_account_address,ASC,) method ... +01/30/13 11:32:23,889 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,889 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:32:23,890 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,890 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:32:23,891 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,891 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:32:23,892 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:32:23,893 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,Array) method ... +01/30/13 11:32:23,893 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,893 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,893 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:32:23,893 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:32:23,897 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,2,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,897 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,897 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,897 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,898 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,898 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,898 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,898 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,898 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,899 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,899 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:23,899 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,899 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,899 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:23,899 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:23,899 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:32:23,901 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:23,901 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:32:23,904 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:23,904 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:32:23,906 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:23,906 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:32:23,907 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:23,907 [1520] DEBUG account_list - Prepared sql query parameters : [2] +01/30/13 11:32:23,909 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,909 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,911 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:23,911 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,911 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,912 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,913 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,914 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,915 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:23,916 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:32:23,917 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,918 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,919 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering popup_from_html(22153,1) method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering br2nl(22153) method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,920 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,921 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,922 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,922 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,922 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,922 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,2,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,923 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,923 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,923 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,924 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,925 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,2,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,925 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,925 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,925 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,926 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,926 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,926 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,926 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,926 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,927 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:23,927 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:23,927 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:23,927 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:23,927 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:23,929 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:23,929 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:23,932 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,933 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,4,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,933 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,933 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,934 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,934 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,934 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,934 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:23,935 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:23,935 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:23,936 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:32:23,937 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:23,937 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:32:23,940 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:23,940 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:32:23,945 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:23,945 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:32:23,947 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:23,947 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:32:23,948 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,948 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,950 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:23,950 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:23,950 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,951 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,952 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,953 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,954 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,955 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,956 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,957 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:32:23,958 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,959 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,960 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,961 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,961 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,4,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,961 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,962 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,962 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,962 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,962 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,963 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,963 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,963 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,963 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,963 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,4,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,964 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,964 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,964 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:23,965 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:23,965 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:23,965 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:23,966 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:23,967 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:23,968 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:23,969 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,970 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,6,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,970 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,970 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,971 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,971 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,971 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:23,972 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,972 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,973 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:23,973 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:23,973 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:32:23,976 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:23,976 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:32:23,979 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:23,979 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:32:23,980 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:23,981 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:32:23,982 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:23,982 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:32:23,984 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,984 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,986 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:23,986 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,986 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,987 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,988 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,989 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:23,990 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,991 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,992 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,993 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,994 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:32:23,995 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,996 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,997 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:23,997 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:23,997 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:23,997 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:23,997 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,998 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,6,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:23,998 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:23,998 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:23,998 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:23,999 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:23,1000 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,6,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,000 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,000 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,000 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,001 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,001 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,001 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,001 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,001 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,002 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,002 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,002 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,002 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,002 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,009 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,009 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,012 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,013 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,8,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,013 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,013 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,013 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,014 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,014 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,014 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,014 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,015 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,015 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,015 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:32:24,017 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,017 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:32:24,022 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,022 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:32:24,025 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,026 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:32:24,028 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,028 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:32:24,030 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,030 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,032 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,032 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:32:24,032 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,032 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,032 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,032 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,032 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,033 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,034 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,035 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,036 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,037 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,038 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,039 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,040 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,041 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,042 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,043 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,043 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,043 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,043 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,043 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,8,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,044 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,044 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,044 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,045 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,046 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,8,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,046 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,046 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,046 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,047 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,047 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,048 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,048 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,048 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,050 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,050 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,052 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,053 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,10,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,053 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,053 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,053 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,054 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,054 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,054 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,054 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,054 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,055 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,055 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,055 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,055 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,055 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,055 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,055 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:32:24,057 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,057 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:32:24,060 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,060 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:32:24,061 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,062 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:32:24,064 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,064 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:32:24,066 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,066 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,067 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,067 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:32:24,067 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,067 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,067 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,067 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,068 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,069 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,070 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,071 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,072 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,073 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,074 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,075 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,076 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,077 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,078 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,079 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,10,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,079 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,079 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,079 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,080 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,081 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,10,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,081 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,081 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,081 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,082 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,083 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,083 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,083 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,083 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,085 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,085 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,087 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,088 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,12,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,088 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,088 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,088 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,089 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,089 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,089 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,089 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,089 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,090 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,090 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,090 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,090 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,090 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,090 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,090 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:32:24,092 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,092 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:32:24,095 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,095 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:32:24,096 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,096 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:32:24,098 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,098 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:32:24,099 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,099 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,101 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,101 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:32:24,101 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,101 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,101 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,101 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,101 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,102 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,103 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,104 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,105 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,106 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,107 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,108 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,109 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,110 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,111 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,112 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,112 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,112 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,112 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,12,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,113 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,113 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,113 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,113 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,114 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,12,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,115 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,115 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,115 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,116 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,116 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,116 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,116 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,119 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,119 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,121 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,121 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,14,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,121 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,121 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,121 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,122 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,122 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,122 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,122 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,123 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,123 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,123 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:32:24,130 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,130 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:32:24,133 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,134 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:32:24,135 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,136 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:32:24,137 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,137 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:32:24,140 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,140 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,142 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,142 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:32:24,142 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,142 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,142 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,142 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,143 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,144 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,145 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,146 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,147 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,148 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,149 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,150 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:32:24,151 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,152 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,153 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,14,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,154 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,154 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,154 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,154 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,155 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,14,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,156 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,156 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,156 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,157 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,157 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,157 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,158 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,159 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,159 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,161 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,162 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,16,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,162 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,162 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,162 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,163 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,163 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,164 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,164 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,164 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,164 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:32:24,166 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,166 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:32:24,170 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,170 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:32:24,172 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,172 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:32:24,174 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,174 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:32:24,176 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,176 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,177 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,177 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,178 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,179 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,180 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,181 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,182 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,183 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,184 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,185 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,186 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,187 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,188 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,189 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,16,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,189 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,189 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,189 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,190 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,191 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,16,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,191 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,191 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,191 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,192 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,192 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,192 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,192 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,192 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,193 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,193 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,193 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,193 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,193 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,195 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,195 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,197 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,197 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,18,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,198 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,198 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,198 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,199 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,199 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,200 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,200 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,200 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,200 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:32:24,202 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,202 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:32:24,205 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,205 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:32:24,206 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,207 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:32:24,208 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,208 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:32:24,209 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,209 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,211 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,211 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:32:24,211 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,211 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,211 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,211 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,211 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,212 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,213 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,214 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,215 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,216 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:32:24,217 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,218 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,219 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,220 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,221 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,18,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,222 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,223 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,223 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,223 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,223 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,18,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,224 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,225 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,225 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,225 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,225 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,226 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,226 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,226 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,226 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,226 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,226 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,230 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,230 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,232 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,232 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,20,9,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,233 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,233 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,233 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:32:24,234 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:32:24,234 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,235 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,235 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:32:24,235 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:32:24,235 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:32:24,237 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:32:24,237 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:32:24,240 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:32:24,240 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:32:24,250 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:32:24,250 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:32:24,252 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:32:24,252 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:32:24,253 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,253 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,255 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:32:24,255 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:32:24,255 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,255 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:32:24,255 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,255 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,256 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,257 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,258 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:32:24,259 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:32:24,260 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:32:24,261 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,262 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,263 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,264 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:32:24,265 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,20,9,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,266 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,267 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,267 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,267 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,267 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,267 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,20,9,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,268 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,269 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:32:24,269 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:32:24,269 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:32:24,269 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:32:24,270 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:32:24,270 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:32:24,270 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:32:24,270 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:32:24,270 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:32:24,270 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:32:24,272 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:32:24,272 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:32:24,274 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:32:24,274 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:32:24,274 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:32:24,274 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:32:24,274 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:32:24,275 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:33:04,145 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:33:04,283 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:33:04,283 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:33:04,283 [1520] DEBUG index - ****Starting for new session +01/30/13 11:33:04,284 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:33:04,284 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:33:04,284 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:33:04,284 [1520] DEBUG index - in CalendarAjax +01/30/13 11:33:04,284 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:33:04,284 [1520] INFO index - current module is Calendar +01/30/13 11:33:04,329 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:33:04,330 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:33:04,330 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:33:04,330 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:04,330 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:04,330 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:04,331 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:04,331 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:33:04,331 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:33:04,345 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:04,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:04,345 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:33:04,345 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:33:04,346 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:33:04,346 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:33:04,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,347 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:33:04,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,347 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:33:04,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,348 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:33:04,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,348 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:33:04,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,349 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:33:04,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,349 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:33:04,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,350 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:33:04,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,350 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:33:04,350 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,351 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:33:04,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,351 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:33:04,351 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,351 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:33:04,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,352 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:33:04,352 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,353 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:33:04,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,353 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:33:04,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,354 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:33:04,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,354 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:33:04,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,355 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:33:04,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,355 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:33:04,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,356 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:33:04,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,356 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:33:04,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,357 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:33:04,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,357 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,358 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:33:04,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,359 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:33:04,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,359 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:33:04,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,360 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:33:04,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,360 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:33:04,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,361 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:33:04,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,361 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:33:04,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,362 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:33:04,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,362 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:33:04,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,363 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:33:04,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,363 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:33:04,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,364 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:33:04,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,364 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:33:04,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,364 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:33:04,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,365 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:33:04,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,365 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:33:04,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,366 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:33:04,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,366 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:33:04,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,367 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:33:04,367 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,367 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:33:04,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,368 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:33:04,368 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,368 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:33:04,369 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:04,369 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:33:04,369 [1520] DEBUG index - Current user is: admin +01/30/13 11:33:04,369 [1520] DEBUG index - Current theme is: softed +01/30/13 11:33:04,369 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:33:04,369 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:33:04,371 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:33:04,371 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:33:04,373 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:33:04,373 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:33:04,375 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:33:04,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:33:04,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:33:04,376 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:33:04,376 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:33:04,376 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:33:04,376 [1520] DEBUG index - skipping headers +01/30/13 11:33:04,377 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:33:04,377 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:33:04,382 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:33:04,382 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:33:04,382 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:33:04,383 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:33:04,388 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:34')) +01/30/13 11:33:04,390 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:33:44,502 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:33:44,637 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:33:44,638 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:33:44,638 [1520] DEBUG index - ****Starting for new session +01/30/13 11:33:44,638 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:33:44,638 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:33:44,639 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:33:44,639 [1520] DEBUG index - in CalendarAjax +01/30/13 11:33:44,639 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:33:44,639 [1520] INFO index - current module is Calendar +01/30/13 11:33:44,684 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:33:44,684 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:33:44,684 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:33:44,684 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:44,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:44,685 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:44,685 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:44,685 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:33:44,685 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:33:44,693 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:33:44,693 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:33:44,693 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:33:44,693 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:33:44,694 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:33:44,694 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:33:44,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,695 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:33:44,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,695 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:33:44,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,696 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:33:44,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,696 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:33:44,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,697 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:33:44,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,697 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:33:44,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,698 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:33:44,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,698 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:33:44,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,699 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:33:44,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,699 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:33:44,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,699 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:33:44,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,700 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:33:44,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,700 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:33:44,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,701 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:33:44,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,701 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:33:44,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,702 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:33:44,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,702 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:33:44,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,703 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:33:44,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,703 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:33:44,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,704 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:33:44,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,704 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,705 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:33:44,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,706 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:33:44,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,706 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:33:44,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,707 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:33:44,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,707 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:33:44,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,708 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:33:44,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,708 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:33:44,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,709 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:33:44,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,709 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:33:44,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,710 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:33:44,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,710 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:33:44,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,711 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:33:44,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,711 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:33:44,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,712 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:33:44,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,712 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:33:44,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,712 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:33:44,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,713 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:33:44,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,713 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:33:44,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,714 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:33:44,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,714 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:33:44,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,715 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:33:44,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,715 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:33:44,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,716 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:33:44,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:33:44,716 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:33:44,717 [1520] DEBUG index - Current user is: admin +01/30/13 11:33:44,717 [1520] DEBUG index - Current theme is: softed +01/30/13 11:33:44,717 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:33:44,717 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:33:44,718 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:33:44,719 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:33:44,720 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:33:44,720 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:33:44,722 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:33:44,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:33:44,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:33:44,723 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:33:44,723 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:33:44,723 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:33:44,723 [1520] DEBUG index - skipping headers +01/30/13 11:33:44,724 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:33:44,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:33:44,729 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:33:44,730 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:33:44,730 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:33:44,730 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:33:44,734 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:34')) +01/30/13 11:33:44,737 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:34:24,845 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:24,973 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:24,973 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:24,973 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:24,973 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:24,974 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:34:24,974 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:34:24,974 [1520] DEBUG index - in CalendarAjax +01/30/13 11:34:24,974 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:34:24,974 [1520] INFO index - current module is Calendar +01/30/13 11:34:25,011 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:25,012 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:25,012 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:25,012 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:25,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:25,012 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:25,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:25,012 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:25,013 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:25,020 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:25,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:25,020 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:25,020 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:25,021 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:25,021 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:25,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,022 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:25,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,022 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:25,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,023 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:25,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,023 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:25,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,024 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:25,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,024 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:25,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,025 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:25,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,025 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:25,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,026 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:25,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,026 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:25,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,027 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:25,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,027 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:25,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,028 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:25,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,028 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:25,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,029 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:25,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,029 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:25,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,030 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:25,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,030 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:25,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,031 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:25,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,031 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:25,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,032 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:25,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,032 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,033 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:25,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,034 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:25,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,034 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:25,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,035 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:25,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,035 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:25,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,036 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:25,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,036 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:25,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,037 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:25,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,037 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:25,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,038 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:25,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,038 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:25,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,039 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:25,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,039 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:25,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,040 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:25,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,040 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:25,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,041 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:25,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,041 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:25,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,042 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:25,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,042 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:25,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,043 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:25,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,043 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:25,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,044 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:25,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:25,044 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:25,044 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:25,044 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:25,045 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:25,045 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:25,046 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:25,046 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:25,048 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:25,048 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:25,050 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:25,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:25,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:25,051 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:25,051 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:25,051 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:25,051 [1520] DEBUG index - skipping headers +01/30/13 11:34:25,052 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:34:25,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:25,057 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:25,058 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:34:25,058 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:34:25,058 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:34:25,067 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:35')) +01/30/13 11:34:25,073 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:34:33,236 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:33,368 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:33,368 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:33,368 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:33,369 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:33,369 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'Save', + 'accountname' => 'OSSEZ', + 'dup_check' => 'true', + 'record' => '', +) +01/30/13 11:34:33,369 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:34:33,369 [1520] DEBUG index - in AccountsAjax +01/30/13 11:34:33,369 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:34:33,370 [1520] INFO index - current module is Accounts +01/30/13 11:34:33,403 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:33,403 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:33,403 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:33,403 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,404 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,404 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:33,404 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:33,412 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,412 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:33,412 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:33,413 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:33,413 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:33,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,414 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:33,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,414 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:33,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,415 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:33,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,415 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:33,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,416 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:33,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,416 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:33,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,417 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:33,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,417 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:33,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,418 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:33,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,418 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:33,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,419 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:33,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,419 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:33,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,420 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:33,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,420 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:33,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,421 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:33,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,421 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:33,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,422 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:33,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,422 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:33,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,423 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:33,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,423 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:33,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,424 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:33,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,424 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,425 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:33,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,426 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:33,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,426 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:33,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,427 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:33,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,427 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:33,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,428 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:33,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,428 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:33,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,429 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:33,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,429 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:33,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,430 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:33,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,430 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:33,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,431 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:33,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,431 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:33,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,432 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:33,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,432 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:33,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,433 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:33,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,433 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:33,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,434 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:33,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,434 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:33,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,435 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:33,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,435 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:33,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,436 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:33,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,436 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:33,439 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:34:33,439 [1520] DEBUG index - Prepared sql query parameters : [293,1,Accounts,AccountsAjax,,2013-01-30 11:34:33] +01/30/13 11:34:33,441 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:33,442 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:33,442 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:33,442 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:33,443 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:33,444 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:33,445 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:33,445 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:33,447 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:33,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:33,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:33,448 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:33,448 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:33,448 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:33,448 [1520] DEBUG index - skipping headers +01/30/13 11:34:33,449 [1520] DEBUG index - Entering isPermitted(Accounts,Save,) method ... +01/30/13 11:34:33,449 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:33,460 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname FROM vtiger_account,vtiger_crmentity WHERE accountname =? and vtiger_account.accountid = vtiger_crmentity.crmid and vtiger_crmentity.deleted != 1 +01/30/13 11:34:33,461 [1520] DEBUG index - Prepared sql query parameters : [OSSEZ] +01/30/13 11:34:33,544 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:33,673 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:33,673 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:33,673 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:33,674 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:33,674 [1520] DEBUG index - array ( + 'pagenumber' => '', + 'module' => 'Accounts', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => '', + 'return_id' => '', + 'return_action' => 'DetailView', + 'return_viewname' => '', + 'createmode' => '', + 'accountname' => 'OSSEZ', + 'account_no' => '自动生成编号', + 'website' => '', + 'phone' => '', + 'tickersymbol' => '', + 'fax' => '', + 'account_name' => 'vtigerCRM Inc', + 'account_id' => '8', + 'otherphone' => '', + 'employees' => '', + 'email1' => '', + 'email2' => '', + 'ownership' => '', + 'industry' => '--None--', + 'rating' => '--None--', + 'accounttype' => '--None--', + 'siccode' => '', + 'annual_revenue' => '0', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'cpy' => 'on', + 'bill_street' => '123 Anywhere Street', + 'ship_street' => '123 Anywhere Street', + 'bill_pobox' => '', + 'ship_pobox' => '', + 'bill_city' => 'San Mateo', + 'ship_city' => 'San Mateo', + 'bill_state' => 'CA', + 'ship_state' => 'CA', + 'bill_code' => '82589', + 'ship_code' => '82589', + 'bill_country' => 'USA', + 'ship_country' => 'USA', + 'description' => 'd', + 'search_url' => '', +) +01/30/13 11:34:33,674 [1520] INFO index - About to take action Save +01/30/13 11:34:33,674 [1520] DEBUG index - in Save +01/30/13 11:34:33,674 [1520] INFO index - current page is modules/Accounts/Save.php +01/30/13 11:34:33,674 [1520] INFO index - current module is Accounts +01/30/13 11:34:33,712 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:33,712 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:33,712 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:33,712 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,713 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,713 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,713 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,713 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:33,713 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:33,724 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:33,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,724 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:33,724 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:33,725 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:33,725 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:33,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,726 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:33,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,726 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:33,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,727 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:33,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,727 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:33,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,728 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:33,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,728 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:33,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,729 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:33,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,729 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:33,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,730 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:33,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,730 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:33,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,731 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:33,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,731 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:33,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,732 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:33,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,732 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:33,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,733 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:33,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,734 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:33,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,734 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:33,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,735 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:33,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,735 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:33,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,736 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:33,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,736 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:33,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,737 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:33,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,737 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:33,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,737 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:33,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,738 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:33,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,738 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:33,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,739 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:33,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,739 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:33,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,740 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:33,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,740 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:33,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,741 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:33,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,741 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:33,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,742 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:33,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,742 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:33,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,743 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:33,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,743 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:33,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,744 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:33,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,744 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:33,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,745 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:33,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,745 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:33,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,746 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:33,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,746 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:33,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,747 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:33,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,747 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:33,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,748 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:33,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,748 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:33,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:33,749 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:33,752 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:34:33,752 [1520] DEBUG index - Prepared sql query parameters : [294,1,Accounts,Save,,2013-01-30 11:34:33] +01/30/13 11:34:33,755 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:33,756 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:33,756 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:33,756 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:33,757 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:33,758 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:33,759 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:33,760 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:33,761 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:33,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:33,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:33,762 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:33,762 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:33,762 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:33,762 [1520] DEBUG index - skipping headers +01/30/13 11:34:33,762 [1520] DEBUG index - Entering isPermitted(Accounts,Save,) method ... +01/30/13 11:34:33,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:33,765 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:33,765 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:33,765 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:33,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,765 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:33,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,765 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:33,765 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:33,775 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:33,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:34:33,776 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:34:33,776 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:34:33,779 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:34:33,779 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:34:33,779 [1520] INFO index - id is +01/30/13 11:34:33,779 [1520] DEBUG index - accountname=Field Name &first& Value =OSSEZ +01/30/13 11:34:33,779 [1520] DEBUG index - account_no=Field Name &first& Value =自动生成编号 +01/30/13 11:34:33,779 [1520] DEBUG index - phone=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - website=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - fax=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - tickersymbol=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - otherphone=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - account_id=Field Name &first& Value =8 +01/30/13 11:34:33,780 [1520] DEBUG index - email1=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - employees=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - email2=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - ownership=Field Name &first& Value = +01/30/13 11:34:33,780 [1520] DEBUG index - rating=Field Name &first& Value =--None-- +01/30/13 11:34:33,780 [1520] DEBUG index - industry=Field Name &first& Value =--None-- +01/30/13 11:34:33,781 [1520] DEBUG index - siccode=Field Name &first& Value = +01/30/13 11:34:33,781 [1520] DEBUG index - accounttype=Field Name &first& Value =--None-- +01/30/13 11:34:33,781 [1520] DEBUG index - annual_revenue=Field Name &first& Value =0 +01/30/13 11:34:33,781 [1520] DEBUG index - assigned_user_id=Field Name &first& Value =5 +01/30/13 11:34:33,781 [1520] DEBUG index - bill_street=Field Name &first& Value =123 Anywhere Street +01/30/13 11:34:33,781 [1520] DEBUG index - ship_street=Field Name &first& Value =123 Anywhere Street +01/30/13 11:34:33,781 [1520] DEBUG index - bill_city=Field Name &first& Value =San Mateo +01/30/13 11:34:33,781 [1520] DEBUG index - ship_city=Field Name &first& Value =San Mateo +01/30/13 11:34:33,781 [1520] DEBUG index - bill_state=Field Name &first& Value =CA +01/30/13 11:34:33,781 [1520] DEBUG index - ship_state=Field Name &first& Value =CA +01/30/13 11:34:33,781 [1520] DEBUG index - bill_code=Field Name &first& Value =82589 +01/30/13 11:34:33,781 [1520] DEBUG index - ship_code=Field Name &first& Value =82589 +01/30/13 11:34:33,782 [1520] DEBUG index - bill_country=Field Name &first& Value =USA +01/30/13 11:34:33,782 [1520] DEBUG index - ship_country=Field Name &first& Value =USA +01/30/13 11:34:33,782 [1520] DEBUG index - bill_pobox=Field Name &first& Value = +01/30/13 11:34:33,782 [1520] DEBUG index - ship_pobox=Field Name &first& Value = +01/30/13 11:34:33,782 [1520] DEBUG index - description=Field Name &first& Value =d +01/30/13 11:34:33,782 [1520] DEBUG index - module name is Accounts +01/30/13 11:34:33,782 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:34:33,901 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:34:33,902 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:33,983 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Accounts +01/30/13 11:34:33,983 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:34:33,984 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:34:33,984 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:34,023 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:34:34,023 [1520] DEBUG index - Prepared sql query parameters : [138,1,5,Accounts,d,1,2013-01-30 11:34:33,2013-01-30 11:34:33] +01/30/13 11:34:34,026 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_account +01/30/13 11:34:34,027 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,027 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:34:34,027 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_account] +01/30/13 11:34:34,032 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:34:34,033 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:34,038 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:34:34,038 [1520] DEBUG index - Prepared sql query parameters : [12,11,Accounts] +01/30/13 11:34:34,042 [1520] DEBUG index - Entering function get_column_value (phone, , phone, 11, V='') +01/30/13 11:34:34,042 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,043 [1520] DEBUG index - Entering function get_column_value (website, , website, 17, V='') +01/30/13 11:34:34,043 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,044 [1520] DEBUG index - Entering function get_column_value (fax, , fax, 11, V='') +01/30/13 11:34:34,044 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,044 [1520] DEBUG index - Entering function get_column_value (tickersymbol, , tickersymbol, 1, V='') +01/30/13 11:34:34,045 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,045 [1520] DEBUG index - Entering function get_column_value (otherphone, , otherphone, 11, V='') +01/30/13 11:34:34,045 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,046 [1520] DEBUG index - Entering function get_column_value (email1, , email1, 13, E='') +01/30/13 11:34:34,047 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,047 [1520] DEBUG index - Entering function get_column_value (employees, , employees, 7, I='') +01/30/13 11:34:34,048 [1520] DEBUG index - Entering function get_column_value (email2, , email2, 13, E='') +01/30/13 11:34:34,048 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,049 [1520] DEBUG index - Entering function get_column_value (ownership, , ownership, 1, V='') +01/30/13 11:34:34,049 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,050 [1520] DEBUG index - Entering function get_column_value (siccode, , siccode, 1, V='') +01/30/13 11:34:34,050 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,051 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:34:34,051 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:34:34,052 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:34:34,052 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:34:34,052 [1520] DEBUG index - Entering convertToDollar(0,1.000) method ... +01/30/13 11:34:34,052 [1520] DEBUG index - Exiting convertToDollar method ... +01/30/13 11:34:34,052 [1520] DEBUG index - Entering function get_column_value (annualrevenue, 0, annual_revenue, 71, I='') +01/30/13 11:34:34,053 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_account(accountid,accountname,account_no,phone,website,fax,tickersymbol,otherphone,parentid,email1,employees,email2,ownership,rating,industry,siccode,account_type,annualrevenue,emailoptout,notify_owner) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:34:34,054 [1520] DEBUG index - Prepared sql query parameters : [138,OSSEZ,ACC11,,,,,,8,,0,,,--None--,--None--,,--None--,0,0,0] +01/30/13 11:34:34,057 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountbillads +01/30/13 11:34:34,057 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,058 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:34:34,058 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountbillads] +01/30/13 11:34:34,064 [1520] DEBUG index - Entering function get_column_value (bill_pobox, , bill_pobox, 1, V='') +01/30/13 11:34:34,064 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,064 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountbillads(accountaddressid,bill_street,bill_city,bill_state,bill_code,bill_country,bill_pobox) values(?,?,?,?,?,?,?) +01/30/13 11:34:34,064 [1520] DEBUG index - Prepared sql query parameters : [138,123 Anywhere Street,San Mateo,CA,82589,USA,] +01/30/13 11:34:34,086 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountshipads +01/30/13 11:34:34,086 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,086 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,086 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:34:34,087 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountshipads] +01/30/13 11:34:34,092 [1520] DEBUG index - Entering function get_column_value (ship_pobox, , ship_pobox, 1, V='') +01/30/13 11:34:34,092 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:34:34,092 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountshipads(accountaddressid,ship_street,ship_city,ship_state,ship_code,ship_country,ship_pobox) values(?,?,?,?,?,?,?) +01/30/13 11:34:34,092 [1520] DEBUG index - Prepared sql query parameters : [138,123 Anywhere Street,San Mateo,CA,82589,USA,] +01/30/13 11:34:34,098 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountscf +01/30/13 11:34:34,098 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,098 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,098 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:34:34,098 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountscf] +01/30/13 11:34:34,103 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountscf(accountid) values(?) +01/30/13 11:34:34,103 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,110 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:34:34,111 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:34:34,111 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:34:34,140 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:34:34,140 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,143 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:34,143 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:34,143 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,143 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:34,144 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:34:34,144 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,146 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:34:34,146 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,153 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:34:34,154 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,157 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:34:34,157 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,159 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:34:34,160 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,162 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,165 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:34:34,245 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:34:34,249 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:34,249 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:34,249 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:34,250 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:34,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,250 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:34,250 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:34,251 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,251 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:34,257 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:34:34,257 [1520] DEBUG index - Prepared sql query parameters : [11x138] +01/30/13 11:34:34,273 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:34,273 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:34,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,274 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:34,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,275 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:34:34,275 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,278 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:34,279 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:34,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,279 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:34,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:34,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:34,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:34,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:34,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:34,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,285 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,286 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,287 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,288 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,289 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,290 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,291 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,292 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,293 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,294 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:34,295 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:34:34,300 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:34,300 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,300 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:34:34,305 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:34:34,306 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:34:34,393 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,393 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:34:34,395 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,395 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:34:34,397 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,398 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:34:34,402 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,402 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:34:34,405 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:34:34,405 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:34:34,506 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,506 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:34:34,508 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,508 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:34:34,510 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,510 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:34:34,512 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,512 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:34:34,514 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,514 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:34:34,516 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,517 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:34:34,518 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,519 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:34:34,520 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,521 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:34:34,525 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,525 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:34:34,527 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:34:34,528 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:34:34,604 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,604 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:34:34,607 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,607 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:34:34,609 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,610 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:34:34,612 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,612 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:34:34,614 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:34:34,615 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:34,617 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,617 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:34:34,619 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,619 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:34:34,622 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:34:34,622 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:34:34,681 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,681 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:34:34,684 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,685 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:34:34,689 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,689 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:34:34,691 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,691 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:34:34,697 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,697 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:34:34,702 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,702 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:34:34,705 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,705 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:34:34,707 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,707 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:34:34,710 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,710 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:34:34,719 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,720 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:34:34,722 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,722 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:34:34,725 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:34:34,725 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:34:34,728 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:34,733 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:34,733 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:34,736 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:34,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:34,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,739 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:34:34,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:34,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,740 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:34:34,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:34,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,741 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:34:34,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:34,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,742 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:34:34,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:34:34,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,743 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:34:34,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:34:34,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,744 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:34:34,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:34:34,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,745 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:34:34,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:34:34,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,745 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:34:34,746 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:34:34,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,746 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:34:34,746 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:34:34,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,747 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:34:34,747 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:34:34,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,747 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:34:34,747 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:34:34,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,748 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:34:34,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:34:34,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,748 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:34:34,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:34:34,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,749 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:34:34,749 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:34,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,749 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:34:34,749 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:34,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,749 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:34:34,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:34,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,750 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:34:34,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:34,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,751 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:34:34,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:34,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,751 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:34:34,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:34,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,752 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:34:34,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:34,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,752 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:34,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:34,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,752 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:34:34,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:34,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,753 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:34:34,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:34,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,753 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:34:34,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:34,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,754 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:34:34,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:34,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,754 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:34:34,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:34,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,755 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:34:34,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:34,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,755 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:34:34,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:34,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,756 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:34:34,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:34,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,756 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:34:34,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:34:34,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,757 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:34:34,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:34:34,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,757 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:34:34,757 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:34,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,758 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:34:34,758 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:34,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,758 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:34:34,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:34,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,758 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:34:34,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:34,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,759 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:34:34,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:34:34,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,760 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:34:34,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:34:34,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,760 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:34:34,760 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:34:34,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,761 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:34:34,761 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:34:34,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,761 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:34:34,761 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:34,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,762 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:34:34,763 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:34,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,763 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:34:34,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:34,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,763 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:34:34,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:34,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,764 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:34:34,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:34,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,764 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:34:34,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:34,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,764 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:34:34,765 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:34,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,765 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:34:34,765 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:34,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,765 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:34:34,765 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:34,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,766 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:34:34,766 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:34,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,766 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:34:34,766 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:34,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,767 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:34:34,767 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:34,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,767 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:34:34,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:34,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,768 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:34:34,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:34,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,768 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:34:34,768 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:34:34,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,769 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:34:34,769 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:34:34,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,769 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:34:34,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:34,770 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:34,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,770 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,771 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:34:34,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,772 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:34:34,772 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:34,779 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:34:34,779 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:34:34,796 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:34:34,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:34,797 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:34:34,797 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,801 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:34,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:34,801 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:34,801 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:34,801 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,801 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:34,802 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:34:34,802 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:34:34,802 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,804 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:34:34,804 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,806 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:34:34,806 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,809 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:34:34,809 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,811 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:34:34,811 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:34,813 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:34,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,814 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:34:34,814 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:34:34,815 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:34:34,815 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:34:34,872 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:34:34,873 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:34:34,874 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:34,875 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:34,875 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:34:34,875 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:34:34,877 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:34,877 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:34,878 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:34:34,878 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:34,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:34,880 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:34,886 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:34,886 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:34,886 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:34,886 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:34,886 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,887 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:34,887 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:34,887 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:34,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:34,887 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? and deleted=0 and status='Active' +01/30/13 11:34:34,888 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:34,893 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:34:34,893 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:34:34,895 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:34:34,895 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:34:34,899 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:34:34,899 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:34:34,903 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:34:35,040 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:34:35,041 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:35,046 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflow_activatedonce + WHERE entity_id=? and workflow_id=? +01/30/13 11:34:35,046 [1520] DEBUG index - Prepared sql query parameters : [138,2] +01/30/13 11:34:35,136 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflowtasks + INNER JOIN com_vtiger_workflowtask_queue + ON com_vtiger_workflowtasks.task_id= com_vtiger_workflowtask_queue.task_id + WHERE workflow_id=? AND entity_id=? +01/30/13 11:34:35,136 [1520] DEBUG index - Prepared sql query parameters : [2,138] +01/30/13 11:34:35,369 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,370 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:34:35,370 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:35,432 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:34:35,432 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:34:35,436 [1520] DEBUG index - Saved record with id of 138 +01/30/13 11:34:35,437 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:34:35,438 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:35,439 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,530 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:35,655 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:35,655 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:35,655 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:35,655 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:35,656 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'record' => '138', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:34:35,656 [1520] INFO index - About to take action DetailView +01/30/13 11:34:35,656 [1520] DEBUG index - in DetailView +01/30/13 11:34:35,656 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:34:35,656 [1520] INFO index - current module is Accounts +01/30/13 11:34:35,694 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:35,694 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:35,694 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:35,694 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:35,694 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,695 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:35,695 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,695 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:35,695 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:35,706 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:35,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,706 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:35,706 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:35,707 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:35,707 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:35,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,708 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:35,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,708 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:35,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,709 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:35,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,709 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:35,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,710 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:35,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,711 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:35,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,711 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:35,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,712 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:35,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,712 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:35,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,713 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:35,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,713 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:35,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,714 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:35,714 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,714 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:35,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,715 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:35,715 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,715 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:35,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,716 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:35,716 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,716 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:35,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,717 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:35,717 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,717 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:35,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,718 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:35,718 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,718 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,719 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:35,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,720 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:35,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,720 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:35,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,721 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:35,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,721 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:35,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,722 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:35,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,722 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:35,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,723 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:35,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,723 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:35,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,724 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:35,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,724 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:35,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,725 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:35,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,725 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:35,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,726 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:35,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,726 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:35,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,727 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:35,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,727 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:35,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,728 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:35,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,728 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:35,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,729 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:35,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,729 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:35,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,730 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:35,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,730 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:35,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:35,731 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:35,738 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:34:35,738 [1520] DEBUG index - Prepared sql query parameters : [295,1,Accounts,DetailView,138,2013-01-30 11:34:35] +01/30/13 11:34:35,741 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:35,741 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:35,741 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:35,741 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:35,743 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:35,743 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:35,745 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:35,745 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:35,747 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:35,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,748 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:35,748 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:35,748 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,748 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,748 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:35,748 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:35,757 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,757 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,757 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:35,757 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:34:35,757 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:34:35,757 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:34:35,759 [1520] INFO index - in track view method Accounts +01/30/13 11:34:35,759 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:35,759 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:35,761 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:34:35,761 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,762 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:34:35,762 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:34:35,762 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:34:35,778 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:34:35,778 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:34:35,779 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:34:35,779 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:34:35,779 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:34:35,781 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:34:35,781 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:34:35,781 [1520] DEBUG index - Prepared sql query parameters : [78] +01/30/13 11:34:35,785 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:35,785 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:35,785 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:35,785 [1520] DEBUG index - including headers +01/30/13 11:34:35,785 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:34:35,786 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:34:35,789 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:35,790 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:35,791 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:34:35,792 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:34:35,792 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:35,793 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:34:35,794 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:34:35,794 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:34:35,795 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,795 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:34:35,795 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,795 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:34:35,796 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,796 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:34:35,796 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,796 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:34:35,796 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,797 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:34:35,797 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,797 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:34:35,797 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,797 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:34:35,798 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:35,798 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:34:35,798 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:34:35,798 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:34:35,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,804 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:34:35,804 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:35,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:35,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,805 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:34:35,805 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:34:35,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:35,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,807 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:34:35,807 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:34:35,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:35,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,809 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:34:35,809 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:34:35,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,809 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:35,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,810 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:34:35,810 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:34:35,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:35,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,811 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:34:35,811 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:34:35,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:35,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,813 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:34:35,813 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:34:35,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:34:35,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,814 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:34:35,814 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:34:35,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,814 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:35,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,815 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:34:35,815 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:34:35,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:35,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,816 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:34:35,816 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:34:35,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:35,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,818 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:34:35,818 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:34:35,818 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,818 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:35,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,819 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:34:35,819 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:34:35,819 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:35,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,820 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:34:35,820 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:34:35,821 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:35,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,821 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:34:35,821 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:34:35,822 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,822 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:35,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,822 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:34:35,823 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:34:35,823 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,823 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:35,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,824 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:34:35,824 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:34:35,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,824 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:35,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,825 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:34:35,825 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:34:35,826 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:35,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,827 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:34:35,827 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:34:35,827 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:35,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,828 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:34:35,828 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:34:35,828 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:35) method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:35) method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:35,829 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:34:35,830 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:34:35,831 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:34:35,831 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:34:35,831 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:34:35,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,845 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,845 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,845 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,845 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,845 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:34:35,850 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:34:35,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,851 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:34:35,851 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:35,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,856 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:35,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,856 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,857 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,858 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:34:35,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,859 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:34:35,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,859 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:34:35,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,861 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:34:35,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,861 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:34:35,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,861 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:34:35,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,862 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:34:35,862 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,862 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:34:35,863 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,863 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:35,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,863 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:34:35,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,864 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:34:35,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,864 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,865 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:34:35,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,866 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:34:35,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,866 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:34:35,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,867 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:34:35,867 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,867 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:34:35,867 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,867 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:34:35,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,868 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:34:35,868 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:34:35,868 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:35,871 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:34:35,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,872 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:34:35,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,873 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:34:35,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,873 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:34:35,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,874 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:34:35,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,875 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:35,875 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:34:35,877 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:34:35,877 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,877 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:34:35,877 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:34:35,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:34:35,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,888 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:35,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:35,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,889 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:34:35,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:35,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,889 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:34:35,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,890 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:35,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:35,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,890 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:34:35,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:35,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,890 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:34:35,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:35,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,891 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:34:35,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:35,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,891 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:34:35,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:34:35,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,892 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:34:35,892 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:35,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,892 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:34:35,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:34:35,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,893 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:34:35,895 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:34:35,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,895 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:34:35,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:34:35,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,896 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:34:35,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:34:35,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,897 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:34:35,897 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:34:35,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,897 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:34:35,898 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:34:35,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,898 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:34:35,898 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:35,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,898 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:34:35,898 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:34:35,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,899 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:34:35,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:34:35,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,900 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:34:35,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:34:35,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,900 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:34:35,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:35,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,901 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:34:35,901 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:35,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,901 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:34:35,901 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:35,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,901 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:34:35,901 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:35,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,902 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:34:35,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:35,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,902 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:34:35,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:34:35,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,902 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:34:35,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:35,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,903 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:34:35,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:35,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,903 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:34:35,903 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:34:35,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,904 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:34:35,904 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:35,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,904 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:34:35,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:35,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,904 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:34:35,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:34:35,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,905 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:34:35,905 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:34:35,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,906 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:34:35,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:34:35,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,907 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:34:35,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,907 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:34:35,908 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:34:35,908 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:35,910 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:35,910 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:35,911 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,911 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,911 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:35,911 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:34:35,911 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,917 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:34:35,917 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,920 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:34:35,920 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,922 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:34:35,922 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,923 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:34:35,923 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:35,925 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,926 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:34:35,926 [1520] DEBUG index - id is 138 +01/30/13 11:34:35,927 [1520] DEBUG index - name is OSSEZ +01/30/13 11:34:35,927 [1520] INFO index - Account detail view +01/30/13 11:34:35,927 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:34:35,927 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:35,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:35,927 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:34:35,927 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:35,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,930 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:35,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,931 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:34:35,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,931 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:35,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,931 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:35,932 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:34:35,932 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:34:35,941 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:34:35,942 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:34:35,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,943 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:34:35,943 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,943 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,943 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,943 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:34:35,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,944 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:34:35,944 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,944 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,944 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,945 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:34:35,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,946 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:34:35,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,946 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,946 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:34:35,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,947 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:34:35,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,947 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,948 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:34:35,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,949 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:34:35,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,949 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,949 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:34:35,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,950 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:34:35,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,950 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,951 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:34:35,951 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:34:35,952 [1520] INFO index - in getAccountName 8 +01/30/13 11:34:35,952 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:34:35,952 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:35,958 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:34:35,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,959 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:34:35,959 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,959 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,959 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,959 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:34:35,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,960 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:34:35,960 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,960 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,960 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,961 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:34:35,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,962 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:34:35,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,962 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,963 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:34:35,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,963 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:34:35,964 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,964 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,964 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,964 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:34:35,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,965 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:34:35,965 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,965 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,965 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,966 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:34:35,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,967 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:34:35,967 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:35,967 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:35,967 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:35,967 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:34:35,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:35,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:35,968 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:34:35,968 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:35,968 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:35,968 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:34:35,968 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:34:35,969 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:34:35,970 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:34:35,970 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:34:35,970 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:34:35,972 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:35,972 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:35,972 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:35,973 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:35,976 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 295 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #504 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #504 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:35,977 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:35,977 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:35,979 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:35,979 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:35,979 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:35,979 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:35,982 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:35,982 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:35,982 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:35,982 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:35,985 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:35,985 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:35,986 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:35,986 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:34:35,987 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:35,987 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:34:36,005 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:34:36,006 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:34:36,007 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:34:36,007 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,007 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,007 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,008 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:34:36,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,009 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:34:36,009 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:36,009 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:36,009 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:36,009 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:36,009 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,009 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:36,016 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 295 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #512 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #512 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:36,017 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,017 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,019 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,019 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:36,020 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,020 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:36,023 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,023 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:36,023 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,023 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:36,026 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,027 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:36,027 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:36,027 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:34:36,028 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:36,028 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:36,036 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:36,036 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:34:36,037 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:34:36,037 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:34:36,037 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:34:36,037 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:34:36,037 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,037 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,037 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,038 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:34:36,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,038 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:34:36,038 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:36,039 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:36,039 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:36,039 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:36,039 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,039 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:36,042 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 295 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #520 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #520 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:36,043 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,043 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,045 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,045 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:36,045 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,046 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:36,049 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,049 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:36,049 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:36,049 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:36,054 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:36,054 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:36,054 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:36,054 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:34:36,056 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:36,056 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:36,068 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:36,068 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:34:36,068 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:34:36,068 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:34:36,069 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:34:36,069 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,069 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,070 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,070 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:34:36,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,071 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:34:36,071 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,071 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,071 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,072 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:34:36,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,072 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:34:36,072 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,073 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,073 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:34:36,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,074 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:34:36,074 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:34:36,074 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:34:36,074 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:34:36,074 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:34:36,076 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:34:36,076 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,077 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:34:36,078 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:34:36,078 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:34:36,080 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:34:36,080 [1520] INFO index - in getOwnerName 5 +01/30/13 11:34:36,080 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:34:36,080 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,080 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,083 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:34:36,083 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:34:36,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,085 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:34:36,085 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,085 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:34:36,085 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:34:36,090 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:34:36,090 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:34:36,091 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:34:36,091 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:34:36,091 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:34:36,099 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,099 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,101 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,101 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,103 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:36,104 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:34:36,104 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:34:36,104 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:34:36,104 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:34:36,104 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:34:36,104 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:34:36,105 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:34:36,105 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:34:36,108 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:36,108 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,109 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,110 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:34:36,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,110 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:34:36,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,111 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,111 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:34:36,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,112 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:34:36,112 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:34:36,112 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:36,112 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:34:36,112 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:36,113 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,113 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,113 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,113 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:34:36,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,114 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:34:36,114 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:34:36,114 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:36,114 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:34:36,115 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:36,115 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,115 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,115 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,115 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:34:36,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,116 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:34:36,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,116 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,117 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:34:36,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,118 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:34:36,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,118 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,118 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,118 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:34:36,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,119 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:34:36,119 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,119 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,120 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:34:36,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,121 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:34:36,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,121 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,121 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:34:36,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,122 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:34:36,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,122 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,123 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:34:36,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,124 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:34:36,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,124 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,125 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:34:36,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,125 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:34:36,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,125 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,126 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:34:36,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,127 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:34:36,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,127 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,128 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:34:36,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,128 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:34:36,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,128 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,129 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:34:36,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,130 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:34:36,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,130 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,131 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:34:36,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,131 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:34:36,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,131 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,132 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:34:36,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,133 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:34:36,133 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,133 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,133 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,133 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:34:36,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,134 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:34:36,134 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:36,134 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:36,134 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:36,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,135 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:36,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,135 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:36,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,135 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:36,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,136 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:36,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,136 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:36,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,136 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:36,136 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:34:36,136 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:34:36,137 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:34:36,137 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:34:36,137 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:36,139 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:34:36,139 [1520] INFO index - in getOwnerName 1 +01/30/13 11:34:36,139 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:34:36,139 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:36,139 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:36,142 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:34:36,142 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:36,144 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:34:36,144 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:36,144 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:34:36,144 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:34:36,144 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,144 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:34:36,145 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:34:36,145 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:34:36,146 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:34:36,146 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:36,147 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:34:36,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,148 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:34:36,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,149 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:34:36,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,149 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:36,149 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:36,151 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,151 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,151 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,152 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:34:36,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,154 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:34:36,154 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:36,158 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,158 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:34:36,158 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:34:36,175 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:34:36,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,176 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:34:36,176 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:34:36,176 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:36,178 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:34:36,178 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,178 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,178 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:36,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:36,178 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:34:36,179 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:36,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,181 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:34:36,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,181 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:34:36,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,182 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:34:36,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,182 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:34:36,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,182 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:34:36,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,183 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:34:36,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,183 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:34:36,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,183 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:34:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,184 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:34:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,184 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:34:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,184 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:34:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,185 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:34:36,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,185 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:34:36,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,185 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:34:36,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,186 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:34:36,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,186 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:34:36,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,186 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:34:36,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,187 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:34:36,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,187 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:34:36,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,187 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:34:36,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,188 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:34:36,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,188 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:34:36,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,188 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:34:36,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,189 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:34:36,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,189 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:34:36,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,189 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:34:36,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,189 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:34:36,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,190 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:34:36,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,190 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:34:36,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,190 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:34:36,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,191 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:34:36,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,191 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:34:36,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,191 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:34:36,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,192 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:34:36,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,192 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:34:36,192 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:34:36,192 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:34:36,192 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:34:36,192 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:36,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,193 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:34:36,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,194 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:34:36,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,194 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:34:36,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,195 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:34:36,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,195 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:34:36,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,196 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:36,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,197 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:34:36,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,197 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:34:36,197 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:34:36,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,199 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:34:36,199 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:34:36,199 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:34:36,201 [1520] DEBUG index - Entering when status=0 +01/30/13 11:34:36,201 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:34:36,201 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:34:36,201 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,201 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,201 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,201 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,202 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,202 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE '%v%') ) AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/30/13 11:34:36,209 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,209 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:34:36,209 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:36,213 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:34:36,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,214 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:34:36,214 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:36,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,217 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:34:36,217 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:34:36,228 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:36,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,228 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:36,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,228 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,228 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:34:36,229 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:34:36,229 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:36,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,229 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:34:36,229 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:34:36,229 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:34:36,138,1] +01/30/13 11:34:36,233 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,233 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,233 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:34:36,234 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:34:36,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,242 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,243 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:36,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,243 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:36,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,243 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,244 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,244 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,244 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,245 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,245 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:36,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,246 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:36,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,246 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:36,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,247 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:34:36,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,247 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:34:36,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,247 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:34:36,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,248 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:34:36,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,248 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:34:36,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,248 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:34:36,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,248 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:34:36,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,249 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:34:36,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,249 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:34:36,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,249 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:34:36,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,250 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:34:36,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,250 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:34:36,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,250 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:34:36,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,251 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:34:36,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,251 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:34:36,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,251 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:34:36,348 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,348 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,348 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,348 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,349 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:34:36,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:36,351 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:36,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,352 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:36,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,352 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:34:36,352 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,352 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,352 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,353 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,353 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,353 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:34:36,353 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:34:36,356 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:34:36,356 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:34:36,356 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:34:36,356 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:36,356 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,356 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:36,356 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,356 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:36,356 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:34:36,364 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:36,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,364 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,364 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:34:36,364 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:34:36,364 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:34:36,364 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:36,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,365 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:36,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,365 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:36,365 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:34:36,375 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:36,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,376 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,376 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,376 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,376 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,376 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,377 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,377 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,377 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,377 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,377 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:34:36,377 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:34:36,377 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:36,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,378 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:36,378 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,378 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:36,378 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:34:36,383 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:36,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,384 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,385 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,385 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,385 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,385 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,389 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:36,389 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:36,389 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:36,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,390 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:36,390 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:34:36,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:36,390 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:34:36,390 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:34:36,418 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:36,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:36,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,419 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:34:36,419 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,419 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:34:36,419 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,420 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:34:36,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:36,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:36,420 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:36,420 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:34:36,421 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:36,421 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,223 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:47,355 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:47,355 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:47,356 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:47,356 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:47,356 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'record' => '8', +) +01/30/13 11:34:47,356 [1520] INFO index - About to take action DetailView +01/30/13 11:34:47,356 [1520] DEBUG index - in DetailView +01/30/13 11:34:47,357 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:34:47,357 [1520] INFO index - current module is Accounts +01/30/13 11:34:47,390 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:47,390 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:47,390 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:47,390 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:47,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,391 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:47,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,391 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:47,391 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:47,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:47,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,402 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,402 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:47,402 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:47,403 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:47,403 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,403 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:47,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,404 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:47,404 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,404 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:47,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,405 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:47,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,405 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:47,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,406 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:47,406 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,407 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:47,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,407 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:47,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,407 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:47,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,408 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:47,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,408 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:47,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,409 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:47,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,409 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:47,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,410 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:47,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,410 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:47,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,411 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:47,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,411 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:47,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,412 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:47,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,412 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:47,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,413 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:47,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,413 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,414 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:47,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,415 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:47,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,415 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:47,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,416 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:47,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,416 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:47,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,417 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:47,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,417 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:47,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,418 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:47,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,418 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:47,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,419 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:47,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,419 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:47,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,420 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:47,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,420 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:47,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,421 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:47,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,421 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:47,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,422 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:47,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,422 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:47,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,423 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:47,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,423 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:47,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,424 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:47,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,424 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:47,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,425 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:47,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,425 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:47,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,426 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:47,433 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:34:47,434 [1520] DEBUG index - Prepared sql query parameters : [296,1,Accounts,DetailView,8,2013-01-30 11:34:47] +01/30/13 11:34:47,436 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:47,436 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:47,436 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:47,436 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:47,438 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:47,438 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:47,440 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:47,440 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:47,442 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:47,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,443 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:47,443 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:47,443 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,443 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,443 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,443 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:47,443 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:47,452 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,452 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,452 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,452 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:34:47,452 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:34:47,452 [1520] DEBUG index - Prepared sql query parameters : [1,8] +01/30/13 11:34:47,454 [1520] INFO index - in track view method Accounts +01/30/13 11:34:47,454 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,454 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:47,456 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:34:47,456 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,457 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:34:47,457 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:34:47,457 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,8,vtigerCRM Inc] +01/30/13 11:34:47,460 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:34:47,460 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:34:47,461 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:34:47,461 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:34:47,461 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:34:47,469 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:34:47,469 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:34:47,469 [1520] DEBUG index - Prepared sql query parameters : [81] +01/30/13 11:34:47,477 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:47,477 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:47,477 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:47,477 [1520] DEBUG index - including headers +01/30/13 11:34:47,478 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:34:47,478 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:34:47,481 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,481 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,486 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:34:47,486 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:34:47,486 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,488 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:34:47,488 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:34:47,489 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:34:47,489 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,489 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:34:47,489 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,490 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:34:47,490 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,490 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:34:47,490 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,490 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:34:47,491 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,491 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:34:47,491 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,491 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:34:47,492 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:34:47,499 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,500 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:34:47,500 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:47,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:47,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,501 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:34:47,501 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:34:47,501 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:47,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,502 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:34:47,502 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:34:47,503 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:47,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,504 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:34:47,504 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:34:47,504 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,504 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:47,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,505 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:34:47,505 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:34:47,505 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:47,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,506 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:34:47,506 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:34:47,507 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:47,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:34:47,507 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:34:47,508 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:34:47,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,508 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:34:47,509 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:34:47,509 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,509 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:47,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,510 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:34:47,510 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:34:47,510 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:47,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,511 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:34:47,511 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:34:47,512 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:47,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,512 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:34:47,512 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:34:47,513 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,513 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:47,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,513 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:34:47,513 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:34:47,514 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:47,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,514 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:34:47,515 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:34:47,515 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:47,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,516 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:34:47,516 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:34:47,516 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,516 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:47,517 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,517 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:34:47,517 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:34:47,517 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,517 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:47,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,518 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:34:47,518 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:34:47,518 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,519 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:47,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,520 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:34:47,520 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:34:47,520 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:47,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,521 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:34:47,521 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:34:47,521 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:47,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,522 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:34:47,522 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:34:47,522 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,522 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:34:47,522 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:47) method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:47) method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:34:47,523 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:34:47,524 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:34:47,524 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:34:47,524 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:34:47,524 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:34:47,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,528 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,531 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,534 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:34:47,541 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:34:47,541 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,542 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:34:47,542 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,544 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,544 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,545 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:47,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,545 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:34:47,545 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,546 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,547 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,548 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:34:47,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,550 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:34:47,550 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,550 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:34:47,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,550 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:34:47,551 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,551 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:47,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,551 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:34:47,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,552 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:34:47,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,552 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,553 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:34:47,554 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,554 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:34:47,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,554 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:34:47,554 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,555 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:34:47,555 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,555 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:34:47,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,555 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:34:47,555 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:34:47,555 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,559 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:34:47,559 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,559 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:34:47,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,560 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:34:47,560 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,561 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:34:47,561 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,561 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:34:47,562 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,562 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:47,562 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:34:47,564 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:34:47,564 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,564 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:34:47,564 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:34:47,567 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:34:47,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,577 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:34:47,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,578 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:34:47,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:34:47,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,578 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:34:47,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,578 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:34:47,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,579 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:34:47,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:34:47,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,579 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:34:47,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:34:47,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,579 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:34:47,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:34:47,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,580 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:34:47,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:34:47,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,581 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:34:47,581 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:34:47,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,581 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:34:47,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:34:47,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,581 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:34:47,584 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:34:47,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,584 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:34:47,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:34:47,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,585 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:34:47,585 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:34:47,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,585 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:34:47,585 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:34:47,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,586 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:34:47,586 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:34:47,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,586 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:34:47,587 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:47,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,587 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:34:47,587 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:34:47,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,587 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:34:47,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:34:47,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,588 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:34:47,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:34:47,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,589 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:34:47,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:34:47,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,589 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:34:47,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:34:47,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,589 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:34:47,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:34:47,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,590 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:34:47,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:34:47,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,590 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:34:47,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:34:47,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,590 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:34:47,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:34:47,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,591 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:34:47,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:34:47,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,591 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:34:47,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:34:47,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,591 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:34:47,592 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:34:47,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,592 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:34:47,592 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:34:47,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,592 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:34:47,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:34:47,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,593 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:34:47,593 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:34:47,593 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,594 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:34:47,594 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:34:47,594 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,594 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:34:47,594 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:34:47,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,595 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:34:47,595 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,596 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,596 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:34:47,596 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:34:47,596 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,598 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:47,599 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:47,599 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,599 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:34:47,599 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,605 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:34:47,605 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,611 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:34:47,611 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,612 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:34:47,613 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,614 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:34:47,614 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,618 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,619 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,620 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:34:47,620 [1520] DEBUG index - id is 8 +01/30/13 11:34:47,620 [1520] DEBUG index - name is vtigerCRM Inc +01/30/13 11:34:47,620 [1520] INFO index - Account detail view +01/30/13 11:34:47,620 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:34:47,620 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,620 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,621 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:34:47,621 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:47,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,623 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:47,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,623 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:34:47,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,624 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:47,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,624 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:47,624 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:34:47,624 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:34:47,635 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:34:47,635 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:34:47,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,636 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:34:47,636 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,636 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,636 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,637 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:34:47,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,637 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:34:47,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,637 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,638 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,638 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:34:47,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,639 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:34:47,639 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,639 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,639 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,639 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:34:47,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,640 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:34:47,640 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,640 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,640 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,641 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:34:47,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,641 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:34:47,641 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,642 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,642 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:34:47,642 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,643 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:34:47,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,643 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,643 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,643 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:34:47,644 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:34:47,644 [1520] INFO index - in getAccountName 0 +01/30/13 11:34:47,644 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:34:47,644 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:34:47,646 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:34:47,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,646 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:34:47,646 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,646 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,646 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,647 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:34:47,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,647 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:34:47,647 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,647 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,647 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,648 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:34:47,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,649 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:34:47,649 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,649 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,649 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,649 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:34:47,650 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,650 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:34:47,650 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,650 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,650 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,651 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:34:47,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,651 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:34:47,651 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,651 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,652 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,652 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:34:47,652 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,653 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:34:47,653 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,653 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,653 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,653 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:34:47,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,654 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:34:47,654 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:47,654 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:47,654 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:34:47,654 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:34:47,654 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:34:47,656 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:34:47,656 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:34:47,656 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:34:47,658 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:47,658 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:47,658 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,658 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:47,662 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 296 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #505 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #505 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:47,663 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,663 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,665 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,665 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:47,665 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,665 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:47,668 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,668 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:47,668 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,668 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:47,671 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,671 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:47,672 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:47,672 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:34:47,673 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:47,673 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:47,694 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:34:47,695 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:34:47,696 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:34:47,697 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:34:47,697 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:34:47,697 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:34:47,697 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:34:47,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,697 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,698 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:34:47,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,698 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:34:47,698 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:47,698 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:47,699 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:47,699 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:47,699 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,699 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:47,706 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 296 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #513 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #513 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:47,707 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,707 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,713 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,713 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:47,713 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,714 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:47,717 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,717 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:47,717 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,717 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:47,720 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,720 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:47,721 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:47,721 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:34:47,723 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:47,723 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:47,732 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:47,732 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:34:47,732 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:34:47,732 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:34:47,732 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:34:47,733 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:34:47,733 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,733 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,733 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,733 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,734 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:34:47,734 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:34:47,734 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,734 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:34:47,742 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 296 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #521 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #521 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:34:47,743 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,743 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,745 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,745 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:34:47,745 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,746 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:34:47,749 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,749 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:34:47,750 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:34:47,750 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:34:47,753 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:34:47,753 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:34:47,753 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:34:47,753 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:34:47,755 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:34:47,755 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:34:47,766 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:34:47,766 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:34:47,766 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:34:47,767 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:34:47,768 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,768 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,768 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,768 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:34:47,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,769 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:34:47,769 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,769 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,769 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,770 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:34:47,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,770 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:34:47,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,771 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,771 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:34:47,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,772 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:34:47,772 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:34:47,772 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:34:47,772 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:34:47,772 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:34:47,774 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,774 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,775 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:34:47,775 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:34:47,776 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,780 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:34:47,780 [1520] INFO index - in getOwnerName 1 +01/30/13 11:34:47,780 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:34:47,780 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,780 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,782 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:34:47,782 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,784 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:34:47,784 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,784 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,784 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:34:47,784 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:34:47,786 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:34:47,786 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:34:47,787 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:34:47,787 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:34:47,787 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:34:47,789 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,789 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,793 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,793 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,795 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:47,795 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:34:47,795 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:34:47,795 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:34:47,795 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:34:47,795 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:34:47,796 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:34:47,796 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:34:47,796 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:34:47,798 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:34:47,798 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:34:47,798 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,799 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,800 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:34:47,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,800 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:34:47,800 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,800 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,800 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,801 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:34:47,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,802 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:34:47,802 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:35) method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:35) method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,802 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,803 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:34:47,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,804 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:34:47,804 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:35) method ... +01/30/13 11:34:47,804 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:47,804 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:35) method ... +01/30/13 11:34:47,804 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:34:47,804 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,804 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,805 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,805 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:34:47,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,806 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:34:47,806 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,806 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,806 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,807 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:34:47,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,807 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:34:47,807 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,807 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,807 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,808 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:34:47,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,809 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:34:47,809 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,809 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,809 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,809 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:34:47,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,810 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:34:47,810 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,810 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,810 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,811 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:34:47,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,811 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:34:47,811 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,811 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,812 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,812 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:34:47,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,813 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:34:47,813 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,813 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,813 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,813 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:34:47,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,814 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:34:47,814 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,814 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,814 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,815 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:34:47,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,815 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:34:47,815 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,816 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,816 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:34:47,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,817 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:34:47,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,817 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,818 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:34:47,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,818 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:34:47,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,818 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,819 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:34:47,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,819 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:34:47,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,820 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,820 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:34:47,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,821 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:34:47,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,821 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,822 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:34:47,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,822 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:34:47,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:34:47,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:34:47,822 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:34:47,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,823 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:47,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,823 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:34:47,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,823 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:47,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,824 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:34:47,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,824 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:47,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,824 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:34:47,824 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:34:47,824 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:34:47,825 [1520] DEBUG index - Entering updateInfo(8) method ... +01/30/13 11:34:47,825 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:34:47,825 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:47,826 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:34:47,827 [1520] INFO index - in getOwnerName 1 +01/30/13 11:34:47,827 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:34:47,827 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:34:47,827 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:34:47,828 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:34:47,829 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,830 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:35) method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:34:47,831 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:34:47,831 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:34:47,831 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:34:47,832 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:34:47,832 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:34:47,832 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,834 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,8) method ... +01/30/13 11:34:47,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,835 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,8) method ... +01/30/13 11:34:47,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,835 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:34:47,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,836 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:34:47,836 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:47,841 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:47,841 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:47,841 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,841 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,843 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,844 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:34:47,844 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:47,848 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,848 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:34:47,848 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:34:47,866 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:34:47,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,867 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:34:47,867 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:34:47,867 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:34:47,868 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:34:47,868 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,869 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,869 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:47,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,869 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:34:47,869 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:47,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,872 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:34:47,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,872 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:34:47,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,872 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:34:47,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,873 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:34:47,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,873 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:34:47,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,873 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:34:47,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,874 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:34:47,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,874 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:34:47,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,874 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:34:47,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,875 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:34:47,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,875 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:34:47,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,875 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:34:47,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,876 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:34:47,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,876 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:34:47,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,876 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:34:47,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,877 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:34:47,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,877 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:34:47,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,877 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:34:47,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,877 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:34:47,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,878 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:34:47,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,878 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:34:47,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,878 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:34:47,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,879 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:34:47,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,879 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:34:47,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,879 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:34:47,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,880 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:34:47,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,880 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:34:47,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,880 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:34:47,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,881 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:34:47,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,881 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:34:47,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,881 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:34:47,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,882 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:34:47,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,882 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:34:47,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,882 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:34:47,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,883 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:34:47,883 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:34:47,883 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:34:47,883 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:34:47,883 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:34:47,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,884 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:34:47,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,884 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:34:47,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,884 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:34:47,885 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,885 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:34:47,885 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,885 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:34:47,886 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,886 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:47,886 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,887 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:34:47,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,887 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:34:47,887 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,8) method ... +01/30/13 11:34:47,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,888 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:34:47,889 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:34:47,889 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:34:47,890 [1520] DEBUG index - Entering when status=0 +01/30/13 11:34:47,890 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:34:47,891 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:34:47,892 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:47,892 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:47,892 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,892 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,893 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,893 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,893 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,893 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE '%v%') ) AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/30/13 11:34:47,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,903 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:34:47,903 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:34:47,908 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:34:47,908 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:47,909 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:34:47,909 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:34:47,912 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:34:47,913 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,913 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:34:47,914 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:34:47,924 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:34:47,925 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:34:47,926 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:34:47,926 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,926 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:34:47,926 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:34:47,926 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:34:47,8,1] +01/30/13 11:34:47,938 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:47,938 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:47,938 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:34:47,938 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:34:47,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,946 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,946 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:47,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,947 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:47,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,947 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,947 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,948 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,948 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,948 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,949 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:34:47,949 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,949 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:47,949 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,949 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:47,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,950 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:34:47,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,950 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:34:47,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,950 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:34:47,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,951 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:34:47,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,951 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:34:47,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,951 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:34:47,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,952 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:34:47,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,952 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:34:47,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,952 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:34:47,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,953 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:34:47,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,953 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:34:47,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,953 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:34:47,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,953 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:34:47,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,954 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:34:47,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,954 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:34:47,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:47,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:47,954 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:34:48,048 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,048 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,048 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,048 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,048 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:34:48,049 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:48,051 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:48,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,051 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:34:48,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,051 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:34:48,052 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,052 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,052 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,052 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,052 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,053 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:34:48,053 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:34:48,056 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:34:48,056 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:34:48,056 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:34:48,056 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:48,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,056 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:48,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,057 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:48,057 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:34:48,067 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:34:48,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,067 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,067 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:34:48,067 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:34:48,067 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:34:48,067 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:48,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,068 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:48,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,068 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:48,068 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:34:48,078 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:34:48,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,078 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,078 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,078 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,078 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,078 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,079 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,079 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,079 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,079 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,079 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,079 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:34:48,079 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:34:48,080 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:48,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,080 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:48,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,080 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:48,080 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:34:48,088 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:34:48,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,088 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,090 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,090 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,090 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,090 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,092 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:48,092 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:34:48,092 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:34:48,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,092 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:48,092 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:34:48,093 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:48,093 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:34:48,093 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:34:48,123 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,123 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:34:48,123 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:48,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,124 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:34:48,124 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:48,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:48,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:48,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,124 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:34:48,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:34:48,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:48,124 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:34:48,125 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:34:48,125 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:34:48,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:34:58,868 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:34:59,003 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:34:59,003 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:34:59,003 [1520] DEBUG index - ****Starting for new session +01/30/13 11:34:59,004 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:34:59,004 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'getListOfRecords', + 'ajax' => 'true', + 'CurModule' => 'Accounts', + 'CurRecordId' => '8', + 'CurParentTab' => 'Marketing', +) +01/30/13 11:34:59,004 [1520] INFO index - About to take action getListOfRecords +01/30/13 11:34:59,004 [1520] DEBUG index - in getListOfRecords +01/30/13 11:34:59,004 [1520] INFO index - current page is modules/Users/getListOfRecords.php +01/30/13 11:34:59,004 [1520] INFO index - current module is Users +01/30/13 11:34:59,037 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:34:59,038 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:34:59,038 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:34:59,038 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:59,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:59,038 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:59,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:59,039 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:59,039 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:34:59,053 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:34:59,053 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:34:59,053 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:34:59,053 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:34:59,054 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:34:59,054 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:34:59,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,055 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:34:59,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,055 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:34:59,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,056 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:34:59,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,056 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:34:59,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,057 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:34:59,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,057 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:34:59,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,058 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:34:59,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,058 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:34:59,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,059 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:34:59,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,059 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:34:59,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,060 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:34:59,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,060 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:34:59,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,061 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:34:59,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,061 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:34:59,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,062 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:34:59,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,062 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:34:59,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,063 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:34:59,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,063 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:34:59,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,064 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:34:59,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,064 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:34:59,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,065 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:34:59,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,065 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,066 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:34:59,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,067 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:34:59,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,067 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:34:59,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,068 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:34:59,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,068 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:34:59,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,069 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:34:59,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,069 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:34:59,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,070 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:34:59,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,070 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:34:59,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,071 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:34:59,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,071 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:34:59,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,072 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:34:59,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,072 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:34:59,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,073 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:34:59,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,073 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:34:59,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,074 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:34:59,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,074 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:34:59,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,075 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:34:59,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,075 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:34:59,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,076 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:34:59,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,076 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:34:59,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,077 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:34:59,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:34:59,077 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:34:59,080 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:34:59,080 [1520] DEBUG index - Prepared sql query parameters : [297,1,Users,getListOfRecords,,2013-01-30 11:34:59] +01/30/13 11:34:59,096 [1520] DEBUG index - Current user is: admin +01/30/13 11:34:59,096 [1520] DEBUG index - Current theme is: softed +01/30/13 11:34:59,096 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:34:59,096 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:34:59,098 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:34:59,098 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:34:59,100 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:34:59,100 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:34:59,101 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:34:59,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:34:59,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:34:59,103 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:34:59,103 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:34:59,103 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:34:59,103 [1520] DEBUG index - skipping headers +01/30/13 11:34:59,127 [1520] DEBUG layout_utils - Entering getColumnFields(Accounts) method ... +01/30/13 11:34:59,127 [1520] DEBUG layout_utils - in getColumnFields Accounts +01/30/13 11:34:59,127 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:34:59,127 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:34:59,128 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:34:59,128 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:34:59,128 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:34:59,128 [1520] DEBUG layout_utils - Prepared sql query parameters : [6] +01/30/13 11:34:59,140 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:34:59,140 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:34:59,141 [1520] DEBUG layout_utils - Exiting getColumnFields method ... +01/30/13 11:34:59,141 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tablename,entityidfield, fieldname from vtiger_entityname WHERE modulename = ? +01/30/13 11:34:59,141 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:34:59,145 [1520] DEBUG layout_utils - Entering getFieldVisibilityPermission(Accounts,1,accountname) method ... +01/30/13 11:34:59,146 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:34:59,146 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:34:59,146 [1520] DEBUG layout_utils - Exiting getFieldVisibilityPermission method ... +01/30/13 11:34:59,147 [1520] DEBUG layout_utils - Entering isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:34:59,147 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:34:59,147 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:34:59,149 [1520] DEBUG layout_utils - Entering when status=0 +01/30/13 11:34:59,149 [1520] DEBUG layout_utils - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:34:59,149 [1520] DEBUG layout_utils - Exiting isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:34:59,149 [1520] DEBUG layout_utils - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:34:59,149 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:34:59,151 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,151 [1520] DEBUG layout_utils - Prepared sql query parameters : [2] +01/30/13 11:34:59,153 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,153 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:34:59,155 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,155 [1520] DEBUG layout_utils - Prepared sql query parameters : [8] +01/30/13 11:34:59,158 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,158 [1520] DEBUG layout_utils - Prepared sql query parameters : [12] +01/30/13 11:34:59,162 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,162 [1520] DEBUG layout_utils - Prepared sql query parameters : [14] +01/30/13 11:34:59,164 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,164 [1520] DEBUG layout_utils - Prepared sql query parameters : [16] +01/30/13 11:34:59,166 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,166 [1520] DEBUG layout_utils - Prepared sql query parameters : [18] +01/30/13 11:34:59,170 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:34:59,170 [1520] DEBUG layout_utils - Prepared sql query parameters : [20] +01/30/13 11:34:59,174 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT accountname, accountid from vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?) +01/30/13 11:34:59,174 [1520] DEBUG layout_utils - Prepared sql query parameters : [2,4,8,12,14,16,18,20] +01/30/13 11:35:03,701 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:03,824 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:03,824 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:03,824 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:03,824 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:03,825 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'parenttab' => 'Marketing', + 'record' => '2', + 'start' => '1', +) +01/30/13 11:35:03,825 [1520] INFO index - About to take action DetailView +01/30/13 11:35:03,825 [1520] DEBUG index - in DetailView +01/30/13 11:35:03,825 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:03,825 [1520] INFO index - current module is Accounts +01/30/13 11:35:03,858 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:03,859 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:03,859 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:03,859 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:03,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,859 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:03,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,860 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:03,860 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:03,870 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:03,870 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,870 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:03,870 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:03,870 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:03,871 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:03,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,872 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:03,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,872 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:03,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,873 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:03,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,873 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:03,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,874 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:03,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,874 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:03,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,875 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:03,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,875 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:03,875 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,876 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:03,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,876 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:03,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,877 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:03,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,877 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:03,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,877 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:03,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,878 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:03,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,878 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:03,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,879 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:03,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,879 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:03,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,880 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:03,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,880 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:03,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,881 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:03,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,881 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:03,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,882 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:03,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,882 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:03,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,883 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:03,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,883 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:03,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,884 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:03,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,884 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:03,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,885 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:03,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,885 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:03,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,885 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:03,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,886 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:03,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,886 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:03,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,887 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:03,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,887 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:03,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,888 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:03,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,888 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:03,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,889 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:03,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,889 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:03,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,890 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:03,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,890 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:03,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,891 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:03,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,891 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:03,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,892 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:03,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,892 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:03,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,893 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:03,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,893 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:03,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:03,894 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:03,899 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:03,899 [1520] DEBUG index - Prepared sql query parameters : [298,1,Accounts,DetailView,2,2013-01-30 11:35:03] +01/30/13 11:35:03,902 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:03,902 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:03,902 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:03,902 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:03,904 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:03,905 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:03,906 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:03,907 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:03,908 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:03,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:03,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,909 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:03,909 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:03,909 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:03,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,910 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:03,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,910 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:03,910 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:03,919 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:03,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,919 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:03,919 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:03,920 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:03,920 [1520] DEBUG index - Prepared sql query parameters : [1,2] +01/30/13 11:35:03,923 [1520] INFO index - in track view method Accounts +01/30/13 11:35:03,923 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:03,923 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:03,924 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:03,925 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:03,926 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:03,926 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:03,926 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,2,vtiger] +01/30/13 11:35:03,929 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:03,929 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:03,931 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:35:03,931 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:03,931 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:03,931 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:03,931 [1520] DEBUG index - including headers +01/30/13 11:35:03,931 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:03,932 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:03,935 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:03,935 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:03,937 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:03,937 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:03,937 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:03,939 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:03,940 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:03,940 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:03,941 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,941 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:03,941 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,941 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:03,942 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,942 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:03,942 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,942 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:03,942 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,943 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:03,943 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,943 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:03,943 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,943 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:03,944 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:03,944 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:03,944 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:03,944 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:03,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:03,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,951 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:03,951 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:03,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:03,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,952 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:03,952 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:03,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:03,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,953 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:03,953 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:03,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:03,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,955 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:03,955 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:03,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,955 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:03,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,956 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:03,956 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:03,956 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:03,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,957 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:03,957 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:03,957 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:03,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,958 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:03,958 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:03,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:03,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,959 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:03,959 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:03,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,960 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:03,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,960 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:03,960 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:03,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:03,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,962 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:03,962 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:03,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:03,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,963 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:03,963 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:03,963 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,964 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:03,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,964 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:03,964 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:03,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:03,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,965 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:03,965 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:03,966 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:03,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,966 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:03,967 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:03,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,967 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:03,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,968 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:03,968 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:03,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,968 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:03,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,969 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:03,969 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:03,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,969 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:03,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,970 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:03,970 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:03,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:03,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,971 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:03,971 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:03,972 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:03,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:03,972 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:03,972 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:03,973 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,973 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:03,973 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:03) method ... +01/30/13 11:35:03,973 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:03,973 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:03) method ... +01/30/13 11:35:03,974 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:03,974 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:03,974 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:03,975 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:03,975 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:03,975 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:03,979 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,979 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,979 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,979 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,979 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,979 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,980 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,981 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,983 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,988 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,988 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:03,992 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:03,992 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,992 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:03,992 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:03,994 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:03,995 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:03,995 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:03,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,996 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:03,996 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,996 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:03,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,996 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:03,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,998 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:03,998 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,998 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:03,998 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,998 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:03,999 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:03,1000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:03,1000 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:04,000 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,000 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:04,000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,001 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:04,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,001 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:04,001 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,001 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:04,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,002 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:04,002 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,002 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,003 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:04,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,004 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:04,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,004 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:04,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,005 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:04,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,006 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:04,006 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:04,006 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,010 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:04,010 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,011 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:04,011 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,011 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:04,012 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,012 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:04,012 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,012 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:35:04,013 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,013 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:04,013 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:04,016 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:04,016 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,016 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:04,016 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:04,018 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:04,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,024 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:04,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,024 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:04,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:04,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,025 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:04,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,025 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:04,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,025 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:04,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:04,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,025 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:04,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:04,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,026 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:04,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:04,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,026 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:04,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:04,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,027 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:04,027 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:04,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,027 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:04,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:04,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,028 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:04,030 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:04,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,031 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:04,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:04,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,031 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:04,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:04,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,032 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:04,032 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:04,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,032 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:04,033 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:04,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,033 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:04,033 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:04,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,033 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:04,033 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:04,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,034 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:04,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:04,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,034 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:04,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:04,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,035 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:04,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:04,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,036 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:04,036 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:04,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,036 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:04,036 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:04,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,036 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:04,036 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:04,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,036 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:04,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:04,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,037 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:04,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:04,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,037 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:04,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:04,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,038 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:04,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:04,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,038 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:04,038 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:04,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,039 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:04,039 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:04,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,039 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:04,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:04,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,039 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:04,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:04,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,040 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:04,040 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:04,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,041 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:04,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:04,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,042 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:04,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,042 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:04,042 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:04,043 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,045 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,045 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,045 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,045 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,045 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,045 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:04,046 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,050 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:04,050 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,053 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:04,054 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,055 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:04,056 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,058 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:04,058 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,061 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,063 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:04,063 [1520] DEBUG index - id is 2 +01/30/13 11:35:04,063 [1520] DEBUG index - name is vtiger +01/30/13 11:35:04,063 [1520] INFO index - Account detail view +01/30/13 11:35:04,063 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:04,063 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,063 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:04,064 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:04,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,066 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:04,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,066 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,066 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:04,066 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,067 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:04,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,067 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:04,067 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:04,067 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:04,079 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:04,080 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:04,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,080 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:04,080 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,080 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,081 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,081 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:04,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,082 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:04,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,082 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,082 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,082 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:04,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,083 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:04,083 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,083 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,084 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:04,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,084 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:04,084 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,085 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,085 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,085 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:04,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,086 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:04,086 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,086 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,086 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,086 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:04,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,087 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:04,087 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,087 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,087 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,088 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:04,088 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:35:04,088 [1520] INFO index - in getAccountName 0 +01/30/13 11:35:04,088 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:04,088 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:35:04,090 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:04,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,090 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:04,090 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,091 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,091 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,091 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:04,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,092 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:04,092 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,092 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,092 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,093 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:04,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,093 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:04,093 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,093 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,093 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,094 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:04,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,094 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:04,095 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,095 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,095 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,095 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:04,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,096 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:04,096 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,096 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,096 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,097 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:04,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,097 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:04,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,097 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,098 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:04,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,098 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:04,099 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:04,099 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:04,099 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:04,099 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:04,099 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:04,100 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:04,101 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:04,101 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:04,102 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:04,102 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:04,103 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,103 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:04,106 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 298 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:04,107 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,107 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,109 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,109 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:04,109 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,109 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:04,113 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,113 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:04,113 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,113 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:04,116 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,116 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:04,116 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:04,116 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:04,118 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:04,118 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:04,136 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:04,136 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:04,137 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:04,138 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:04,139 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:04,139 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:04,139 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:04,139 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:04,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,139 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,140 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:04,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,140 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:04,140 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:04,140 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:04,141 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:04,141 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:04,141 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,141 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:04,147 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 298 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:04,148 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,148 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,149 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,150 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:04,150 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,150 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:04,153 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,153 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:04,153 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,153 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:04,160 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,160 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:04,160 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:04,160 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:04,163 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:04,163 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:04,172 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:04,172 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:04,172 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:04,172 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:04,173 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:04,173 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:04,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,173 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,173 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,174 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:04,174 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:04,174 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,175 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:04,180 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 298 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:04,181 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,181 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,183 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,183 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:04,183 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,183 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:04,190 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,190 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:04,191 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:04,191 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:04,195 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:04,195 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:04,195 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:04,196 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:04,200 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:04,201 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:04,213 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:04,214 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:04,214 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:04,214 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:04,214 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:04,214 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:04,215 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:04,215 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:04,215 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:04,215 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:04,215 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:04,216 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:04,216 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,216 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,216 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,217 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:04,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,218 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:04,219 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,219 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,219 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,220 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:04,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,221 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:04,221 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,222 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,222 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,223 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:04,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,224 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:04,224 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:04,224 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:04,225 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:04,225 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,227 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:04,227 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:04,227 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:04,228 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:04,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,228 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,229 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:04,230 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:04,230 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,233 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:04,233 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:04,234 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:04,234 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,234 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,236 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:04,237 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,239 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:04,239 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,239 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,239 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:04,239 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:04,240 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:04,241 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:04,241 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:04,241 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:04,241 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:04,243 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,243 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,245 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,245 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,251 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:04,252 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:04,252 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:04,253 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:04,261 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:04,261 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,261 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,262 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:04,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,263 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:04,263 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,263 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,263 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,263 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:04,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,264 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:04,264 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:35:04,264 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:04,264 [1520] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:10) method ... +01/30/13 11:35:04,265 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:04,265 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,265 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,265 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,265 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:04,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,266 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:04,266 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/30/13 11:35:04,266 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:04,266 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/30/13 11:35:04,267 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:04,267 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,267 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,267 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,267 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:04,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,268 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:04,268 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,268 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,268 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,269 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:04,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,269 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:04,270 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,270 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,270 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,270 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:04,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,271 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:04,271 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,271 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,271 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,272 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:04,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,272 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:04,272 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,272 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,272 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,273 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:04,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,274 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:04,274 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,274 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,274 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,274 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:04,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,275 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:04,275 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,275 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,275 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,276 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:04,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,276 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:04,276 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,276 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,276 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,277 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:04,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,278 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:04,278 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,278 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,278 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,278 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:04,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,279 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:04,279 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,279 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,279 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,280 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:04,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,280 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:04,280 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,280 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,281 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,281 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:04,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,282 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:04,282 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,282 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,282 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,282 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:04,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,283 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:04,283 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,283 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,283 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,284 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:04,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,284 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:04,284 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:04,285 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:04,285 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:04,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,285 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:04,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,285 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:04,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,286 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:04,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,286 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:04,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,286 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:04,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,286 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:04,286 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:04,287 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:04,287 [1520] DEBUG index - Entering updateInfo(2) method ... +01/30/13 11:35:04,287 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:04,287 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,291 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:04,291 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:04,291 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:04,291 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:04,291 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:04,293 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:04,293 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,295 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:35:04,295 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:04,295 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:04,295 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:04,295 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,295 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:04,296 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:04,296 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:04,297 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:04,297 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,299 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:35:04,299 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,300 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,2) method ... +01/30/13 11:35:04,300 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,300 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:04,300 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,301 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:04,301 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:04,302 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,303 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,303 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,303 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,303 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,304 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,305 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:04,305 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:04,309 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,310 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,310 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:04,310 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:04,327 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:04,327 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,328 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:04,328 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:04,328 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:04,331 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:04,331 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,332 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,332 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:04,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:04,332 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:04,332 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:04,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,335 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:04,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,335 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:04,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,335 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:04,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,336 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:04,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,336 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:04,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,336 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:04,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,337 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:04,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,337 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:04,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,337 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:04,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,338 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:04,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,338 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:04,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,338 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:04,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,339 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:04,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,339 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:04,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,339 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:04,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,340 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:04,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,340 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:04,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,340 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:04,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,341 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:04,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,341 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:04,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,341 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:04,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,342 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:04,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,342 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:04,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,342 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:04,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,343 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:04,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,343 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:04,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,343 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:04,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,344 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:04,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,344 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:04,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,344 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:04,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,345 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:04,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,345 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:04,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,345 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:04,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,346 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:04,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,346 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:04,346 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:04,346 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:04,346 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:04,347 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:04,347 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,347 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:04,347 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,347 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:04,348 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,348 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:04,348 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,348 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:04,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,349 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:04,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,349 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:04,350 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,350 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:04,350 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,350 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:04,350 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:35:04,351 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,352 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:04,352 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:04,352 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:04,354 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:04,354 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:04,354 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:04,356 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,356 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,356 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:04,356 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:04,367 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:04,368 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,368 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:04,368 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:04,376 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:04,376 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:04,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,376 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:04,376 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:04,377 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:04,377 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:04,377 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:04,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,377 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:04,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,377 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:04,377 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:04,394 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:04,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,394 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:04,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,396 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:04,396 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:04,396 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:04,2,1] +01/30/13 11:35:04,408 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,408 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,408 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:04,408 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:04,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,417 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,418 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:04,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,418 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:04,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,418 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,419 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,419 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,419 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,419 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,420 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:04,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,420 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:04,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,421 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:04,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,421 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:04,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,421 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:04,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,422 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:04,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,422 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:04,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,422 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:04,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,422 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:04,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,423 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:04,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,423 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:04,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,423 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:04,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,424 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:04,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,424 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:04,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,424 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:04,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,424 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:04,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,425 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:04,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,425 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:04,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,425 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:04,517 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,517 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,517 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,517 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,517 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,517 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:04,518 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:04,520 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:04,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,520 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:04,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,521 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:04,521 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,521 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,521 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,521 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,522 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:04,522 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:04,524 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:04,524 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:04,525 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:04,525 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:04,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,525 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:04,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,525 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:04,525 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:04,533 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:04,534 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,534 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,534 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:04,534 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:04,534 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:04,534 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:04,534 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,534 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:04,535 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,535 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:04,535 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:04,544 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:04,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,545 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,545 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,545 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,545 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,545 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,546 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,546 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,546 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,546 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,546 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,546 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:04,546 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:04,546 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:04,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,547 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:04,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,547 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:04,547 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,552 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:04,552 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,553 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,554 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,554 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,554 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,555 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,556 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:04,556 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:04,557 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:04,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,557 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:04,557 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:04,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:04,558 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:04,558 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:04,587 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,587 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:04,587 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,587 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:04,588 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:04,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:04,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,588 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:04,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:04,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:04,588 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:04,589 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:04,589 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:04,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,607 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:07,744 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:07,744 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:07,744 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:07,745 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:07,745 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:35:07,745 [1520] INFO index - About to take action index +01/30/13 11:35:07,745 [1520] DEBUG index - in index +01/30/13 11:35:07,745 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:35:07,745 [1520] INFO index - current module is Accounts +01/30/13 11:35:07,779 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:07,779 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:07,779 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:07,779 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:07,780 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,780 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:07,780 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,780 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:07,780 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:07,794 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:07,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,794 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:07,794 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:07,795 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:07,795 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:07,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,796 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:07,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,796 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:07,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,797 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:07,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,797 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:07,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,798 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:07,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,799 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:07,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,799 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:07,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,800 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:07,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,800 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:07,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,801 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:07,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,801 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:07,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,802 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:07,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,802 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:07,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,802 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:07,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,803 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:07,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,803 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:07,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,804 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:07,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,804 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:07,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,805 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:07,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,805 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:07,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,806 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:07,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,806 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:07,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,807 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:07,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,807 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:07,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,808 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:07,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,808 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:07,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,809 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:07,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,809 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:07,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,810 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:07,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,810 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:07,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,811 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:07,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,811 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:07,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,812 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:07,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,812 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:07,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,813 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,813 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,814 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,814 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,815 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,815 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,815 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,816 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,816 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,817 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,817 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,818 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:07,818 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:07,821 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:07,822 [1520] DEBUG index - Prepared sql query parameters : [299,1,Accounts,index,,2013-01-30 11:35:07] +01/30/13 11:35:07,828 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:07,828 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:07,828 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:07,829 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:07,830 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:07,830 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:07,832 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:07,832 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:07,834 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:07,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:07,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,835 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:07,835 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:07,835 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:07,835 [1520] DEBUG index - including headers +01/30/13 11:35:07,835 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:07,836 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:07,839 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:07,839 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:07,841 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:07,842 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:07,842 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,842 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:07,842 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,842 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:07,843 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,843 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:07,843 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,843 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:07,844 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,844 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:07,844 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,844 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:07,844 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,845 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:07,845 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:07,845 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:07,845 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:07,845 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:07,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:07,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,854 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:07,854 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:07,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:07,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,855 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:07,855 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:07,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:07,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,857 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:07,857 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:07,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:07,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,858 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:07,858 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:07,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,859 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:07,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,859 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:07,859 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:07,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:07,860 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,861 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:07,861 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:07,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:07,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,862 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:07,862 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:07,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:07,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,863 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:07,863 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:07,863 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,863 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:07,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,864 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:07,864 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:07,865 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:07,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,865 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:07,865 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:07,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:07,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,866 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:07,867 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:07,867 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,867 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:07,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,868 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:07,868 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:07,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:07,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,869 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:07,869 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:07,869 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:07,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,870 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:07,870 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:07,870 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,871 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:07,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,871 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:07,871 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:07,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,872 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:07,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,872 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:07,872 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:07,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,873 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:07,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,874 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:07,874 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:07,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:07,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,875 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:07,875 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:07,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:07,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,876 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:07,876 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:07,876 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:07) method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:07) method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:07,877 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:07,878 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:07,878 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:07,878 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:07,878 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:07,879 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:07,879 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:07,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,890 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,891 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,891 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,891 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,891 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:07,895 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:07,895 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,895 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:07,895 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:07,900 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:07,900 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,901 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:07,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,902 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:07,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,902 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:07,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,903 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,904 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,905 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,906 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:07,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,907 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:07,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,907 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:07,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,908 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:07,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,908 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,909 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:07,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,911 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:07,911 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,911 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:07,911 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:07,911 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:07,920 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:07,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,921 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:07,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,921 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:07,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,922 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:07,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,922 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:35:07,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,923 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:07,923 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:07,925 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:07,925 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,926 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:07,926 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:07,936 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:07,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:07,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,943 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:07,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:07,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,943 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:07,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:07,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,944 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:07,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:07,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,944 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:07,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:07,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,944 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:07,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:07,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,944 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:07,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:07,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,945 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:07,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:07,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,945 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:07,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:07,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,946 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:07,946 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:07,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,946 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:07,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:07,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,947 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:07,949 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:07,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,949 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:07,949 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:07,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,950 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:07,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:07,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,950 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:07,950 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:07,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,951 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:07,951 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:07,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,952 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:07,952 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:07,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,952 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:07,952 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:07,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,952 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:07,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:07,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,953 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:07,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:07,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,954 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:07,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:07,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,954 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:07,954 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:07,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,954 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:07,954 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:07,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,955 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:07,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,955 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:07,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,955 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:07,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,956 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:07,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,956 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:07,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:07,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,956 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:07,956 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:07,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,957 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:07,957 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:07,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,957 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:07,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:07,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,957 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:07,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:07,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,958 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:07,958 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:07,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,959 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:07,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:07,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,960 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:07,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:07,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:07,960 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:07,960 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:07,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:07,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:07,965 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:07,966 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:07,966 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:07,966 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:07,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,967 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:07,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,967 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:07,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,968 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:07,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,968 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:07,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,969 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:07,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,969 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:07,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,970 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:07,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,970 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:07,970 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:07,970 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:07,970 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:07,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,971 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:07,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,971 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:07,971 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:07,981 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:07,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,981 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:07,981 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:35:07,981 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:07,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:07,981 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:35:07,981 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:35:07,984 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:35:07,985 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:07,985 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,985 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:07,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,986 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:07,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,986 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:07,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:07,987 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:35:07,987 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:35:07,987 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:35:07,987 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:35:07,987 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:07,987 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:35:07,988 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:07,988 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:07,988 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:07,988 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:07,990 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:07,990 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:07,993 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:07,993 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:07,995 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:07,995 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:35:07,995 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:35:07,996 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:07,996 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:07,997 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:07,998 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:07,998 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:07,998 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:07,1000 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:07,1000 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:07,1000 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:07,1000 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:08,000 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:08,000 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:08,000 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:35:08,000 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,000 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:08,003 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,003 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,003 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,004 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,004 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,005 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:35:08,005 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:08,005 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,007 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:08,007 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:08,007 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:35:08,007 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,007 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:35:08,008 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,010 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,011 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:35:08,011 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,013 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:35:08,013 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:35:08,014 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:35:08,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,015 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:35:08,015 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:35:08,015 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:35:08,016 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:08,016 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:08,016 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:35:08,016 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:35:08,016 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:08,016 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:08,016 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:35:08,016 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,017 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:08,017 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,020 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,021 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,021 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:08,021 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:08,023 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,024 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:08,024 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:08,028 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:08,029 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:08,045 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:35:08,049 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:35:08,049 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:35:08,051 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:08,051 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:08,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:08,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,054 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,055 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:08,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,057 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,058 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:08,059 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:35:08,062 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:08,062 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,063 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:35:08,067 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:08,068 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:08,126 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,126 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:35:08,128 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,128 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:35:08,130 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,130 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:35:08,132 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,132 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:35:08,134 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:08,135 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:35:08,229 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,229 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:35:08,231 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,231 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:35:08,233 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,233 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:35:08,235 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,235 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:35:08,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,238 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:35:08,240 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,240 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:35:08,247 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,247 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:35:08,249 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,249 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:35:08,251 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,251 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:35:08,254 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:08,254 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:35:08,314 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,315 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:35:08,317 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,317 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:35:08,319 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,319 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:35:08,321 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,321 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:35:08,323 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:35:08,324 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:08,326 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,326 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:35:08,340 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,341 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:35:08,344 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:08,344 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:35:08,396 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,396 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:35:08,399 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,399 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:35:08,404 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,404 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:35:08,406 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,406 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:35:08,408 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,408 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:35:08,410 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,410 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:35:08,412 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,413 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:35:08,415 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,415 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:35:08,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,418 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:35:08,420 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,420 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:35:08,422 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,423 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:35:08,425 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:08,425 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:35:08,428 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:08,432 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:08,432 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:08,436 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:08,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:08,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,437 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:08,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:08,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,438 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:08,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:08,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,438 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:08,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:08,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,438 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:08,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:08,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,438 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:08,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:08,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,439 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:35:08,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:08,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,439 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:08,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:08,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,439 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:35:08,439 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:08,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,440 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:08,440 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:08,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,440 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:08,440 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:08,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,440 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:08,440 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:08,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,440 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:35:08,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:08,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,441 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:08,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:08,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,441 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:35:08,441 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:08,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,441 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:08,441 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:08,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,442 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:08,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:08,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,442 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:08,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:08,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,442 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:08,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:08,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,443 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,443 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,443 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,443 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,443 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,444 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,444 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,444 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:08,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:08,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,445 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,445 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,445 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:08,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:08,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,445 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,446 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,446 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:08,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,446 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:35:08,446 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,447 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,447 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,447 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:35:08,447 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:08,447 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,448 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:08,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,449 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:35:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:08,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,449 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:35:08,449 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,450 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,450 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:35:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,450 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:35:08,450 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:08,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,451 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,451 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,451 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:08,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,451 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:08,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,452 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,452 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:35:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,452 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:08,452 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:08,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,452 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,453 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,453 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:08,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,453 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:08,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,454 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,454 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,454 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:08,454 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:08,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,454 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:35:08,455 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:08,455 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:08,516 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:35:08,516 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:35:08,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:08,519 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:08,520 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:35:08,520 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,526 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:35:08,527 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,543 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:35:08,543 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,546 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:08,546 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:08,549 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:08,549 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:08,549 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:08,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:08,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,550 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,550 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:08,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:08,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,551 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:08,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,551 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:08,551 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:08,553 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:35:08,554 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:08,556 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,556 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,556 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,557 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,557 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,557 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,557 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,558 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,558 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,558 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,558 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,558 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,559 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,559 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,559 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,559 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,560 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,560 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,560 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,560 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,560 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,561 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,561 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,561 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,561 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,562 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,562 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,562 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,562 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,563 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,564 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,564 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,564 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:35:08,568 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:35:08,575 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,576 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,576 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,577 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,578 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,579 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,581 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,582 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:08,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,582 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:08,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,583 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:08,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,583 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,584 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:08,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,584 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:08,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,585 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:08,585 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,586 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,586 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:35:08,587 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:08,587 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:08,588 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:08,590 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:35:08,590 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5] +01/30/13 11:35:08,592 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:08,593 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,593 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:08,593 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:08,595 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,595 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,595 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,596 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,596 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,596 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,596 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,597 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,597 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,597 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,597 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,598 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,598 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,598 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,599 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,599 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,600 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,600 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,600 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,601 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,602 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,602 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,602 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,603 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,603 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,603 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,603 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,603 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,604 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,604 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,604 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,605 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,605 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,605 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,605 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,605 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,606 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,610 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,610 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,610 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,610 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,611 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,611 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,611 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:08,613 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,613 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,613 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,614 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,614 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,614 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,615 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,616 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,616 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,616 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,617 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,617 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,617 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,617 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,618 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,619 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,619 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,619 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,619 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,620 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,620 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,621 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,621 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,621 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,622 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,622 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,622 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,622 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,623 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,623 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,623 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,627 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,627 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,627 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,627 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,627 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,627 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,627 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:08,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,629 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,630 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,630 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,630 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,631 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,631 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,631 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,631 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,632 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,633 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,633 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,633 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,633 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,634 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,634 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,635 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,635 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,635 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,635 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,636 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,636 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,636 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,637 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,637 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,638 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,638 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,638 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,639 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,642 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,642 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,642 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,643 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,643 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,643 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,643 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,645 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,645 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,645 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,646 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,646 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,646 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,646 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,647 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,647 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,647 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,648 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,648 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,648 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,648 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,649 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,649 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,649 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,650 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,650 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,650 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,650 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,651 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,651 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,651 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,651 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,652 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,653 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,653 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,654 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,654 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,654 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,654 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,654 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,655 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,658 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,658 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,658 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,659 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,659 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,659 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,659 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:08,661 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,661 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,661 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,662 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,662 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,662 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,662 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,663 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,663 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,663 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,663 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,664 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,664 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,664 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,665 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,665 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,665 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,666 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,666 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,666 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,666 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,667 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,667 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,667 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,667 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,668 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,668 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,668 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,668 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,669 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,669 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,669 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,670 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,670 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,671 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,674 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,674 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,674 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,674 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,674 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,675 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,675 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,675 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:08,677 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,677 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,677 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,678 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,678 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,678 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,678 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,679 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,679 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,679 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,679 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,679 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,680 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,680 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,680 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,680 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,681 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,681 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,681 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,682 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,682 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,682 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,683 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,683 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,683 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,684 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,684 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,685 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,685 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,685 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,686 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,686 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,686 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,686 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,687 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,690 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,690 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,690 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,690 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,690 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,690 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,691 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:35:08,693 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,693 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,693 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,694 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,694 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,694 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,694 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,695 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,695 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,695 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,695 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,695 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,696 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,696 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,697 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,697 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,697 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,698 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,698 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,698 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,699 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,699 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,700 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,701 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,701 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,701 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,701 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,702 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,702 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,702 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,706 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,706 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,706 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,706 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,706 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,706 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,707 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:35:08,709 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,709 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,709 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,710 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,710 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,710 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,710 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,711 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,711 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,711 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,711 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,712 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,712 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,712 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,713 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,713 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,713 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,714 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,714 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,714 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,714 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,715 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,715 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,715 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,716 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,717 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,717 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,717 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,718 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,718 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,718 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,719 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,722 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,722 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,722 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,722 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,723 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,723 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,723 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:35:08,726 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,726 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,726 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,727 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,727 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,727 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,728 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,728 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,728 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,728 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,729 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,729 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,730 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,730 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,730 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,731 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,731 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,731 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,731 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,732 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,732 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,732 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,732 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,733 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,733 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,733 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,733 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,734 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,734 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,734 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,735 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,735 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,735 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,736 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,739 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,739 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,739 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,739 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,739 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,740 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,740 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:35:08,742 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,742 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,742 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,743 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,743 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,743 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,743 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,744 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,744 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,745 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,745 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,746 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,746 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,746 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,747 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,747 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,747 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,748 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,748 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,748 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,748 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,749 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,749 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,749 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,749 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,750 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,750 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,750 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,751 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,751 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,751 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,751 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,752 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,755 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,755 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,755 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,755 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,755 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,756 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,756 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:08,774 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,774 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,774 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,775 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,775 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,775 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,775 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,776 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,776 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,776 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,777 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,777 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,777 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,778 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,778 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,779 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,779 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,779 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,779 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,780 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,780 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,780 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,781 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,782 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,783 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:08,783 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:08,783 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,783 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:08,783 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:08,783 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:08,784 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:08,787 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:08,787 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:08,788 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,788 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:08,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,788 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:08,788 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:08,788 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:08,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,791 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:08,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,791 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:08,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,791 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:08,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,791 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:08,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,792 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:08,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,792 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:08,792 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:35:08,792 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:35:08,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,793 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:08,793 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,793 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,798 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,799 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:08,799 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,799 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,801 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,801 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:08,801 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,801 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,803 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,804 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:08,804 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,804 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,805 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,806 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:08,806 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,806 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,808 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,808 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:08,808 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,808 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,810 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,810 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:08,810 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,810 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,811 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,812 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:08,812 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,812 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,813 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,814 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:08,814 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,814 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,815 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,815 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:08,816 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,816 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,817 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,817 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:08,818 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,818 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,819 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,819 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:08,819 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,819 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,821 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,821 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:08,821 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,821 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,823 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,823 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:08,823 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,823 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,825 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,825 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:08,825 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,825 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,827 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,827 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:08,827 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,827 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,829 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,829 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:08,829 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,829 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,831 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,831 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:08,831 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,832 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,833 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,833 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:08,834 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,834 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,835 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,836 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:08,836 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,836 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,838 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,838 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:08,838 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,838 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,840 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,840 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:08,841 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,841 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,858 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,859 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:08,859 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,859 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:08,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,865 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:08,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,865 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:08,865 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,865 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,867 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,868 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:08,868 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,868 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,874 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,874 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:08,874 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,874 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,877 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,877 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:08,877 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,877 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,879 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,879 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:08,879 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,880 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,881 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,881 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:08,882 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,882 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,885 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,885 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:08,885 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,886 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,887 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,887 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:08,888 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,888 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,889 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,889 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,889 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,890 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:08,890 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,890 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,892 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,892 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:08,892 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,892 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,893 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,894 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:08,894 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,894 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,895 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,895 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:08,895 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,896 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:08,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,899 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:08,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,899 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:08,899 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:08,900 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:35:08,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,902 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:08,903 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:35:08,903 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:35:08,903 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,903 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:35:08,903 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:35:08,903 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:35:08,906 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:35:08,906 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:35:08,906 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:35:08,906 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:08,908 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:35:08,908 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:35:08,908 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:35:08,908 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,908 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:35:08,908 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:35:08,925 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:35:08,925 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:35:08,925 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,929 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:08,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,929 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:08,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,930 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:08,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,930 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:08,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,931 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:08,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,932 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:08,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,932 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:08,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,932 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:08,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,933 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:08,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,933 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:08,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,933 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:08,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,934 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:08,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,934 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:08,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,934 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:08,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,935 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:08,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,935 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:08,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,935 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:08,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,935 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:08,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,936 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:08,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,936 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:08,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,936 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:08,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,937 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:08,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,937 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:08,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,937 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:08,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,938 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:08,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,938 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:08,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,938 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:08,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,939 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:08,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,939 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:08,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,939 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:08,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,939 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:08,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,940 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:08,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,940 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:08,940 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,940 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:35:08,940 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:35:08,942 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:35:08,943 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:35:08,943 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:35:08,943 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:35:08,943 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:35:08,943 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:35:08,943 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:08,949 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:08,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:08,949 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:35:08,949 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:35:08,953 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:08,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:08,954 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:08,954 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:08,954 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:08,955 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:08,956 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:08,956 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:08,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,959 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,959 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:35:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,959 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:35:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,959 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,960 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,960 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,960 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,961 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,961 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,961 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,962 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,964 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:35:08,964 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:35:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,964 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:35:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,964 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:35:08,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,965 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:35:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,965 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:35:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,965 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:35:08,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,966 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:35:08,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,966 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:35:08,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,966 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:35:08,970 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:08,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,970 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:08,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,971 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,971 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:08,972 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:08,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:08,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,972 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:08,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:08,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:08,972 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:35:09,021 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:09,021 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:09,022 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:10,811 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:10,937 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:10,937 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:10,938 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:10,938 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:10,938 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '138', +) +01/30/13 11:35:10,938 [1520] INFO index - About to take action DetailView +01/30/13 11:35:10,939 [1520] DEBUG index - in DetailView +01/30/13 11:35:10,939 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:10,939 [1520] INFO index - current module is Accounts +01/30/13 11:35:10,974 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:10,974 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:10,974 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:10,974 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:10,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:10,975 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:10,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:10,975 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:10,975 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:10,989 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:10,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:10,989 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:10,989 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:10,989 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:10,990 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:10,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,990 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:10,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,991 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:10,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,991 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:10,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,992 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:10,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,992 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:10,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,993 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:10,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,993 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:10,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,994 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:10,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,994 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:10,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,995 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:10,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:10,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,996 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:10,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,996 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:10,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,997 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:10,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,997 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:10,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,998 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:10,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,998 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:10,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,999 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:10,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,999 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:10,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:10,1000 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:11,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,000 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,001 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:11,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,002 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:11,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,002 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:11,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,003 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:11,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,003 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:11,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,004 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:11,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,004 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:11,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,005 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:11,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,005 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:11,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,006 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:11,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,006 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:11,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,007 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:11,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,007 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:11,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,008 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:11,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,008 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:11,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,009 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:11,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,009 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:11,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,010 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:11,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,010 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:11,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,011 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:11,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,011 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:11,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,012 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:11,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,012 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:11,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,013 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:11,016 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:11,016 [1520] DEBUG index - Prepared sql query parameters : [300,1,Accounts,DetailView,138,2013-01-30 11:35:11] +01/30/13 11:35:11,036 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:11,036 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:11,036 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:11,036 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:11,038 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:11,038 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:11,040 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:11,040 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:11,041 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:11,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,042 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,042 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,043 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,043 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,043 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,043 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:11,043 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:11,051 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,051 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,051 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,052 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:11,052 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:11,052 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:35:11,055 [1520] INFO index - in track view method Accounts +01/30/13 11:35:11,056 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,056 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:11,058 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:11,058 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,059 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:11,059 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:11,059 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:35:11,064 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:11,064 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:11,066 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:35:11,066 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:11,066 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:11,066 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:11,066 [1520] DEBUG index - including headers +01/30/13 11:35:11,067 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:11,067 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:11,070 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,070 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,072 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:11,072 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:11,072 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,076 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:11,076 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:11,076 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:11,077 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,077 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:11,077 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,077 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:11,078 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,078 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:11,078 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,078 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:11,078 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,079 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:11,079 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,079 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:11,079 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,079 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:11,080 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:11,080 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:11,080 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:11,080 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:11,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,094 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:11,094 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:11,094 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:11,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,095 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:11,095 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:11,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:11,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,096 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:11,096 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:11,097 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:11,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,098 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:11,098 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:11,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,099 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:11,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,099 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:11,099 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:11,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:11,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,100 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:11,100 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:11,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:11,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,101 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:11,101 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:11,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:11,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,102 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:11,103 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:11,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,103 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:11,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,104 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:11,104 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:11,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:11,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,105 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:11,105 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:11,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:11,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,106 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:11,106 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:11,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,107 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:11,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,108 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:11,108 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:11,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:11,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,109 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:11,109 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:11,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:11,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,110 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:11,110 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:11,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,110 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:11,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,111 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:11,111 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:11,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,112 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:11,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,112 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:11,112 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:11,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,113 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:11,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,114 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:11,114 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:11,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:11,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:11,115 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:11,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:11,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,116 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:11,116 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:11,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,116 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:11,116 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:11) method ... +01/30/13 11:35:11,117 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:11,117 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:11) method ... +01/30/13 11:35:11,117 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:11,117 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:11,117 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:11,118 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:11,118 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:11,119 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:11,122 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,122 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,126 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,131 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:11,135 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:11,136 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:11,136 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,142 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:11,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,142 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:11,142 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,143 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,144 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,145 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,146 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:11,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,147 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:11,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,147 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:11,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,148 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:11,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,148 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:11,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,149 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:11,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,149 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,150 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:11,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,151 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:11,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,151 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:11,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,152 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:11,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,152 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:11,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,152 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:11,152 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:11,152 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,156 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:11,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,157 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:11,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,157 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:11,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,158 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:11,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,158 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:35:11,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,159 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:11,159 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:11,161 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:11,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,161 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:11,161 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:11,164 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:11,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,170 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:11,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,170 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:11,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:11,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,171 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:11,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,171 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:11,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,171 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:11,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:11,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,171 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:11,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:11,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,172 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:11,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:11,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,172 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:11,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:11,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,173 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:11,173 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:11,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,173 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:11,173 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:11,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,174 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:11,176 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:11,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,176 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:11,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:11,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,177 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:11,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:11,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,177 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:11,178 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:11,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,178 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:11,178 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:11,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,179 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:11,179 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:11,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,179 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:11,179 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:11,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,179 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:11,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:11,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,180 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:11,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:11,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,181 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:11,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:11,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,181 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:11,181 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:11,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,181 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:11,181 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:11,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,182 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:11,182 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:11,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,182 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:11,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:11,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,182 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:11,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:11,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,183 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:11,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:11,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,183 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:11,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:11,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,183 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:11,184 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:11,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,184 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:11,184 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:11,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,184 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:11,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:11,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,185 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:11,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:11,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,185 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:11,186 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:11,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,186 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:11,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:11,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,187 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:11,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,187 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:11,188 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:11,188 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,190 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,190 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,190 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,190 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,190 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:11,191 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,199 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:11,199 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,203 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:11,203 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,205 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:11,205 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,206 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:11,206 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,209 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,211 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:11,211 [1520] DEBUG index - id is 138 +01/30/13 11:35:11,211 [1520] DEBUG index - name is OSSEZ +01/30/13 11:35:11,211 [1520] INFO index - Account detail view +01/30/13 11:35:11,211 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:11,211 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,212 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:11,212 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:11,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,214 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:11,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,214 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:11,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,215 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:11,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,215 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:11,215 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:11,215 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:11,226 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:11,226 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:11,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,227 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:11,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,227 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,228 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,228 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:11,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,228 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,229 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:11,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,230 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:11,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,230 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,230 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:11,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,231 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:11,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,231 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,232 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,232 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:11,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,232 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,233 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:11,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,234 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:11,234 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,234 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,234 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,234 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:11,235 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:35:11,235 [1520] INFO index - in getAccountName 8 +01/30/13 11:35:11,235 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:11,235 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:11,237 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:11,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,237 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:11,237 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,237 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,237 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,238 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:11,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,238 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:11,238 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,238 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,239 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,239 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:11,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,240 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:11,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,240 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,240 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:11,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,241 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:11,241 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,241 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,241 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,242 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:11,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,242 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:11,243 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,243 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,243 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,243 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:11,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,244 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:11,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,244 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,245 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:11,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,245 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:11,245 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:11,245 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:11,245 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:11,246 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:11,246 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:11,251 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:11,251 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:11,251 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:11,256 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:11,256 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:11,256 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,256 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:11,260 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 300 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:11,261 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,261 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,263 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,263 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:11,263 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,263 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:11,267 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,267 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:11,267 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,267 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:11,270 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,270 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:11,270 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:11,270 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:11,273 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:11,273 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:11,293 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:11,293 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:11,293 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:11,293 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:11,293 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:11,294 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:11,295 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:11,295 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,296 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,296 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,296 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,297 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:11,297 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:11,297 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,297 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:11,301 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 300 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:11,302 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,302 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,304 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,304 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:11,304 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,304 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:11,308 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,308 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:11,308 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,308 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:11,312 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,312 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:11,312 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:11,312 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:11,314 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:11,314 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:11,332 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:11,333 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:11,333 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:11,333 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:11,333 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:11,333 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:11,333 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,333 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,333 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,334 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:11,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,334 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:11,334 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:11,335 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:11,335 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:11,335 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:11,335 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,335 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:11,338 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 300 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:11,339 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,339 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,343 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,343 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:11,343 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,344 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:11,347 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,347 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:11,348 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:11,348 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:11,351 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:11,351 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:11,351 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:11,352 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:11,353 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:11,353 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:11,366 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:11,367 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:11,367 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:11,367 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:11,367 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,367 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,367 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,368 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:11,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,368 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:11,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,368 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,369 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:11,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,370 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:11,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,370 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,370 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:11,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,371 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:11,371 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:11,371 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:11,371 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:11,372 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:11,374 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,374 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,375 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:11,375 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:11,375 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:11,377 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:35:11,377 [1520] INFO index - in getOwnerName 5 +01/30/13 11:35:11,377 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:11,377 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,377 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,380 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:11,380 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:11,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,382 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:11,382 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,382 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,382 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:11,382 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:11,384 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:11,384 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:11,384 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:11,384 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:11,384 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:11,386 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,387 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,388 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,388 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,390 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:11,390 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:11,390 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:11,390 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:11,390 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:11,390 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:11,390 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:11,391 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:11,391 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:11,394 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:11,394 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,395 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,396 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:11,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,396 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:11,396 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,396 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,396 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,397 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:11,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,398 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:11,398 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:11,398 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:11,398 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:11,398 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:11,398 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,398 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,399 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,399 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:11,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,400 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:11,400 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:11,400 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:11,400 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:11,400 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:11,400 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,401 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,401 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,401 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:11,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,402 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:11,402 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,402 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,402 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,403 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:11,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,403 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:11,403 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,403 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,403 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,404 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:11,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,405 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:11,405 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,405 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,405 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,405 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:11,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,406 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:11,406 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,406 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,406 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,407 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:11,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,407 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:11,407 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,407 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,408 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,408 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:11,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,409 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:11,409 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,409 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,409 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,409 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:11,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,410 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:11,410 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,410 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,410 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,411 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:11,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,411 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:11,411 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,412 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,412 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:11,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,413 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:11,413 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,413 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,413 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,413 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:11,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,414 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:11,414 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,414 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,414 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,415 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:11,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,415 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:11,416 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,416 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,416 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,416 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:11,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,417 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:11,417 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,417 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,417 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,418 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:11,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,418 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:11,418 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:11,418 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:11,418 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:11,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,419 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:11,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,419 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:11,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,419 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:11,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,420 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:11,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,420 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:11,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,420 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:11,420 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:11,420 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:11,421 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:35:11,421 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:11,421 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,423 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:11,423 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:11,423 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:11,423 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:11,423 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:11,426 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:11,426 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,427 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:11,428 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:11,428 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:11,428 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:11,430 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:11,430 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,431 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:11,432 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,432 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:35:11,432 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,432 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:11,433 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,433 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:11,433 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:11,435 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,435 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,435 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,435 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:11,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,437 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:11,438 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:11,442 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,442 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,443 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:11,443 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:11,459 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:11,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,460 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:11,460 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:11,460 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:11,462 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:11,462 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,462 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:11,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,463 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:11,463 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:11,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,467 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:11,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,467 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:11,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,467 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:11,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,467 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:11,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,468 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:11,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,468 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:11,468 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,468 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,468 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:11,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,469 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:11,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,469 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:11,469 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,469 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,469 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:11,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,470 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:11,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,470 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:11,470 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,470 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,470 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:11,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,471 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:11,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,471 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:11,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,471 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,471 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:11,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,472 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:11,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,472 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:11,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,472 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:11,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,473 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:11,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,473 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:11,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,473 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:11,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,474 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:11,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,474 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:11,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,474 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:11,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,475 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:11,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,475 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:11,475 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,475 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,475 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:11,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,476 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:11,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,476 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:11,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,476 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:11,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,477 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:11,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,477 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:11,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,477 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:11,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,478 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:11,478 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:11,478 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:11,478 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:11,478 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:11,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,479 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:11,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,479 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:11,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,480 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:11,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,480 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:11,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,481 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:11,481 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,481 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:11,481 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,482 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:11,482 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,482 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:11,482 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:11,483 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,483 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:11,484 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:11,484 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:11,485 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:11,485 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:11,485 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:11,486 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,486 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,486 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,486 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,486 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,486 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,487 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,487 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/30/13 11:35:11,497 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,497 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:11,497 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:11,500 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:11,500 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,500 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:11,500 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:11,502 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:11,502 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:11,502 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,502 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:11,502 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,503 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:11,503 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:11,503 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:11,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,503 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:11,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,503 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:11,503 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:11,513 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:11,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,513 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:11,513 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,514 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:11,515 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:11,515 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:11,138,1] +01/30/13 11:35:11,517 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,517 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,517 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:11,517 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:11,526 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,526 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,527 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,527 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:11,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,527 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:11,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,528 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,528 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,528 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,528 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,529 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,529 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:11,529 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,529 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,529 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:11,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,530 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:11,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,530 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:11,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,531 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:11,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,531 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:11,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,531 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:11,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,532 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:11,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,532 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:11,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,532 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:11,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,532 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,532 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:11,532 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,533 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:11,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,533 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:11,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,533 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:11,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,533 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:11,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,534 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:11,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,534 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:11,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,534 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:11,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,535 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:11,625 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,625 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,625 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,625 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,625 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:11,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:11,628 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:11,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,628 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:11,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,628 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:11,629 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,629 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,629 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,629 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,629 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,629 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:11,629 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:11,634 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:11,634 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:11,634 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:11,634 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:11,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,634 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:11,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,634 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:11,634 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:11,642 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:11,642 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,642 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,642 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:11,643 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:11,643 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:11,643 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:11,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,643 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:11,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,643 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:11,643 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:11,666 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:11,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,666 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,666 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,666 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,666 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,667 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,667 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,667 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,667 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,667 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,667 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:11,668 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:11,668 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:11,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,668 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:11,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,668 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:11,668 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:11,677 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:11,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,679 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,679 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,679 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,681 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:11,681 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:11,681 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:11,681 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,681 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:11,682 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:11,682 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:11,682 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:11,682 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:11,711 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:11,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,712 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:11,712 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:11,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,713 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:11,713 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:11,713 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:11,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,714 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:11,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:11,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:11,714 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:11,715 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:11,715 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:11,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,371 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:14,502 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:14,502 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:14,502 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:14,503 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:14,503 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'viewtype' => '', + 'action' => 'DetailView', + 'record' => '20', + 'parenttab' => 'Marketing', + 'start' => '1', +) +01/30/13 11:35:14,503 [1520] INFO index - About to take action DetailView +01/30/13 11:35:14,503 [1520] DEBUG index - in DetailView +01/30/13 11:35:14,503 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:14,503 [1520] INFO index - current module is Accounts +01/30/13 11:35:14,537 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:14,537 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:14,537 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:14,537 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:14,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,537 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:14,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,538 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:14,538 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:14,548 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:14,549 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,549 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:14,549 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:14,549 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:14,550 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:14,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,550 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:14,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,551 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:14,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,551 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:14,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,552 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:14,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,552 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:14,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,553 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:14,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,553 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:14,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,554 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:14,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,554 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:14,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,555 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:14,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,555 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:14,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,556 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:14,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,556 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:14,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,557 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:14,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,558 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:14,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,558 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:14,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,559 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:14,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,559 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:14,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,560 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:14,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,560 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:14,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,560 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:14,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,561 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:14,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,561 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:14,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,562 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:14,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,562 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:14,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,563 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:14,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,563 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:14,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,564 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:14,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,564 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:14,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,565 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:14,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,565 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:14,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,566 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:14,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,566 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:14,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,567 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:14,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,567 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:14,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,568 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:14,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,568 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:14,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,568 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:14,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,569 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:14,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,569 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:14,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,570 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:14,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,570 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:14,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,571 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:14,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,571 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:14,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,572 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:14,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,572 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:14,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:14,573 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:14,578 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:14,578 [1520] DEBUG index - Prepared sql query parameters : [301,1,Accounts,DetailView,20,2013-01-30 11:35:14] +01/30/13 11:35:14,594 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:14,594 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:14,594 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:14,594 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:14,596 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:14,596 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:14,598 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:14,598 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:14,600 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:14,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,601 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:14,601 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:14,601 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,601 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,601 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,601 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:14,601 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:14,611 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:14,611 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:14,611 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:14,611 [1520] DEBUG index - Prepared sql query parameters : [1,20] +01/30/13 11:35:14,615 [1520] INFO index - in track view method Accounts +01/30/13 11:35:14,615 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,616 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:14,620 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:14,620 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,622 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:14,622 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:14,622 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,20,samplevtiger] +01/30/13 11:35:14,628 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:14,629 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:14,630 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:35:14,630 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:35:14,630 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:35:14,631 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:35:14,632 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:35:14,632 [1520] DEBUG index - Prepared sql query parameters : [84] +01/30/13 11:35:14,634 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:14,634 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:14,634 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:14,634 [1520] DEBUG index - including headers +01/30/13 11:35:14,634 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:14,635 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:14,638 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,638 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,640 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:14,640 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:14,640 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:14,642 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:14,642 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:14,643 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:14,643 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,644 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:14,644 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,644 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:14,644 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,644 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:14,645 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,645 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:14,645 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,645 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:14,646 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:14,647 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:14,647 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:14,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,655 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:14,655 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:14,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:14,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,656 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:14,656 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:14,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:14,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,658 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:14,658 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:14,658 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:14,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,659 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:14,659 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:14,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,660 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:14,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,660 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:14,661 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:14,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:14,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,662 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:14,662 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:14,662 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:14,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,663 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:14,663 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:14,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:14,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,664 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:14,664 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:14,664 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,664 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:14,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,665 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:14,665 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:14,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:14,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,666 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:14,666 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:14,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:14,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,667 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:14,668 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:14,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,668 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:14,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,669 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:14,669 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:14,669 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:14,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,670 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:14,670 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:14,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:14,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,671 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:14,671 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:14,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,671 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:14,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,672 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:14,672 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:14,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,673 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:14,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,673 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:14,673 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:14,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,674 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:14,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,675 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:14,675 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:14,675 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:14,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,676 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:14,676 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:14,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:14,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,677 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:14,677 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:14,677 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,677 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:14,677 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:14) method ... +01/30/13 11:35:14,678 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:14,678 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:14) method ... +01/30/13 11:35:14,678 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:14,678 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:14,678 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:14,679 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:14,680 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:14,680 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:14,689 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,689 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,689 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,689 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,698 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,698 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,698 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:14,702 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:14,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,702 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:14,702 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:14,704 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,704 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,704 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:14,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,705 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:14,705 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,705 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:14,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,705 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:14,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:14,707 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,708 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:14,709 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,709 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:14,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,709 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:14,709 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,710 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:14,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,710 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:14,710 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,710 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:14,711 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,711 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:14,711 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,711 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,712 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,713 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,714 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:14,715 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,715 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:14,715 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:14,715 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:14,720 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:14,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,720 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:14,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,721 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:14,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,722 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:14,722 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,722 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:14,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,723 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:14,723 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:14,725 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:14,725 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,725 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:14,725 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:14,730 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:14,738 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,739 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:14,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:14,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,739 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:14,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:14,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,740 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:14,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,740 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:14,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:14,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,740 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:14,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:14,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,740 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:14,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:14,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,741 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:14,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:14,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,741 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:14,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:14,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,742 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:14,742 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:14,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,742 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:14,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:14,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,743 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:14,745 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:14,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,745 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:14,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:14,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,746 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:14,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:14,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,746 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:14,747 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:14,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,747 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:14,747 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:14,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,748 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:14,748 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:14,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,748 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:14,748 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:14,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,749 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:14,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:14,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,749 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:14,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:14,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,750 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:14,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:14,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,750 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:14,751 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:14,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,751 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:14,751 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:14,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,751 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:14,751 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:14,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,751 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:14,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:14,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,752 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:14,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:14,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,752 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:14,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:14,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,753 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:14,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:14,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,753 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:14,753 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:14,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,754 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:14,754 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:14,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,754 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:14,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:14,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,754 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:14,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:14,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,755 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:14,755 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:14,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,756 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:14,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:14,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,756 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:14,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,757 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:14,757 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:14,757 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:14,760 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:14,760 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:14,760 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,760 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:14,760 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:14,760 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,763 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:14,763 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,766 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:14,766 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,767 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:14,767 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,770 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:14,770 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:14,772 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,773 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:14,774 [1520] DEBUG index - id is 20 +01/30/13 11:35:14,774 [1520] DEBUG index - name is samplevtiger +01/30/13 11:35:14,774 [1520] INFO index - Account detail view +01/30/13 11:35:14,774 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:14,774 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:14,774 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:14,774 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:14,774 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:14,776 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,777 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:14,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,777 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:14,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,777 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:14,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,778 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:14,778 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:14,778 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:14,788 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:14,789 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:14,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,789 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:14,789 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,789 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,789 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,790 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:14,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,790 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:14,791 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,791 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,791 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,791 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:14,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,792 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:14,792 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,792 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,792 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,793 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:14,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,793 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:14,793 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,793 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,793 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,794 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:14,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,795 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:14,795 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,795 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,795 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,795 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:14,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,796 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:14,796 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,796 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,796 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,797 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:14,797 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:35:14,797 [1520] INFO index - in getAccountName 0 +01/30/13 11:35:14,797 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:14,797 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:35:14,799 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:14,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,799 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:14,799 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,799 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,800 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:14,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,800 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:14,801 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,801 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,801 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,801 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:14,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,802 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:14,802 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,802 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,802 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,803 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:14,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,803 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:14,803 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,803 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,803 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,804 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:14,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,805 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:14,805 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,805 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,805 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,805 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:14,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,806 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:14,806 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,806 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,806 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,807 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:14,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,807 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:14,807 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:14,807 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:14,808 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:14,808 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:14,808 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:14,810 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:14,811 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:14,811 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:14,813 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:14,813 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:14,813 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,813 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:14,817 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 301 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #504 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #504 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:14,817 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,818 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,819 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,819 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:14,819 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,820 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:14,822 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,822 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:14,822 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,822 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:14,828 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,828 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:14,828 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:14,828 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:14,830 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:14,830 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:14,871 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:14,871 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:14,872 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:14,872 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:14,872 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:14,872 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:14,872 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:14,873 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:14,873 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:14,873 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:14,873 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:14,873 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:14,874 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:14,874 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:14,874 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:14,874 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:14,874 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:14,875 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:14,875 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:14,875 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:14,875 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:14,875 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:14,876 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:14,876 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:14,876 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,876 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,876 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,877 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:14,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,879 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:14,879 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:14,879 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:14,879 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:14,879 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:14,879 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,880 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:14,889 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 301 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #512 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #512 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:14,891 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,891 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,894 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,894 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:14,894 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,894 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:14,898 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,898 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:14,898 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,898 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:14,902 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,902 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:14,902 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:14,902 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:14,904 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:14,904 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:14,915 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:14,915 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:14,915 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:14,915 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:14,916 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:14,916 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:14,916 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,916 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,916 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,917 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:14,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,919 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:14,919 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:14,919 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:14,919 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:14,919 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:14,919 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,920 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:14,924 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 301 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #520 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #520 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:14,926 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,926 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,934 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,934 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:14,934 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,934 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:14,942 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,942 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:14,942 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:14,942 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:14,946 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:14,946 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:14,946 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:14,946 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:14,948 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:14,949 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:14,960 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:14,961 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:14,961 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:14,961 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:14,961 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:14,961 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:14,962 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:14,962 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:14,962 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:14,962 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:14,962 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:14,963 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:14,963 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,963 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,963 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,964 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:14,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,966 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:14,966 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,966 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,966 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,967 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:14,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,968 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:14,969 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,969 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,969 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,970 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:14,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,971 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:14,971 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:14,972 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:14,972 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:14,972 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:14,974 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,975 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:14,976 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:14,977 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:14,978 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:14,979 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:14,979 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:14,979 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:14,980 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,980 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,982 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:14,982 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:14,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:14,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:14,983 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:14,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:14,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:14,984 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:14,984 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:14,985 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:14,985 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:14,986 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:14,986 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:14,986 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:14,988 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,988 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,991 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:14,991 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:14,994 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:14,994 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:14,994 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:14,994 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:14,994 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:14,995 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:14,995 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:14,995 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:14,995 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:15,009 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:15,009 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:15,009 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:15,009 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:15,009 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:15,010 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:15,010 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,010 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,010 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,011 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:15,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,011 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:15,012 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,012 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,012 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,012 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:15,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,013 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:15,013 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:35:15,014 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:15,014 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:35:15,014 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:15,014 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,014 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,015 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,015 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:15,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,016 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:15,016 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:35:15,016 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:15,017 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:39) method ... +01/30/13 11:35:15,017 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:15,017 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,017 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,017 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,018 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:15,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,019 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:15,019 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,019 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,019 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,020 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:15,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,021 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:15,021 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,021 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,021 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,022 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:15,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,022 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:15,022 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,023 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,023 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,023 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:15,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,024 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:15,024 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,024 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,024 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,025 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:15,026 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,026 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:15,026 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,026 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,026 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,027 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:15,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,028 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:15,028 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,028 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,028 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,029 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:15,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,030 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:15,030 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,030 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,030 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,031 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:15,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,031 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:15,031 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,032 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,032 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,032 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:15,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,033 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:15,033 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,033 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,033 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,034 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:15,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,035 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:15,035 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,035 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,035 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,036 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:15,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,037 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:15,037 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,037 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,037 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,038 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:15,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,038 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:15,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,039 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,039 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,040 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:15,040 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,041 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:15,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,041 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:15,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,041 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:15,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,041 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:15,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,042 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:15,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,042 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:15,042 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:15,042 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:15,042 [1520] DEBUG index - Entering updateInfo(20) method ... +01/30/13 11:35:15,042 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:15,042 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:15,044 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:15,044 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:15,044 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:15,044 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:15,044 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:15,046 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:15,046 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:15,048 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:39) method ... +01/30/13 11:35:15,048 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:15,049 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:15,049 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:15,049 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,049 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,049 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:15,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:15,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:15,050 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:15,051 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:15,052 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,20) method ... +01/30/13 11:35:15,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,052 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,20) method ... +01/30/13 11:35:15,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,053 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:15,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,053 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:15,053 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:15,055 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,055 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,055 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,055 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,056 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:15,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,057 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:15,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,058 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:15,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,058 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:15,058 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:15,064 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,064 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:15,064 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:15,092 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:15,092 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,093 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:15,093 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:15,093 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:15,094 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:15,094 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,095 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:15,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:15,095 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:15,095 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:15,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,097 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:15,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,098 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:15,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,098 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:15,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,098 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:15,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,099 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:15,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,099 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:15,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,099 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:15,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,100 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:15,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,100 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:15,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,100 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:15,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,101 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:15,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,101 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:15,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,101 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:15,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,102 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:15,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,102 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:15,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,102 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:15,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,103 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:15,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,103 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:15,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,103 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:15,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,104 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:15,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,104 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:15,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,104 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:15,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,105 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:15,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,105 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:15,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,105 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:15,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,106 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:15,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,106 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:15,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,106 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:15,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,106 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:15,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,107 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:15,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,107 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:15,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,107 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:15,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,108 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:15,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,108 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:15,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,108 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:15,108 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:15,109 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:15,109 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:15,109 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:15,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,109 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:15,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,110 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:15,110 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,110 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:15,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,111 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:15,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,111 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:15,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,112 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:15,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,112 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:15,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,113 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:15,113 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,20) method ... +01/30/13 11:35:15,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,114 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:15,114 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:15,114 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:15,116 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:15,116 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:15,116 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:15,118 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,119 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,119 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:15,119 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:15,122 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:15,122 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,122 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:15,122 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:15,124 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:15,124 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:15,124 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:15,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,125 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:15,125 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,125 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:15,125 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:15,140 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:15,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,140 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:15,140 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,140 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,140 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:15,141 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:15,141 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:15,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,141 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:15,141 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:15,141 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:15,20,1] +01/30/13 11:35:15,148 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,149 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:15,149 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:15,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,157 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,157 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:15,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,157 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:15,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,158 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,158 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,158 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,158 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,159 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,159 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:15,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,160 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:15,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,160 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:15,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,160 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:15,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,161 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:15,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,161 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:15,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,161 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:15,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,162 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:15,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,162 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:15,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,162 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:15,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,162 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:15,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,163 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:15,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,163 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:15,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,163 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:15,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,164 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:15,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,164 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:15,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,164 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:15,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,164 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:15,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,165 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:15,257 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,257 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,257 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,258 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,258 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,258 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:15,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:15,261 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:15,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,261 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:15,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,261 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:15,262 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,262 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,262 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,262 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,262 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:15,262 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:15,265 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:15,265 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:15,265 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:15,265 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:15,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,265 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:15,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,265 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:15,265 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:15,273 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:15,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,273 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,273 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:15,274 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:15,274 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:15,274 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:15,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,274 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:15,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,274 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:15,274 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:15,284 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:15,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,284 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,285 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,285 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,285 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,285 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,285 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,285 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,285 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,285 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:15,286 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:15,286 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,286 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:15,287 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:15,293 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:15,293 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,293 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,295 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,295 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,295 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,295 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,297 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:15,297 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:15,297 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:15,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,297 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:15,298 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:15,298 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:15,298 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:15,298 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:15,318 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:15,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:15,318 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,319 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:15,319 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,319 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:15,319 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,319 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:15,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:15,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:15,320 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:15,320 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:15,321 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:15,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:16,776 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:16,913 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:16,913 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:16,913 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:16,914 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:16,914 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'viewtype' => '', + 'action' => 'DetailView', + 'record' => '138', + 'parenttab' => 'Marketing', + 'start' => '1', +) +01/30/13 11:35:16,914 [1520] INFO index - About to take action DetailView +01/30/13 11:35:16,914 [1520] DEBUG index - in DetailView +01/30/13 11:35:16,914 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:16,914 [1520] INFO index - current module is Accounts +01/30/13 11:35:16,948 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:16,948 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:16,948 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:16,948 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:16,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:16,949 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:16,949 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:16,949 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:16,949 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:16,960 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:16,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:16,960 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:16,960 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:16,961 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:16,961 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:16,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,962 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:16,962 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,962 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:16,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,963 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:16,963 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,963 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:16,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,964 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:16,964 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,965 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:16,965 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,965 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:16,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,966 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:16,966 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,966 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:16,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,967 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:16,967 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,967 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:16,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,968 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:16,968 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,968 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:16,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,969 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:16,969 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,969 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:16,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,970 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:16,970 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,970 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:16,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,971 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:16,971 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,971 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:16,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,972 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:16,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,973 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:16,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,973 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:16,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,974 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:16,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,974 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:16,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,974 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:16,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,975 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:16,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,975 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:16,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,976 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:16,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,976 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:16,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,977 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:16,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,977 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:16,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,978 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:16,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,978 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:16,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,979 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:16,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,979 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:16,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,980 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:16,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,980 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:16,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,981 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:16,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,981 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:16,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,982 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:16,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,982 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:16,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,983 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:16,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,983 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:16,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,984 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:16,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,984 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:16,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,985 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:16,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:16,985 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:16,988 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:16,988 [1520] DEBUG index - Prepared sql query parameters : [302,1,Accounts,DetailView,138,2013-01-30 11:35:16] +01/30/13 11:35:17,001 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:17,001 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:17,001 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:17,001 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:17,003 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:17,003 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:17,005 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:17,005 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:17,007 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:17,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,007 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,007 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,008 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,008 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,008 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:17,008 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:17,017 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,017 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,017 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,017 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:17,018 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:17,018 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:35:17,031 [1520] INFO index - in track view method Accounts +01/30/13 11:35:17,031 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,031 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:17,033 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:17,033 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,034 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:17,034 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:17,034 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:35:17,057 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:17,058 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:17,062 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:35:17,062 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:17,062 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:17,062 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:17,062 [1520] DEBUG index - including headers +01/30/13 11:35:17,063 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:17,064 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:17,070 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,070 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,077 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:17,078 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:17,078 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,080 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:17,080 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:17,082 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:17,082 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,083 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:17,083 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,084 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:17,084 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,084 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:17,085 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,085 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:17,086 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,086 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:17,087 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,087 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:17,088 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,088 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:17,089 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:17,089 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:17,089 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:17,089 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:17,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,097 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:17,097 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:17,098 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:17,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,099 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:17,099 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:17,100 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:17,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,102 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:17,102 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:17,103 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:17,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,105 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:17,105 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:17,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,106 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:17,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,107 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:17,107 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:17,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:17,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,109 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:17,109 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:17,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:17,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,110 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:17,110 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:17,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:17,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,111 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:17,111 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:17,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,112 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:17,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,113 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:17,113 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:17,113 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:17,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,114 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:17,114 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:17,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:17,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:17,115 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:17,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,116 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:17,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,116 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:17,116 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:17,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:17,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,117 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:17,118 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:17,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:17,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:17,119 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:17,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,119 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:17,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,120 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:17,120 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:17,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,120 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:17,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,121 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:17,121 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:17,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:17,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,123 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:17,123 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:17,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:17,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,124 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:17,124 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:17,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:17,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,125 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:17,125 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:17,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,125 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:17) method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:17) method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:17,126 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:17,128 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:17,128 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:17,128 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:17,134 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,134 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,135 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,136 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,144 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:17,147 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:17,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,148 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:17,148 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,151 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,152 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,153 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,154 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,155 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,156 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,157 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:17,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,158 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:17,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,158 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:17,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,159 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:17,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,159 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:17,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,160 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:17,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,160 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:17,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,160 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,161 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:17,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,162 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:17,162 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:17,162 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,166 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:17,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,166 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:17,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,167 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:17,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,168 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:17,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,168 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:17,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,169 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:17,169 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:17,173 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:17,173 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,173 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:17,173 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:17,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:17,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,193 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:17,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,194 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:17,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:17,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,194 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:17,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,195 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:17,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,195 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:17,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:17,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,195 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:17,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:17,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,196 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:17,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:17,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,196 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:17,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:17,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,197 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:17,197 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:17,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,197 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:17,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:17,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,198 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:17,200 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:17,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,200 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:17,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:17,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,201 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:17,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:17,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,201 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:17,201 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:17,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,202 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:17,202 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:17,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,203 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:17,203 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:17,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,203 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:17,203 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:17,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,203 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:17,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:17,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,204 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:17,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:17,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,205 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:17,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:17,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,205 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:17,205 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:17,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,206 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:17,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:17,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,206 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:17,206 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:17,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,206 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:17,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:17,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,207 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:17,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:17,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,207 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:17,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:17,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,208 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:17,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:17,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,208 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:17,208 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:17,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,209 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:17,209 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:17,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,209 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:17,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:17,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,209 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:17,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:17,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,210 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:17,210 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:17,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,211 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:17,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:17,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,211 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:17,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,212 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:17,212 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:17,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,215 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,215 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,215 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,215 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,215 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,215 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:17,215 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,219 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:17,219 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,222 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:17,222 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,223 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:17,224 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,225 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:17,225 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,226 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,228 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:17,228 [1520] DEBUG index - id is 138 +01/30/13 11:35:17,228 [1520] DEBUG index - name is OSSEZ +01/30/13 11:35:17,228 [1520] INFO index - Account detail view +01/30/13 11:35:17,228 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:17,228 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,228 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:17,229 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:17,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,231 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:17,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,231 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:17,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,232 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:17,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,232 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:17,232 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:17,232 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:17,243 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:17,243 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:17,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,244 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:17,244 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,244 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,244 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,245 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:17,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,245 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:17,245 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,245 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,245 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,246 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:17,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,246 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:17,247 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,247 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,247 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,247 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:17,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,248 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:17,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,248 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,249 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:17,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,249 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:17,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,250 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,250 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:17,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,251 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:17,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,251 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,251 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:17,252 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:35:17,252 [1520] INFO index - in getAccountName 8 +01/30/13 11:35:17,252 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:17,252 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:17,255 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:17,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,255 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:17,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,256 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,256 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:17,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,257 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:17,257 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,257 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,257 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,258 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:17,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,258 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:17,258 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,259 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,259 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,259 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:17,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,260 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:17,260 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,260 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,260 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,261 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:17,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,261 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:17,261 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,261 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,261 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,262 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:17,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,263 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:17,263 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,263 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,263 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,263 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:17,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,264 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:17,264 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:17,264 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:17,264 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:17,264 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:17,264 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:17,266 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:17,266 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:17,266 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:17,268 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:17,268 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:17,268 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,268 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:17,273 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 302 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:17,274 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,274 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,276 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,276 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:17,276 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,276 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:17,279 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,280 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:17,280 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,280 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:17,285 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,285 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:17,285 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:17,286 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:17,287 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:17,287 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:17,307 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:17,308 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:17,309 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:17,309 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,309 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,310 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,310 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,311 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:17,311 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:17,311 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,311 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:17,315 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 302 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:17,316 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,316 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,318 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,319 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:17,319 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,319 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:17,322 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,322 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:17,323 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,323 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:17,327 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,327 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:17,327 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:17,327 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:17,330 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:17,330 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:17,342 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:17,342 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:17,342 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:17,343 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:17,343 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:17,343 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:17,343 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,343 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,344 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,345 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:17,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,346 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:17,346 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:17,346 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:17,347 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:17,347 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:17,347 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,347 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:17,351 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 302 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:17,353 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,353 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,355 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,356 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:17,356 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,356 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:17,363 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,363 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:17,363 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:17,363 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:17,367 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:17,368 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:17,368 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:17,368 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:17,371 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:17,371 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:17,386 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:17,386 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:17,386 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:17,386 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:17,387 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:17,387 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:17,387 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:17,387 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:17,388 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:17,388 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:17,388 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:17,388 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:17,388 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,388 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,389 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,390 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:17,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,391 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:17,391 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,391 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,391 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,392 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:17,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,394 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:17,394 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,394 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,394 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,395 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:17,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,396 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:17,397 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:17,397 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:17,397 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:17,397 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:17,399 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:17,400 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:17,400 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:17,400 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:17,400 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,400 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,401 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,402 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:17,402 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:17,403 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:17,405 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:35:17,405 [1520] INFO index - in getOwnerName 5 +01/30/13 11:35:17,405 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:17,405 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,405 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,408 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:17,408 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:17,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,412 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:17,412 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,412 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,412 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:17,412 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:17,414 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:17,415 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:17,415 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:17,415 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:17,415 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:17,418 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,418 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,420 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,420 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,422 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:17,423 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:17,423 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:17,423 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:17,425 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:17,426 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,426 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,427 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:17,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,427 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:17,427 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,427 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,428 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,428 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:17,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,429 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:17,429 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:17,429 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:17,429 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:17,429 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:17,429 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,430 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,430 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,430 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,431 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:17,431 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:17,431 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,432 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,432 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,432 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:17,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,433 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:17,433 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,433 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,433 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,434 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:17,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,434 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:17,434 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,434 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,434 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,435 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:17,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,436 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:17,436 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,436 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,436 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,436 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:17,437 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,437 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,437 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:17,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,437 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,438 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:17,438 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,438 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,438 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:17,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,438 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,439 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:17,439 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,439 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,440 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:17,440 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,440 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,440 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:17,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,441 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:17,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,441 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,441 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,442 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:17,442 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,442 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,442 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:17,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,443 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,443 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:17,443 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,444 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:17,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,444 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,444 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:17,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,445 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,445 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:17,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,445 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,446 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:17,446 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,446 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:17,446 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,447 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,447 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,447 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:17,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,448 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:17,448 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,448 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,448 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,448 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:17,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,449 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:17,449 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:17,449 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:17,449 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:17,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,450 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:17,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,450 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:17,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,450 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:17,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,451 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:17,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,451 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:17,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,451 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:17,451 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:17,451 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:17,451 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:35:17,451 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:17,452 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,453 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:17,453 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:17,453 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:17,454 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:17,454 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:17,455 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:17,455 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,460 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:17,461 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:17,461 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:17,461 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:17,463 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:17,463 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,465 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:17,465 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,466 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:35:17,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,466 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:17,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,467 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:17,467 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:17,471 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,471 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,471 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,471 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,471 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,472 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:17,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,472 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:17,472 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,473 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:17,474 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,474 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:17,474 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:17,477 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,477 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,478 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:17,478 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:17,497 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:17,498 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,498 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:17,498 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:17,499 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:17,500 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:17,501 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,501 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:17,501 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:17,501 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:17,501 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:17,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,504 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:17,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,504 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:17,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,505 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:17,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,505 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:17,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,505 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:17,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,506 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:17,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,506 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:17,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,506 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:17,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,507 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:17,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,507 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:17,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,507 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:17,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,508 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:17,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,508 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:17,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,508 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:17,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,509 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:17,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,509 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:17,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,509 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:17,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,510 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:17,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,510 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:17,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,510 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:17,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,511 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:17,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,511 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:17,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,511 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:17,511 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,511 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,511 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:17,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,512 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:17,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,512 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:17,512 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,512 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,512 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:17,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,513 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:17,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,513 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:17,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,513 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:17,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,514 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:17,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,514 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:17,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,514 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,514 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:17,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,515 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:17,515 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,515 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:17,515 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:17,515 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:17,515 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:17,515 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:17,516 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,516 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:17,516 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,516 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:17,517 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,517 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:17,517 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,517 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:17,518 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,518 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:17,518 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,518 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:17,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,519 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:17,519 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,519 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:17,519 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:17,520 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,521 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:17,521 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:17,521 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:17,523 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:17,523 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:17,523 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:17,525 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,525 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:17,525 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:17,533 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:17,533 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,533 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:17,533 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:17,535 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:17,536 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,536 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:17,536 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:17,547 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:17,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,547 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:17,547 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,547 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,548 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:17,548 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:17,548 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:17,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,548 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:17,549 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:17,549 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:17,138,1] +01/30/13 11:35:17,551 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,551 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,551 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:17,551 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:17,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,560 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,560 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:17,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,560 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:17,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,561 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,561 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,561 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,562 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,562 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,562 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:17,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,563 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:17,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,563 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:17,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,563 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:17,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,564 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:17,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,564 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:17,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,564 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:17,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,564 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:17,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,565 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:17,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,565 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:17,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,565 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:17,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,565 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:17,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,566 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:17,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,566 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:17,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,566 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:17,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,567 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:17,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,567 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:17,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,567 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:17,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,567 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:17,659 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,659 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,660 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,660 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,660 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:17,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:17,663 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:17,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,663 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:17,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,663 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:17,664 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,664 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,664 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,664 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,664 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:17,664 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:17,667 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:17,667 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:17,667 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:17,667 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:17,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,667 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:17,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,667 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:17,667 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:17,675 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:17,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,675 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,676 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:17,676 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:17,676 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:17,676 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:17,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,676 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:17,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,676 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:17,676 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:17,686 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:17,686 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,687 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,687 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,687 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,687 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,687 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,687 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,687 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,688 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,688 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,688 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,688 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:17,688 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:17,688 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:17,688 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,688 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:17,689 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,689 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:17,689 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:17,697 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:17,697 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,697 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,698 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,698 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,699 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,699 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,699 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,700 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:17,701 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:17,701 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:17,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,701 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:17,701 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:17,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:17,702 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:17,702 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:17,722 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,723 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:17,723 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,723 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:17,723 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:17,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:17,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,724 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:17,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:17,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:17,724 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:17,725 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:17,725 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:17,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:20,065 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:20,201 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:20,201 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:20,202 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:20,202 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:20,202 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'getListOfRecords', + 'ajax' => 'true', + 'CurModule' => 'Accounts', + 'CurRecordId' => '138', + 'CurParentTab' => 'Marketing', +) +01/30/13 11:35:20,202 [1520] INFO index - About to take action getListOfRecords +01/30/13 11:35:20,202 [1520] DEBUG index - in getListOfRecords +01/30/13 11:35:20,203 [1520] INFO index - current page is modules/Users/getListOfRecords.php +01/30/13 11:35:20,203 [1520] INFO index - current module is Users +01/30/13 11:35:20,236 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:20,236 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:20,237 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:20,237 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:20,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:20,237 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:20,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:20,237 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:20,238 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:20,283 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:20,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:20,283 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:20,283 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:20,284 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:20,285 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:20,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,286 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:20,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,287 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:20,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,288 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:20,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,289 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:20,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,290 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:20,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,291 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:20,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,292 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:20,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,293 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:20,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,294 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:20,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,295 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:20,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,296 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:20,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,297 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:20,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,298 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:20,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,299 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:20,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,300 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:20,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,300 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:20,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,301 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:20,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,301 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:20,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,302 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:20,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,302 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:20,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,303 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:20,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,303 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:20,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,304 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:20,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,304 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:20,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,304 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:20,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,305 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:20,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,305 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:20,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,306 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:20,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,306 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:20,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,307 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:20,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,307 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:20,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,308 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:20,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,308 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:20,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,309 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:20,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,309 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:20,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,310 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:20,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,310 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:20,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,311 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:20,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,311 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:20,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,312 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:20,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,312 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:20,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,313 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:20,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,313 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:20,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,314 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:20,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,314 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:20,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,315 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:20,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:20,315 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:20,319 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:20,319 [1520] DEBUG index - Prepared sql query parameters : [303,1,Users,getListOfRecords,,2013-01-30 11:35:20] +01/30/13 11:35:20,327 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:20,327 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:20,327 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:20,327 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:20,329 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:20,329 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:20,331 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:20,331 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:20,333 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:20,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:20,334 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:20,334 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:20,334 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:20,334 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:20,334 [1520] DEBUG index - skipping headers +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - in getColumnFields Accounts +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:20,340 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:20,341 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:20,341 [1520] DEBUG layout_utils - Prepared sql query parameters : [6] +01/30/13 11:35:20,349 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:20,349 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:20,349 [1520] DEBUG layout_utils - Exiting getColumnFields method ... +01/30/13 11:35:20,349 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tablename,entityidfield, fieldname from vtiger_entityname WHERE modulename = ? +01/30/13 11:35:20,349 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:35:20,351 [1520] DEBUG layout_utils - Entering getFieldVisibilityPermission(Accounts,1,accountname) method ... +01/30/13 11:35:20,351 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:20,351 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:20,351 [1520] DEBUG layout_utils - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:20,352 [1520] DEBUG layout_utils - Entering isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:35:20,353 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:20,353 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:35:20,354 [1520] DEBUG layout_utils - Entering when status=0 +01/30/13 11:35:20,354 [1520] DEBUG layout_utils - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:20,355 [1520] DEBUG layout_utils - Exiting isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:35:20,355 [1520] DEBUG layout_utils - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:35:20,355 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:35:20,356 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,357 [1520] DEBUG layout_utils - Prepared sql query parameters : [2] +01/30/13 11:35:20,358 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,358 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:35:20,360 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,360 [1520] DEBUG layout_utils - Prepared sql query parameters : [6] +01/30/13 11:35:20,361 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,361 [1520] DEBUG layout_utils - Prepared sql query parameters : [8] +01/30/13 11:35:20,362 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,362 [1520] DEBUG layout_utils - Prepared sql query parameters : [10] +01/30/13 11:35:20,363 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,363 [1520] DEBUG layout_utils - Prepared sql query parameters : [12] +01/30/13 11:35:20,365 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,365 [1520] DEBUG layout_utils - Prepared sql query parameters : [14] +01/30/13 11:35:20,367 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,367 [1520] DEBUG layout_utils - Prepared sql query parameters : [16] +01/30/13 11:35:20,368 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,368 [1520] DEBUG layout_utils - Prepared sql query parameters : [18] +01/30/13 11:35:20,369 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,370 [1520] DEBUG layout_utils - Prepared sql query parameters : [20] +01/30/13 11:35:20,371 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:20,371 [1520] DEBUG layout_utils - Prepared sql query parameters : [138] +01/30/13 11:35:20,372 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT accountname, accountid from vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:35:20,372 [1520] DEBUG layout_utils - Prepared sql query parameters : [2,4,6,8,10,12,14,16,18,20,138] +01/30/13 11:35:25,834 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:25,967 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:25,967 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:25,968 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:25,968 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:25,968 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:35:25,968 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:35:25,968 [1520] DEBUG index - in CalendarAjax +01/30/13 11:35:25,969 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:35:25,969 [1520] INFO index - current module is Calendar +01/30/13 11:35:26,002 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:26,002 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:26,002 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:26,002 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:26,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:26,003 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:26,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:26,003 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:26,003 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:26,011 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:26,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:26,011 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:26,011 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:26,012 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:26,012 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:26,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,013 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:26,013 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,013 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:26,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,014 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:26,014 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,014 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:26,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,015 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:26,015 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,015 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:26,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,016 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:26,016 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,016 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:26,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,017 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:26,017 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,017 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:26,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,018 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:26,018 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,018 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:26,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,019 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:26,019 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,019 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:26,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,020 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:26,020 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,020 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:26,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,021 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:26,021 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,021 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:26,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,022 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:26,022 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,022 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:26,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,023 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:26,023 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,023 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,024 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:26,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,025 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:26,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,025 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:26,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,026 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:26,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,026 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:26,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,027 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:26,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,027 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:26,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,028 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:26,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,028 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:26,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,029 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:26,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,029 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:26,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,030 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:26,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,030 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:26,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,031 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:26,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,031 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:26,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,032 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:26,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,032 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:26,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,033 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:26,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,033 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:26,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,034 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:26,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,034 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:26,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,035 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:26,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:26,035 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:26,036 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:26,036 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:26,036 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:26,036 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:26,037 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:26,038 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:26,039 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:26,040 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:26,041 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:26,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:26,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:26,042 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:26,042 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:26,042 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:26,042 [1520] DEBUG index - skipping headers +01/30/13 11:35:26,043 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:35:26,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:26,048 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:26,049 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:35:26,049 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:35:26,049 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:35:26,053 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:36')) +01/30/13 11:35:26,056 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:35:37,572 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:37,707 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:37,707 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:37,707 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:37,708 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:37,708 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:35:37,708 [1520] INFO index - About to take action index +01/30/13 11:35:37,708 [1520] DEBUG index - in index +01/30/13 11:35:37,708 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:35:37,708 [1520] INFO index - current module is Accounts +01/30/13 11:35:37,742 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:37,742 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:37,742 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:37,742 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:37,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,743 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:37,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,743 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:37,743 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:37,753 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:37,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,753 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:37,753 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:37,754 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:37,754 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:37,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,755 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:37,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,755 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:37,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,756 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:37,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,756 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:37,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,757 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:37,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,757 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:37,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,758 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:37,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,758 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:37,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,759 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:37,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,759 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:37,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,760 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:37,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,760 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:37,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,761 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:37,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,761 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:37,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,762 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:37,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,762 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:37,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,763 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:37,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,763 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:37,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,764 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:37,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,764 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:37,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,765 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:37,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,765 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,766 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:37,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,767 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:37,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,767 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:37,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,768 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:37,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,768 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:37,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,769 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:37,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,769 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:37,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,770 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:37,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,770 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:37,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,771 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:37,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,771 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:37,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,772 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:37,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,772 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:37,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,773 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:37,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,773 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:37,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,774 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:37,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,774 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:37,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,775 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:37,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,775 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:37,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,776 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:37,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,776 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:37,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,777 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:37,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,777 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:37,781 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:37,781 [1520] DEBUG index - Prepared sql query parameters : [304,1,Accounts,index,,2013-01-30 11:35:37] +01/30/13 11:35:37,784 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:37,784 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:37,784 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:37,784 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:37,786 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:37,786 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:37,788 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:37,788 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:37,789 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:37,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:37,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,790 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:37,790 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:37,790 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:37,790 [1520] DEBUG index - including headers +01/30/13 11:35:37,791 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:37,791 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:37,794 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:37,794 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:37,796 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:37,797 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:37,797 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,797 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:37,798 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,798 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:37,798 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,798 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:37,799 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,799 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:37,799 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,799 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:37,800 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,800 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:37,800 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,800 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:37,800 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:37,801 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:37,801 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:37,801 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:37,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:37,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,808 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:37,808 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:37,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:37,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,809 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:37,809 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:37,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:37,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,810 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:37,810 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:37,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:37,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,812 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:37,812 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:37,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,812 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:37,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,813 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:37,813 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:37,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:37,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,814 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:37,814 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:37,814 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:37,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,815 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:37,815 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:37,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:37,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,816 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:37,816 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:37,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,817 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:37,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,817 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:37,817 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:37,818 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:37,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,819 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:37,819 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:37,819 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:37,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,820 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:37,820 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:37,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,820 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:37,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,821 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:37,821 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:37,821 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:37,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,822 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:37,822 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:37,823 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:37,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,823 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:37,823 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:37,824 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,824 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:37,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,824 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:37,825 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:37,825 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,825 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:37,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,826 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:37,826 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:37,826 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,826 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:37,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,827 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:37,827 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:37,828 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:37,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,828 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:37,828 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:37,829 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:37,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,829 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:37,829 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:37,830 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,830 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:37,830 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:37) method ... +01/30/13 11:35:37,830 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:37,830 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:37) method ... +01/30/13 11:35:37,831 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:37,831 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:37,831 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:37,831 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:37,832 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:37,832 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:37,832 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:37,832 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:37,835 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,835 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,835 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,835 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,835 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,835 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,836 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,837 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,838 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,839 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,840 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,841 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,842 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,843 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,844 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,844 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,844 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,844 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:37,848 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:37,848 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,848 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:37,848 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:37,850 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:37,850 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:37,851 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:37,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,851 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:37,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,851 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,852 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:37,853 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,854 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:37,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,854 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:37,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,854 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,855 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,856 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:37,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,857 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:37,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,858 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:37,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,858 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:37,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,859 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,860 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:37,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,861 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:37,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,861 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:37,861 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:37,861 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:37,866 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:37,867 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,867 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:37,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,868 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:37,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,868 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:37,869 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,869 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:35:37,869 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,869 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:37,870 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:37,874 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:37,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,874 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:37,874 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:37,877 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:37,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:37,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,884 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:37,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:37,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,885 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:37,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:37,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,885 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:37,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:37,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,885 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:37,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:37,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,886 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:37,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:37,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,886 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:37,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:37,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,886 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:37,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:37,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,887 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:37,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:37,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,887 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:37,888 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:37,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,888 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:37,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:37,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,888 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:37,890 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:37,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,891 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:37,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:37,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,892 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:37,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:37,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,892 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:37,892 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:37,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,893 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:37,893 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:37,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,893 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:37,894 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:37,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,894 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:37,894 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:37,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,894 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:37,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:37,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,895 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:37,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:37,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,896 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:37,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:37,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,896 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:37,896 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:37,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,896 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:37,897 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:37,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,897 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:37,897 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:37,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,897 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:37,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:37,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,897 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:37,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:37,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,898 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:37,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:37,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,898 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:37,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:37,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,899 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:37,899 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:37,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,899 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:37,900 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:37,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,900 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:37,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:37,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,900 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:37,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:37,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,901 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:37,901 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:37,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,902 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:37,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:37,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,903 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:37,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:37,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,903 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:37,903 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:37,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,908 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:37,908 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:37,908 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:37,909 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:37,909 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:37,909 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:37,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,910 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:37,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,910 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:37,911 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,911 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:37,911 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,911 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:37,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,912 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:37,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,912 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:37,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,913 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:37,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,913 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:37,913 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:37,913 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:37,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,914 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,914 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:37,914 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:37,923 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,923 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:37,923 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:35:37,923 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,923 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,923 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:35:37,923 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:35:37,926 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:35:37,927 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:37,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,927 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:37,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,928 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:37,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,928 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:37,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:37,928 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:35:37,929 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:35:37,929 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:35:37,929 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:35:37,929 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:37,929 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:35:37,930 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:37,930 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:37,930 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:37,930 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:37,932 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:37,932 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:37,934 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:37,934 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:37,935 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:37,936 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:35:37,936 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:37,937 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:37,938 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:37,938 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:37,939 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:37,939 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:37,940 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:37,940 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:37,940 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:37,941 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:37,941 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:37,941 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:37,941 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:35:37,941 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:37,941 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:37,944 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:37,944 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:37,944 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,944 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:37,944 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,945 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:35:37,945 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:37,945 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:37,948 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:37,948 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:37,948 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:35:37,948 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,948 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,948 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:35:37,948 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:37,951 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,952 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:35:37,952 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:37,953 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:35:37,953 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:35:37,955 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:35:37,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,956 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:35:37,956 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:35:37,956 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:35:37,956 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:37,957 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:37,957 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:35:37,957 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:35:37,957 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:37,957 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:37,957 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:35:37,957 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,957 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,958 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:37,958 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:37,960 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:37,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,961 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:37,961 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:37,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:37,964 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:37,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,964 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,966 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:37,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:37,966 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:37,966 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:37,970 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:37,970 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:37,987 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:35:37,990 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:35:37,990 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:35:37,993 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:37,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,996 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:37,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:37,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:37,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,1000 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:37,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,1000 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:37,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:37,1000 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,000 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,001 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:38,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,002 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:38,002 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:35:38,005 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:38,005 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:38,005 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:35:38,008 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:38,008 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:38,076 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,076 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:35:38,078 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,079 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:35:38,080 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,081 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:35:38,083 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:38,083 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:35:38,085 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:38,085 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:35:38,174 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,174 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:35:38,177 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,177 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:35:38,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,179 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:35:38,182 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,182 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:35:38,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,186 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:35:38,189 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,189 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:35:38,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,191 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:35:38,193 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,193 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:35:38,197 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:38,197 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:35:38,200 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:38,200 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:35:38,274 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,274 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:35:38,276 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,276 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:35:38,278 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,278 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:35:38,280 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,280 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:35:38,283 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:35:38,283 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:38,287 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,287 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:35:38,290 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:38,290 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:35:38,293 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:35:38,293 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:35:38,346 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,346 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:35:38,351 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,351 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:35:38,353 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,353 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:35:38,356 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,356 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:35:38,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,358 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:35:38,361 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,361 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:35:38,363 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,363 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:35:38,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,366 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:35:38,368 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,368 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:35:38,370 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,370 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:35:38,373 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,373 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:35:38,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:35:38,377 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:35:38,383 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:38,387 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:38,387 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:38,390 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:38,391 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:38,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,392 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:38,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:38,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,392 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:38,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:38,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,393 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:38,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:38,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,393 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:38,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:38,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,394 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:38,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:38,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,394 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:35:38,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:38,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,395 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:38,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:38,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,395 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:35:38,396 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:38,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,396 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:38,396 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:38,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,396 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:38,397 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:38,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,397 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:38,397 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:38,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,398 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:35:38,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:38,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,398 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:38,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:38,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,399 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:35:38,399 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:38,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,399 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:38,399 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:38,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,400 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:38,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:38,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,400 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:38,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:38,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,401 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:38,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:38,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,401 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:38,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:38,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,402 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:38,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,402 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,403 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:38,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:38,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,403 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:38,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:38,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,404 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:38,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:38,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,404 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:38,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:38,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,404 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:38,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:38,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,404 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:38,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:38,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,405 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:38,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:38,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,405 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:38,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:38,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,405 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:38,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:38,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,405 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:38,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,406 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:35:38,406 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,406 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:38,406 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,406 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:38,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,406 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:35:38,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:38,407 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,407 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:38,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:38,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,408 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:35:38,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:38,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,408 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:35:38,408 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:38,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,409 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:38,409 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:38,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,409 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:35:38,409 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:38,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,409 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:35:38,409 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:38,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,409 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:38,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:38,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,410 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:38,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:38,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,410 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:38,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:38,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,410 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:38,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:38,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,410 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:38,410 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:38,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,411 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:35:38,411 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:38,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,411 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:38,411 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:38,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,411 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:38,411 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:38,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,411 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:38,411 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:38,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,412 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:38,412 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:38,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,412 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:38,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:38,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,412 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:38,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:38,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,412 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:38,412 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:38,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,413 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:38,413 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:38,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,413 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:35:38,413 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:38,414 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:38,474 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:35:38,474 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:35:38,478 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:38,478 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:38,479 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:35:38,480 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:38,483 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:35:38,483 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:38,485 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:35:38,485 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:38,487 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:38,488 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:38,492 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:38,492 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:38,493 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:38,493 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:38,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,493 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,494 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:38,494 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:38,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,494 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:38,494 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,494 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:35:38,495 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:38,497 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:35:38,497 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:38,499 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,499 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,500 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,500 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,500 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,500 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,501 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,501 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,501 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,501 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,502 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,502 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,502 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,502 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,502 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,503 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,503 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,503 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,503 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,503 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,504 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,504 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,504 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,504 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,504 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,505 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,505 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,505 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,506 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,506 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,506 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,507 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,507 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,508 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:35:38,510 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:35:38,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,514 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,514 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,516 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,517 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,518 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,519 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,520 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:38,520 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,520 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,521 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:38,521 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,521 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,521 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:38,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,522 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:38,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,522 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:38,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,523 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:38,523 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,524 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,524 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:35:38,525 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:38,525 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:38,525 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:38,527 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:35:38,527 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1,5] +01/30/13 11:35:38,529 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:38,529 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,529 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:38,530 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:38,531 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,531 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,532 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,532 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,533 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,533 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,533 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,533 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,534 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,534 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,534 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,534 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,535 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,535 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,535 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,535 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,536 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,536 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,536 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,536 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,537 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,537 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,537 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,537 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,538 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,538 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,539 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,539 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,539 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,539 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,540 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,540 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,540 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,540 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,540 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,540 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,540 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,541 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,541 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,541 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,545 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,545 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,545 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,545 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,545 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,545 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,545 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,545 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,545 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,546 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:38,548 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,548 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,548 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,549 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,549 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,549 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,549 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,550 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,550 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,550 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,550 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,550 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,551 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,551 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,551 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,551 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,552 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,552 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,552 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,553 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,553 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,554 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,554 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,554 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,554 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,555 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,555 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,555 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,555 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,556 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,556 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,556 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,557 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,557 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,557 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,557 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,558 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,561 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,561 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,561 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,561 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,561 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,561 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,562 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,562 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:38,563 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,564 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,564 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,564 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,565 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,565 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,565 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,566 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,566 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,566 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,566 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,566 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,567 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,567 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,567 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,567 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,568 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,568 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,568 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,568 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,569 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,569 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,569 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,569 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,570 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,570 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,571 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,571 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,571 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,571 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,572 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,572 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,572 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,572 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,573 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,573 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,573 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,574 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,577 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,577 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,577 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,577 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,577 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,578 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,578 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:38,582 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,582 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,582 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,583 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,583 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,583 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,583 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,584 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,584 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,584 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,584 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,584 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,585 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,585 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,585 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,585 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,586 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,586 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,586 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,587 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,587 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,587 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,588 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,588 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,588 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,588 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,589 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,589 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,589 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,590 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,590 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,590 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,590 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,591 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,591 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,591 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,591 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,591 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,595 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,595 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,595 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,595 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,595 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,595 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,595 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,595 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,595 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,596 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:38,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,598 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,598 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,598 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,599 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,599 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,600 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,600 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,600 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,600 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,601 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,601 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,601 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,602 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,602 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,602 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,602 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,603 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,603 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,603 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,603 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,604 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,604 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,605 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,605 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,605 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,605 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,606 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,606 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,606 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,606 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,607 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,607 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,607 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,607 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,611 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,611 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,611 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,611 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,611 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,612 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:38,613 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,614 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,614 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,615 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,615 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,615 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,615 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,616 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,616 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,616 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,617 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,617 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,617 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,617 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,618 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,619 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,619 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,619 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,619 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,620 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,620 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,621 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,621 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,621 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,622 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,622 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,622 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,622 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,623 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,623 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,623 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,623 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,627 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,627 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,627 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,627 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,627 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,627 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,627 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:35:38,629 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,629 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,630 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,630 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,630 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,631 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,631 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,631 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,632 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,633 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,633 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,633 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,633 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,634 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,634 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,634 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,635 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,635 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,635 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,635 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,636 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,636 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,637 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,637 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,638 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,638 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,638 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,639 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,639 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,642 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,643 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,643 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,643 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,643 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,643 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,643 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,643 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:35:38,646 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,646 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,646 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,647 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,647 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,648 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,648 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,648 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,648 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,648 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,649 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,649 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,649 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,649 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,650 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,650 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,650 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,651 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,651 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,651 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,652 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,652 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,653 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,653 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,653 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,654 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,654 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,654 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,654 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,654 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,655 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,655 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,655 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,655 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,656 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,659 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,659 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,659 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,659 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,660 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,660 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,660 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:35:38,663 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,664 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,664 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,664 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,665 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,665 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,665 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,665 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,666 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,666 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,666 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,666 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,667 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,667 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,667 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,667 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,668 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,668 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,668 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,668 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,669 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,669 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,669 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,669 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,670 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,670 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,671 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,671 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,671 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,672 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,672 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,672 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,673 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,673 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,673 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,673 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,677 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,677 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,677 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,677 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,677 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,677 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:35:38,679 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,679 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,679 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,680 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,680 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,680 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,681 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,681 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,682 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,682 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,682 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,682 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,683 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,683 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,684 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,684 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,684 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,685 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,685 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,685 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,685 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,686 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,686 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,686 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,686 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,686 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,687 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,687 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,688 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,688 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,688 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,688 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,688 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,689 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,692 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,692 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,692 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,693 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,693 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,693 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,693 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:35:38,695 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,695 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,695 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,696 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,696 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,697 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,698 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,698 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,698 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,699 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,699 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,699 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,700 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,701 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,701 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,701 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,702 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,703 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,703 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:35:38,703 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:35:38,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,704 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:38,704 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:38,704 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:38,705 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:38,708 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:38,708 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:38,708 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,708 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:38,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,709 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:35:38,709 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:35:38,709 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:38,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,711 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:38,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,711 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,711 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:38,711 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,712 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:38,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,712 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:38,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,712 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:38,712 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,712 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,713 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:38,713 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:35:38,713 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:35:38,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,713 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:38,713 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,713 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,718 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,718 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,718 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,718 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:38,718 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,719 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,721 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,721 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:38,721 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,721 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,724 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,724 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:38,724 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,724 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,726 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,726 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:38,726 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,726 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,728 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,728 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:38,728 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,728 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,730 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,730 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:38,730 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,731 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,732 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,732 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:38,733 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,733 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,734 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,735 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:38,735 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,735 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,741 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,741 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:38,741 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,741 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,744 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,744 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:38,744 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,744 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,746 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,746 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:38,746 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,746 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,748 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,748 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:38,748 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,748 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,752 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,752 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:38,752 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,752 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,754 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,754 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:38,754 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,754 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,756 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,756 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:38,756 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,756 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,758 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,758 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:38,758 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,759 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,760 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,760 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:38,761 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,761 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,762 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,763 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:38,763 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,763 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,765 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,765 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:38,765 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,765 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,767 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,767 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:38,767 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,767 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,772 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,773 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:38,773 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,773 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,774 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,775 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:38,775 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,775 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:35:38,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,777 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:38,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,777 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:38,777 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,777 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,779 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,779 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:38,779 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,779 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,781 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,782 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:38,782 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,782 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,785 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,786 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:38,786 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,786 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,788 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,788 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:38,788 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,788 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,791 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,791 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:38,791 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,791 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,793 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,794 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:38,794 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,794 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,799 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,799 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:38,799 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,799 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,801 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,801 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:38,801 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,801 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,803 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,803 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:38,804 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,804 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,810 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,810 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:38,810 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,810 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,812 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,812 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:38,812 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,812 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:35:38,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,816 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:38,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,816 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:38,816 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:35:38,816 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:35:38,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,819 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:38,819 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:35:38,819 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:35:38,819 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:35:38,822 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:35:38,822 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:35:38,822 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:35:38,823 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:38,825 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:35:38,825 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:35:38,825 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:35:38,825 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,825 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,825 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:35:38,825 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:35:38,836 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:35:38,836 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:35:38,836 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:38,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,841 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:38,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,841 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:38,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,841 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:38,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,842 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:38,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,842 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:38,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,842 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:38,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,843 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:38,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,843 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:38,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,843 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:38,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,843 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:38,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,844 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:38,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,844 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:38,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,844 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:38,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,845 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:38,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,845 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:38,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,845 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:38,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,845 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:38,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,846 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:38,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,846 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:38,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,846 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:38,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,847 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:38,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,847 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:38,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,847 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:38,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,848 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:38,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,848 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:38,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,848 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:38,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,848 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:38,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,849 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:38,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,849 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:38,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,849 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:38,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,850 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:38,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,850 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:38,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,850 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:38,850 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,851 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:35:38,851 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:35:38,852 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:35:38,852 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:35:38,852 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:35:38,853 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:35:38,853 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:35:38,853 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:35:38,853 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:38,858 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:38,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:38,858 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:35:38,858 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:35:38,861 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:38,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:38,861 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:38,861 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:38,861 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:38,863 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:38,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:38,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:38,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,866 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,866 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:35:38,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,867 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:35:38,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,867 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,867 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,868 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,868 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,868 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,868 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,869 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,869 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,871 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:35:38,871 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:35:38,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,872 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:35:38,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,872 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:35:38,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,872 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:35:38,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,873 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:35:38,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,873 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:35:38,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,873 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:35:38,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,874 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:35:38,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,874 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:35:38,876 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:38,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,877 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:38,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,877 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,877 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,877 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:38,877 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:38,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:38,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,878 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:38,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:38,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:38,878 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:35:38,879 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:38,880 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:38,880 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,507 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:40,630 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:40,630 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:40,631 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:40,631 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:40,631 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '10', +) +01/30/13 11:35:40,631 [1520] INFO index - About to take action DetailView +01/30/13 11:35:40,631 [1520] DEBUG index - in DetailView +01/30/13 11:35:40,632 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:40,632 [1520] INFO index - current module is Accounts +01/30/13 11:35:40,666 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:40,666 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:40,666 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:40,666 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:40,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,667 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:40,667 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,667 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:40,667 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:40,677 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:40,677 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,677 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:40,677 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:40,678 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:40,678 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:40,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,679 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:40,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,679 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:40,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,680 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:40,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,680 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:40,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,681 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:40,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,681 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:40,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,682 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:40,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,682 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:40,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,683 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:40,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,683 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:40,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,684 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:40,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,684 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:40,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,685 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:40,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,685 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:40,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,686 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:40,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,686 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:40,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,687 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:40,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,687 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:40,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,688 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:40,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,688 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:40,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,689 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:40,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,689 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,690 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:40,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,691 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:40,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,691 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:40,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,692 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:40,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,692 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:40,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,693 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:40,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,693 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:40,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,694 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:40,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,694 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:40,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,695 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:40,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,695 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:40,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,696 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:40,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,696 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:40,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,697 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:40,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,697 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:40,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,698 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:40,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,698 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:40,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,699 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:40,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,699 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:40,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,700 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:40,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,700 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:40,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,701 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:40,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:40,701 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:40,717 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:40,717 [1520] DEBUG index - Prepared sql query parameters : [305,1,Accounts,DetailView,10,2013-01-30 11:35:40] +01/30/13 11:35:40,731 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:40,731 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:40,732 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:40,732 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:40,733 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:40,734 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:40,735 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:40,736 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:40,737 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:40,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:40,738 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:40,738 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,738 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:40,739 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:40,747 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,747 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:40,747 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:40,747 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:40,747 [1520] DEBUG index - Prepared sql query parameters : [1,10] +01/30/13 11:35:40,749 [1520] INFO index - in track view method Accounts +01/30/13 11:35:40,749 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:40,749 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:40,751 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:40,751 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,752 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:40,752 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:40,752 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,10,X-CEED INC 99] +01/30/13 11:35:40,758 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:40,759 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:40,760 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:35:40,760 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:35:40,760 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:35:40,761 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:35:40,762 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:35:40,762 [1520] DEBUG index - Prepared sql query parameters : [85] +01/30/13 11:35:40,769 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:40,769 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:40,769 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:40,769 [1520] DEBUG index - including headers +01/30/13 11:35:40,769 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:40,770 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:40,773 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:40,773 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:40,775 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:40,775 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:40,775 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:40,777 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:40,777 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:40,778 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:40,778 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,779 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:40,779 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,779 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:40,779 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,779 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:40,780 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,780 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:40,780 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,780 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:40,781 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,781 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:40,781 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,781 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:40,782 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:40,782 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:40,782 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:40,782 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:40,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,788 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:40,788 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:40,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:40,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,789 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:40,789 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:40,790 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:40,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,791 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:40,791 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:40,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:40,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,792 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:40,792 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:40,793 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,793 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:40,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,793 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:40,793 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:40,794 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:40,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,795 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:40,795 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:40,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:40,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,796 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:40,796 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:40,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:40,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,797 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:40,797 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:40,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,797 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:40,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,798 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:40,798 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:40,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:40,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,799 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:40,799 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:40,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:40,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,800 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:40,801 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:40,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,801 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:40,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,802 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:40,802 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:40,802 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:40,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,803 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:40,803 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:40,803 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:40,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,804 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:40,804 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:40,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,804 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:40,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,805 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:40,805 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:40,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,806 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:40,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,806 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:40,806 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:40,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,807 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:40,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,808 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:40,808 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:40,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:40,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,809 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:40,809 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:40,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:40,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,810 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:40,810 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:40,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,810 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:40,810 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:40) method ... +01/30/13 11:35:40,811 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:40,811 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:40) method ... +01/30/13 11:35:40,811 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:40,811 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:40,811 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:40,812 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:40,813 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:40,813 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:40,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,816 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,819 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,823 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,824 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,825 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,825 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,825 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,825 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,825 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:40,829 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:40,829 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,829 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:40,829 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:40,833 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,833 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:40,834 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,835 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:40,835 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,835 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,835 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,836 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:40,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,837 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:40,837 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,837 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:40,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,838 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:40,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,839 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:40,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,839 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:40,839 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,840 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:40,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,840 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:40,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,841 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:40,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,841 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:40,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,842 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,843 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:40,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,844 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:40,844 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,844 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:40,844 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:40,844 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:40,849 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:35:40,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,849 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:40,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,850 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:40,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,850 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:40,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,851 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:40,851 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,851 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:40,852 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:40,854 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:40,854 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,855 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:40,855 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:40,857 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:40,862 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,862 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:40,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:40,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,863 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:40,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:40,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,863 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:40,863 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,863 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:40,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:40,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,864 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:40,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:40,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,864 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:40,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:40,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,864 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:40,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:40,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,865 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:40,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:40,865 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,865 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:40,866 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:40,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,866 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:40,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:40,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,866 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:40,868 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:40,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,869 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:40,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:40,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,869 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:40,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:40,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,870 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:40,870 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:40,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,871 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:40,871 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:40,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,872 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:40,872 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:40,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,872 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:40,872 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:40,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,873 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:40,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:40,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,873 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:40,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:40,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,874 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:40,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:40,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,874 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:40,874 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:40,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,874 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:40,875 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:40,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,875 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:40,875 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:40,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,875 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:40,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:40,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,876 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:40,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:40,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,876 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:40,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:40,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,876 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:40,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:40,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,877 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:40,877 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:40,877 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,877 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:40,878 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:40,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,878 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:40,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:40,878 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,878 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:40,878 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:40,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,879 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:40,879 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:40,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,880 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:40,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:40,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,880 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:40,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,881 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:40,881 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:35:40,882 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:40,883 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:40,883 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:40,884 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,884 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:40,884 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:40,884 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,886 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:40,886 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,893 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:40,893 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,896 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:40,897 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,902 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:40,902 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:40,907 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,909 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:40,909 [1520] DEBUG index - id is 10 +01/30/13 11:35:40,909 [1520] DEBUG index - name is X-CEED INC 99 +01/30/13 11:35:40,909 [1520] INFO index - Account detail view +01/30/13 11:35:40,909 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:40,909 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:40,909 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:40,909 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:40,910 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:40,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,912 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:40,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,912 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:40,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,913 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:40,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,913 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:40,913 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:40,914 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:40,924 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:40,925 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:40,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,925 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:40,925 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,925 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,925 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,926 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:40,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,927 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:40,927 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,927 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,927 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,927 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:40,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,928 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:40,928 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,928 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,928 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,929 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:40,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,929 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:40,929 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,929 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,929 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,930 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:40,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,931 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:40,931 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,931 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,931 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,931 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:40,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,932 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:40,932 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,932 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,932 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,933 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:40,933 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:35:40,933 [1520] INFO index - in getAccountName 0 +01/30/13 11:35:40,933 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:40,933 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:35:40,936 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:40,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,937 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:40,937 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,937 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,937 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,937 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:40,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,938 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:40,938 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,938 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,938 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,939 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:40,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,939 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:40,939 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,939 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,940 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,940 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:40,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,941 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:40,941 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,941 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,941 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,941 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:40,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,942 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:40,942 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,942 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,942 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,943 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:40,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,943 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:40,943 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,944 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,944 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,944 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:40,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,945 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:40,945 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:40,945 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:40,945 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:40,945 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:40,945 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:40,949 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:40,949 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:40,949 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:40,951 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:40,951 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:40,951 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:40,951 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:40,954 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 305 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #504 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #504 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:40,955 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:40,955 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:40,958 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:40,958 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:40,958 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:40,958 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:40,961 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:40,961 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:40,961 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:40,961 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:40,965 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:40,965 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:40,965 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:40,965 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:40,967 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:40,967 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:40,989 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:40,990 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:40,991 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:40,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:40,991 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:40,991 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:40,992 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:40,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:40,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:40,993 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:40,993 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:40,993 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:40,993 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:40,993 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:40,993 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:40,993 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:40,997 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 305 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #512 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #512 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:40,998 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:40,998 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,001 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,001 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:41,001 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:41,001 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:41,004 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,004 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:41,005 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:41,005 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:41,008 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,008 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:41,008 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:41,008 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:41,013 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:41,013 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:41,022 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:41,022 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:41,022 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:41,023 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:41,023 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:41,023 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:41,023 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,023 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,023 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,024 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:41,024 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:41,024 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:41,025 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:41,025 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:41,030 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 305 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #520 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #520 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:41,031 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:41,031 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,034 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,034 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:41,034 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:41,034 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:41,039 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,039 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:41,039 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:41,039 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:41,044 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:41,044 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:41,044 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:41,044 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:41,046 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:41,046 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:41,067 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:41,067 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:41,067 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:41,067 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:41,068 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:41,068 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,068 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,069 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,069 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:41,070 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,070 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,070 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:41,070 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,070 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,070 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,070 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:41,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,071 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:41,071 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,071 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,071 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,072 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:41,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,072 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:41,073 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:41,073 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:41,073 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:41,073 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:41,075 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,075 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,076 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:41,076 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:41,076 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:41,078 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:41,078 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:41,078 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:41,078 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:41,079 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,080 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:41,081 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:41,083 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,083 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,083 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:41,083 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,083 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,083 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:41,083 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:41,085 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:41,085 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:41,085 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:41,085 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:41,086 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:41,088 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:41,088 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,098 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:41,098 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,101 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:41,101 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:41,101 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:41,101 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:41,101 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:41,101 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:41,101 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:41,102 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:41,102 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:41,110 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:41,110 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,110 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,111 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:41,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,111 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:41,112 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,112 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,112 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,112 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:41,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,113 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:41,113 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:36) method ... +01/30/13 11:35:41,113 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:41,113 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:36) method ... +01/30/13 11:35:41,114 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:41,114 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,114 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,114 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,114 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:41,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,115 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:41,115 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:36) method ... +01/30/13 11:35:41,115 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:41,115 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:36) method ... +01/30/13 11:35:41,116 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:41,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,116 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,116 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:41,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,117 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:41,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,117 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,118 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:41,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,118 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:41,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,119 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,119 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:41,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,120 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:41,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,120 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,121 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:41,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,121 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:41,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,121 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,122 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:41,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,123 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:41,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,123 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,123 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:41,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,124 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:41,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,124 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,125 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:41,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,125 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:41,125 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,125 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,125 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,126 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:41,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,127 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:41,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,127 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,127 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:41,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,128 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:41,128 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,128 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,128 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,129 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:41,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,129 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:41,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,129 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,130 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,130 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:41,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,131 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:41,131 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,131 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,131 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,131 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:41,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,132 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:41,132 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,132 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,132 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,133 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:41,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,133 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:41,133 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,134 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:41,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,134 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:41,134 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,135 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:41,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,135 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:41,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,135 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:41,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,135 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:41,135 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:41,136 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:41,136 [1520] DEBUG index - Entering updateInfo(10) method ... +01/30/13 11:35:41,136 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:41,136 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:41,143 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:41,143 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:41,143 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:41,143 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:41,143 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:41,146 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:41,146 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:41,148 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:36) method ... +01/30/13 11:35:41,148 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:41,149 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:41,149 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:41,149 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,149 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:41,149 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:41,149 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:41,151 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:41,151 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:41,155 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,10) method ... +01/30/13 11:35:41,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,156 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,10) method ... +01/30/13 11:35:41,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,156 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:41,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,157 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:41,157 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:41,160 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,160 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,160 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,160 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,161 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:41,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,163 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:41,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,163 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:41,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,163 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:41,163 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:41,167 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,168 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:41,168 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:41,192 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:41,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,193 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:41,193 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:41,193 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:41,195 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:41,195 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,196 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:41,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:41,196 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:41,196 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:41,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,199 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:41,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,199 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:41,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,199 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:41,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,200 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:41,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,200 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:41,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,200 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:41,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,201 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:41,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,201 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:41,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,201 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:41,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,202 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:41,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,202 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:41,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,202 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:41,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,203 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:41,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,203 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:41,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,203 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:41,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,204 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:41,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,204 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:41,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,204 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:41,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,205 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:41,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,205 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:41,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,205 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:41,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,206 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:41,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,206 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:41,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,206 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:41,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,207 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:41,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,207 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:41,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,207 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:41,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,208 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:41,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,208 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:41,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,208 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:41,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,209 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:41,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,209 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:41,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,209 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:41,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,209 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:41,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,210 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:41,210 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:41,210 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:41,210 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:41,210 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:41,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,211 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:41,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,211 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:41,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,212 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:41,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,212 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:41,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,213 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:41,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,213 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:41,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,214 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:41,214 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,214 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:41,214 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,10) method ... +01/30/13 11:35:41,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,215 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:41,216 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:41,216 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:41,228 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:41,229 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:41,229 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:41,231 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,231 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:41,231 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:41,235 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:41,236 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,236 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:41,236 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:41,238 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:41,238 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:41,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,238 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:41,238 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:41,238 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:41,238 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:41,238 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:41,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,239 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:41,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,239 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:41,239 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:41,254 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:41,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,254 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:41,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,255 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,255 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:41,255 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:41,255 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:41,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,256 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:41,256 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:41,256 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:41,10,1] +01/30/13 11:35:41,262 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,262 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:41,263 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:41,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,271 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,271 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:41,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,272 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:41,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,272 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,273 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,273 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,273 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,274 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,274 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:41,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,274 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:41,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,275 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:41,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,275 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:41,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,276 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:41,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,276 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:41,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,276 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:41,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,276 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:41,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,277 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:41,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,277 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:41,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,277 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:41,277 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,277 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:41,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,278 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:41,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,278 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:41,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,278 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:41,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,278 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:41,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,279 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:41,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,279 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:41,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,279 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:41,371 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,371 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,371 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,371 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,371 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,371 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:41,372 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:41,374 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:41,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,374 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:41,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,375 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:41,375 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,375 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,375 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,375 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,375 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,375 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:41,376 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:41,378 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:41,378 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:41,379 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:41,379 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:41,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,379 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:41,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,379 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:41,379 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:41,387 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:41,387 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,387 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,387 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:41,387 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:41,387 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:41,387 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:41,387 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,388 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:41,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,388 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:41,388 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:41,398 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:41,398 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,398 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,398 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,398 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,399 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,399 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,399 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,399 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,399 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,399 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,399 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,400 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:41,400 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:41,400 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:41,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,400 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:41,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,400 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:41,400 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:41,405 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:41,405 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,405 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,407 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,407 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,407 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,407 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,407 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,411 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:41,411 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:41,411 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:41,411 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,411 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:41,412 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:41,412 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:41,412 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:41,412 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:35:41,434 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:41,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:41,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,434 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:41,435 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,435 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:41,435 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,435 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:41,436 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:41,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:41,436 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:41,436 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:41,436 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:41,437 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:42,613 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:42,764 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:42,764 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:42,764 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:42,765 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:42,765 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'getListOfRecords', + 'ajax' => 'true', + 'CurModule' => 'Accounts', + 'CurRecordId' => '10', + 'CurParentTab' => 'Marketing', +) +01/30/13 11:35:42,765 [1520] INFO index - About to take action getListOfRecords +01/30/13 11:35:42,765 [1520] DEBUG index - in getListOfRecords +01/30/13 11:35:42,766 [1520] INFO index - current page is modules/Users/getListOfRecords.php +01/30/13 11:35:42,766 [1520] INFO index - current module is Users +01/30/13 11:35:42,799 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:42,800 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:42,800 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:42,800 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:42,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:42,801 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:42,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:42,801 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:42,801 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:42,811 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:42,811 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:42,811 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:42,811 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:42,812 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:42,812 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:42,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,813 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:42,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,813 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:42,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,814 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:42,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,814 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:42,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,815 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:42,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,815 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:42,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,816 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:42,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,816 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:42,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,817 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:42,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,817 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:42,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,818 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:42,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,818 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:42,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,819 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:42,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,819 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:42,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,820 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:42,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,820 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:42,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,821 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:42,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,821 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:42,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,822 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:42,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,822 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:42,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,823 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:42,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,823 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:42,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,824 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:42,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,824 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:42,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,824 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:42,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,825 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:42,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,825 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:42,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,826 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:42,826 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,826 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:42,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,827 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:42,827 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,827 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:42,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,828 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:42,828 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,828 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:42,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,829 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:42,829 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,829 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:42,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,830 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:42,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,830 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:42,830 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,831 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:42,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,831 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:42,831 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,832 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:42,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,832 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:42,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,833 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:42,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,833 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:42,833 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,834 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:42,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,834 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:42,834 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,835 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:42,835 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:42,835 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:42,838 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:42,838 [1520] DEBUG index - Prepared sql query parameters : [306,1,Users,getListOfRecords,,2013-01-30 11:35:42] +01/30/13 11:35:42,841 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:42,842 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:42,842 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:42,842 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:42,844 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:42,844 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:42,846 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:42,846 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:42,847 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:42,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:35:42,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:42,849 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:42,849 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:42,849 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:42,849 [1520] DEBUG index - skipping headers +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - in getColumnFields Accounts +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:42,855 [1520] DEBUG layout_utils - Prepared sql query parameters : [6] +01/30/13 11:35:42,864 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:42,864 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:42,864 [1520] DEBUG layout_utils - Exiting getColumnFields method ... +01/30/13 11:35:42,864 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT tablename,entityidfield, fieldname from vtiger_entityname WHERE modulename = ? +01/30/13 11:35:42,864 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:35:42,866 [1520] DEBUG layout_utils - Entering getFieldVisibilityPermission(Accounts,1,accountname) method ... +01/30/13 11:35:42,866 [1520] DEBUG layout_utils - Entering getTabid(Accounts) method ... +01/30/13 11:35:42,866 [1520] DEBUG layout_utils - Exiting getTabid method ... +01/30/13 11:35:42,867 [1520] DEBUG layout_utils - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:42,867 [1520] DEBUG layout_utils - Entering isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:35:42,868 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:42,868 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:35:42,872 [1520] DEBUG layout_utils - Entering when status=0 +01/30/13 11:35:42,873 [1520] DEBUG layout_utils - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:35:42,873 [1520] DEBUG layout_utils - Exiting isPermittedCustomView(4,getListOfRecords,Accounts) method.... +01/30/13 11:35:42,873 [1520] DEBUG layout_utils - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:35:42,873 [1520] DEBUG layout_utils - Prepared sql query parameters : [Accounts] +01/30/13 11:35:42,876 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,876 [1520] DEBUG layout_utils - Prepared sql query parameters : [2] +01/30/13 11:35:42,878 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,878 [1520] DEBUG layout_utils - Prepared sql query parameters : [4] +01/30/13 11:35:42,886 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,886 [1520] DEBUG layout_utils - Prepared sql query parameters : [6] +01/30/13 11:35:42,889 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,889 [1520] DEBUG layout_utils - Prepared sql query parameters : [8] +01/30/13 11:35:42,890 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,890 [1520] DEBUG layout_utils - Prepared sql query parameters : [10] +01/30/13 11:35:42,895 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,895 [1520] DEBUG layout_utils - Prepared sql query parameters : [12] +01/30/13 11:35:42,896 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,896 [1520] DEBUG layout_utils - Prepared sql query parameters : [14] +01/30/13 11:35:42,898 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,898 [1520] DEBUG layout_utils - Prepared sql query parameters : [16] +01/30/13 11:35:42,900 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,900 [1520] DEBUG layout_utils - Prepared sql query parameters : [18] +01/30/13 11:35:42,901 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,901 [1520] DEBUG layout_utils - Prepared sql query parameters : [20] +01/30/13 11:35:42,903 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT crmid FROM vtiger_crmentity where crmid=? AND deleted=0 +01/30/13 11:35:42,903 [1520] DEBUG layout_utils - Prepared sql query parameters : [138] +01/30/13 11:35:42,905 [1520] DEBUG layout_utils - Prepared sql query being executed : SELECT accountname, accountid from vtiger_account WHERE accountid IN (?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:35:42,905 [1520] DEBUG layout_utils - Prepared sql query parameters : [2,4,6,8,10,12,14,16,18,20,138] +01/30/13 11:35:46,082 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:46,209 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:46,210 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:46,210 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:46,210 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:46,210 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'DetailView', + 'parenttab' => 'Marketing', + 'record' => '138', + 'start' => '1', +) +01/30/13 11:35:46,211 [1520] INFO index - About to take action DetailView +01/30/13 11:35:46,211 [1520] DEBUG index - in DetailView +01/30/13 11:35:46,211 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:35:46,211 [1520] INFO index - current module is Accounts +01/30/13 11:35:46,245 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:46,245 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:46,245 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:46,245 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:46,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,246 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:46,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,246 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:46,246 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:46,259 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:46,259 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,259 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,259 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:46,259 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:46,260 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:46,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,261 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:46,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,261 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:46,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,262 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:46,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,262 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:46,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,263 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:46,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,263 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:46,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,264 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:46,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,264 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:46,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,265 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:46,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,265 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:46,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,266 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:46,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,266 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:46,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,267 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:46,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,267 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:46,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,268 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:46,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,268 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:46,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,269 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:46,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,269 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:46,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,270 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:46,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,270 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:46,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,271 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:46,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,271 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:46,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,272 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:46,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,272 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:46,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,273 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:46,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,273 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:46,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,274 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:46,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,274 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:46,274 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,275 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:46,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,275 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:46,275 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,276 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:46,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,276 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:46,276 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,277 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:46,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,277 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:46,277 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,278 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:46,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,278 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:46,278 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,279 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:46,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,279 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:46,279 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,280 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:46,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,280 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:46,280 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,281 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:46,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,281 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:46,281 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,282 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:46,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,282 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:46,282 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,283 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:46,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,283 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:46,283 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,284 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:46,286 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:46,286 [1520] DEBUG index - Prepared sql query parameters : [307,1,Accounts,DetailView,138,2013-01-30 11:35:46] +01/30/13 11:35:46,289 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:46,289 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:46,289 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:46,289 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:46,291 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:46,292 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:46,293 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:46,293 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:46,295 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:46,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,296 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,296 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,296 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:46,297 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:46,305 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,305 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,305 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,305 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:35:46,305 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:35:46,305 [1520] DEBUG index - Prepared sql query parameters : [1,138] +01/30/13 11:35:46,308 [1520] INFO index - in track view method Accounts +01/30/13 11:35:46,308 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,308 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:46,310 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:35:46,310 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,312 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:46,313 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:35:46,313 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,138,OSSEZ] +01/30/13 11:35:46,315 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:46,315 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:35:46,317 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:35:46,317 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:46,317 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:46,317 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:46,318 [1520] DEBUG index - including headers +01/30/13 11:35:46,318 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:46,318 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:46,321 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,322 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,323 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:35:46,323 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:35:46,324 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,329 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:35:46,329 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:46,330 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:46,330 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,330 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:46,330 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,330 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:46,331 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,331 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:46,331 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,331 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:46,332 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,332 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:46,332 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,332 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:46,333 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:46,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,340 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:46,340 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:46,340 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:46,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,341 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:46,341 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:46,341 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:46,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,342 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:46,342 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:46,342 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:46,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,344 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:46,344 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:46,344 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,344 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:46,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,345 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:46,345 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:46,345 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:46,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,346 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:46,346 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:46,346 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:46,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,347 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:46,347 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:46,348 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:46,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,348 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:46,348 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:46,349 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,349 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:46,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,349 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:46,350 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:46,350 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:46,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,351 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:46,351 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:46,351 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:46,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,352 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:46,352 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:46,352 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,352 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:46,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,353 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:46,353 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:46,353 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:46,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,354 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:46,354 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:46,355 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:46,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,355 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:46,355 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:46,356 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,356 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:46,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,356 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:46,356 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:46,357 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,357 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:46,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,357 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:46,357 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:46,358 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,358 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:46,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,359 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:46,359 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:46,359 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:46,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,360 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:46,360 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:46,360 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:46,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,361 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:46,361 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:46) method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:46) method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:46,362 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:46,363 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:46,364 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:46,364 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:46,364 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:46,367 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,367 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,367 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,367 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,367 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,368 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,370 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,371 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,373 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,375 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,376 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,376 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:46,380 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:46,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,380 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:46,380 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,384 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,384 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,384 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:46,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,385 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:46,385 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,385 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:46,385 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,385 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,386 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,387 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,388 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,389 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:46,390 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,390 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:46,390 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,390 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:46,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,391 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:46,391 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,391 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,392 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:46,393 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,394 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:46,394 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,394 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:46,394 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,394 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:46,395 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,395 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:46,395 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:46,395 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,398 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:46,399 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,399 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:35:46,399 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,399 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:46,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,400 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:46,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,401 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:46,401 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,401 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:46,401 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:46,403 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:46,403 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,403 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:46,404 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:46,406 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:46,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,412 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:46,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,413 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:46,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:46,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,413 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:46,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,413 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:46,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,413 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:46,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:46,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,414 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:46,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:46,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,414 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:46,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:46,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,414 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:46,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:46,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,415 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:46,415 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:46,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,415 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:46,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:46,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,416 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:46,418 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:46,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,418 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:46,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:46,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,419 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:46,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:46,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,420 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:46,420 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:46,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,420 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:46,421 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:46,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,421 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:46,421 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:46,421 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,421 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:46,422 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:46,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,422 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:46,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:46,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,423 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:46,423 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:46,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,424 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:46,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:46,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,424 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:46,424 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:46,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,424 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:46,424 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:46,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,424 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:46,425 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:46,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,425 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:46,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:46,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,425 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:46,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:46,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,426 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:46,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:46,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,426 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:46,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:46,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,426 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:46,426 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:46,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,427 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:46,427 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:46,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,427 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:46,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:46,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,428 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:46,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:46,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,429 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:46,429 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:46,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,429 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:46,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:46,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,430 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:46,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,431 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:46,431 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:46,431 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,433 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,433 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,433 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,434 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,434 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,434 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:46,434 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,436 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:46,436 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,440 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:46,440 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,442 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:46,442 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,444 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:46,444 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,448 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,448 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,450 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:46,450 [1520] DEBUG index - id is 138 +01/30/13 11:35:46,450 [1520] DEBUG index - name is OSSEZ +01/30/13 11:35:46,450 [1520] INFO index - Account detail view +01/30/13 11:35:46,450 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:35:46,450 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,451 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:35:46,451 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:46,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,453 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:46,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,453 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:46,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,454 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:46,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,454 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:46,454 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:46,454 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:46,470 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:35:46,471 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:35:46,471 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,472 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:46,472 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,472 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,472 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,472 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:35:46,473 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,473 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,473 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:46,473 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,473 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,473 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,474 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:35:46,474 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,474 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,474 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:46,475 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,475 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,475 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,475 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:35:46,476 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,476 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,476 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:46,476 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,476 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,476 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,477 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:35:46,477 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,477 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,477 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:46,477 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,477 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,477 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,478 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:35:46,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,479 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:46,479 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,479 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,479 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,479 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:35:46,480 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:35:46,480 [1520] INFO index - in getAccountName 8 +01/30/13 11:35:46,480 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:46,480 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:46,482 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:46,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,482 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:46,482 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,482 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,482 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,483 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:35:46,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,483 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:46,483 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,483 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,483 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,484 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:35:46,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,484 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:46,485 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,485 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,485 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,485 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:35:46,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,486 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:46,486 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,486 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,486 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,487 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:35:46,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,487 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:46,487 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,487 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,487 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,488 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:35:46,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,489 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:46,489 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,489 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,489 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,489 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:35:46,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,490 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:46,490 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:46,490 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:46,490 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:46,490 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:46,490 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:46,494 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:46,494 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:46,494 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:46,496 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:46,496 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:46,496 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,496 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:46,500 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 307 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:46,501 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,501 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,506 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,506 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:46,506 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,506 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:46,511 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,511 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:46,511 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,511 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:46,514 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,514 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:46,514 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:46,514 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:46,516 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:46,516 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:46,534 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:46,535 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:46,535 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:46,535 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:46,535 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:46,536 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:46,536 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:46,536 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:46,536 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:46,536 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:46,537 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:46,537 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:46,537 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:46,537 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:46,538 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:46,538 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:46,538 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:46,538 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:46,538 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:46,539 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:46,539 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:46,539 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:46,539 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:46,539 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:46,540 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,540 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,540 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,541 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:35:46,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,542 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:46,542 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:46,542 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:46,543 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:46,543 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:46,543 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,543 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:46,547 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 307 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:46,549 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,549 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,554 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,554 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:46,554 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,554 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:46,558 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,558 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:46,558 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,558 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:46,562 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,562 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:46,562 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:46,562 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:46,565 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:46,565 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:46,577 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:46,577 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,578 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,578 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,578 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:35:46,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,579 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:46,579 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:46,579 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:46,579 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:46,580 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:46,580 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,580 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:46,585 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 307 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:46,586 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,586 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,590 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,590 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:46,591 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,591 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:46,594 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,594 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:46,594 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:46,594 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:46,598 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:46,598 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:46,598 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:46,598 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:46,599 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:46,600 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:46,611 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:46,611 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:46,611 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:46,611 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:46,612 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:46,613 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,613 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,613 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,613 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:35:46,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,614 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:46,614 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,614 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,615 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,615 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:35:46,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,616 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:46,616 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,616 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,616 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,617 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:35:46,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,618 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:46,618 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:46,618 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:46,618 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:46,618 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:46,620 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:46,620 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:46,621 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:35:46,621 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:46,621 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,621 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,621 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,622 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:35:46,622 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:35:46,622 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:46,624 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:35:46,625 [1520] INFO index - in getOwnerName 5 +01/30/13 11:35:46,625 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:46,625 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,625 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,627 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:46,627 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:35:46,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,629 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:46,629 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,629 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,629 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:46,630 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:46,632 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:46,632 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:46,632 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:46,632 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:46,633 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:35:46,634 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,635 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,637 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,637 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,644 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:46,644 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:46,644 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:46,644 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:46,644 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:46,644 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:46,644 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:35:46,645 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:46,645 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:46,647 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:46,647 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,647 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,648 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,648 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:35:46,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,649 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:46,649 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,649 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,649 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,650 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:35:46,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,651 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:35:46,651 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:46,651 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:46,651 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:46,652 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:46,652 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,652 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,652 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,653 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:35:46,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,653 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:35:46,654 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:46,654 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:46,654 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:34:33) method ... +01/30/13 11:35:46,654 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:46,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,655 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,655 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,655 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:35:46,656 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,656 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,656 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:46,656 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,656 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,656 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,657 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:35:46,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,658 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:46,658 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,658 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,658 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,659 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:35:46,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,660 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:46,660 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,660 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,660 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,661 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:35:46,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,661 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:46,661 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,661 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,662 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,662 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:35:46,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,663 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:46,663 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,663 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,663 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,664 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:35:46,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,665 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:46,665 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,665 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,665 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,666 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:35:46,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,666 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:46,667 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,667 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,667 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,667 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:35:46,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,668 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:46,668 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,668 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,669 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,669 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:35:46,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,670 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:46,670 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,670 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,670 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,671 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:35:46,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,672 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:46,672 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,672 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,672 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,673 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:35:46,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,673 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:46,673 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,674 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,674 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,674 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:35:46,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,675 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:46,675 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,675 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,675 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,676 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:35:46,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,677 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:46,677 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:46,677 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:46,677 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:35:46,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,678 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:46,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,678 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:46,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,678 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:46,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,679 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:46,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,679 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:46,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,679 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:46,679 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:35:46,680 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:46,680 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:35:46,680 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:46,680 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,684 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:46,684 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:46,684 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:46,684 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:46,684 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:46,688 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:46,688 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,690 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:46,690 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:46,690 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:46,690 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:46,690 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,690 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,690 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:46,691 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:46,691 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:46,692 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:35:46,692 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,694 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:46,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,695 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,138) method ... +01/30/13 11:35:46,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,695 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:46,696 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,696 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:35:46,696 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:46,698 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,699 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,699 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,699 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,699 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,700 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,701 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:35:46,701 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:46,706 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,707 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:35:46,707 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:35:46,726 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:46,727 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,727 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:35:46,727 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:35:46,727 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:46,737 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:35:46,738 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,738 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:46,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,738 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:46,738 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:46,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,741 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:46,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,741 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:46,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,742 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:46,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,742 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:46,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,742 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:46,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,743 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:46,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,743 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:46,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,743 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:46,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,744 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:46,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,744 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:46,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,744 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:46,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,745 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:46,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,745 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:46,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,745 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:46,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,746 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:46,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,746 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:46,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,746 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:46,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,747 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:46,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,747 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:46,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,747 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:46,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,748 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:46,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,748 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:46,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,748 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:46,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,749 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:46,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,749 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:46,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,749 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:46,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,749 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:46,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,750 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:46,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,750 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:46,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,750 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:46,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,751 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:46,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,751 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:46,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,751 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:46,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,752 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:46,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,752 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:46,752 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:46,752 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:46,752 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:46,752 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:46,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,753 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:46,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,753 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:46,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,754 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:46,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,754 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:46,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,755 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:46,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,755 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:46,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,756 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:46,756 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,756 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:46,756 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:46,757 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,758 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:46,758 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:35:46,758 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:46,760 [1520] DEBUG index - Entering when status=0 +01/30/13 11:35:46,760 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:35:46,760 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:35:46,762 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,763 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:35:46,763 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:46,773 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:46,774 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,774 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:46,774 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:46,776 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:35:46,776 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:46,776 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,776 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:46,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,776 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:35:46,776 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:35:46,776 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:46,777 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,777 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:46,777 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,777 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:35:46,777 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:35:46,792 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:35:46,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,792 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:46,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,792 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,792 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:46,793 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:35:46,793 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:46,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,793 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:35:46,793 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:35:46,793 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:35:46,138,1] +01/30/13 11:35:46,796 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,796 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:35:46,796 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:35:46,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,804 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,805 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:46,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,805 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:46,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,805 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,806 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,806 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,806 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,807 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,807 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:46,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,807 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:46,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,808 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:46,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,808 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:46,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,809 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:46,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,809 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:46,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,809 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:35:46,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,809 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:46,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,810 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:35:46,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,810 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:46,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,810 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:35:46,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,811 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:46,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,811 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:46,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,811 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:46,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,812 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:46,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,812 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:46,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,812 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:46,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,813 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:46,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,813 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:35:46,905 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,905 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,905 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,906 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,906 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:35:46,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:46,909 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:46,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,909 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:46,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,909 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:35:46,909 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,910 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,910 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,910 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,910 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:35:46,910 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:35:46,913 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:35:46,913 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:35:46,913 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:35:46,913 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:46,913 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,913 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:46,914 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,914 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:46,914 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:35:46,921 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:46,921 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,921 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,922 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:35:46,922 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:35:46,922 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:35:46,922 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:46,922 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,922 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:46,922 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,922 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:46,922 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:35:46,933 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:46,933 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,933 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,933 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,933 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,933 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,934 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,934 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,934 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,934 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,934 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,934 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,934 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,935 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:35:46,935 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:35:46,935 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:46,935 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,935 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:46,935 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,935 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:46,935 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:46,941 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:46,941 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,941 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,943 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,943 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,943 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,943 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,945 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:46,945 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:46,945 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:46,945 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,945 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:46,945 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:35:46,946 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:46,946 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:35:46,946 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:46,972 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:46,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,972 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:35:46,972 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:46,972 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,973 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:35:46,973 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,973 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:35:46,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:46,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:46,974 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:35:46,974 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:46,974 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:46,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,661 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:35:51,796 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:35:51,796 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:35:51,797 [1520] DEBUG index - ****Starting for new session +01/30/13 11:35:51,797 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:35:51,797 [1520] DEBUG index - array ( + 'parenttab' => 'Marketing', + 'allselectedboxes' => '', + 'module' => 'Accounts', + 'record' => '138', + 'isDuplicate' => 'true', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'return_id' => '', + 'contact_id' => '', + 'member_id' => '', + 'opportunity_id' => '', + 'case_id' => '', + 'task_id' => '', + 'meeting_id' => '', + 'call_id' => '', + 'email_id' => '', + 'source_module' => '', + 'entity_id' => '', + 'accountname' => 'OSSEZ', + 'website' => '', + 'phone' => '', + 'tickersymbol' => '', + 'fax' => '', + 'otherphone' => '', + 'employees' => '', + 'email1' => '', + 'email2' => '', + 'ownership' => '', + 'industry' => '--None--', + 'rating' => '--None--', + 'accounttype' => '--None--', + 'siccode' => '', + 'annual_revenue' => '0', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'bill_street' => '123 Anywhere Street', + 'ship_street' => '123 Anywhere Street', + 'bill_pobox' => '', + 'ship_pobox' => '', + 'bill_city' => 'San Mateo', + 'ship_city' => 'San Mateo', + 'bill_state' => 'CA', + 'ship_state' => 'CA', + 'bill_code' => '82589', + 'ship_code' => '82589', + 'bill_country' => 'USA', + 'ship_country' => 'USA', + 'description' => 'd', +) +01/30/13 11:35:51,798 [1520] INFO index - About to take action EditView +01/30/13 11:35:51,798 [1520] DEBUG index - in EditView +01/30/13 11:35:51,798 [1520] INFO index - current page is modules/Accounts/EditView.php +01/30/13 11:35:51,798 [1520] INFO index - current module is Accounts +01/30/13 11:35:51,832 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:35:51,832 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:35:51,832 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:35:51,832 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:51,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,833 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:51,833 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,833 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:51,833 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:35:51,844 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:35:51,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:51,845 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:35:51,845 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:35:51,845 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:35:51,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,846 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:35:51,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,846 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:35:51,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,847 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:35:51,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,847 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:51,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,848 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:35:51,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,848 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:35:51,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,849 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:35:51,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,849 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:35:51,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,850 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:35:51,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,850 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:35:51,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,851 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:35:51,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,851 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:35:51,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,852 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:35:51,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,852 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:35:51,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,853 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:35:51,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,853 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:35:51,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,854 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:35:51,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,854 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:35:51,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,855 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:35:51,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,855 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:35:51,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,856 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:35:51,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,856 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,857 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:35:51,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,858 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:35:51,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,858 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:35:51,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,859 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:35:51,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,859 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:35:51,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,860 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:35:51,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,860 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:35:51,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,861 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:35:51,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,861 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:35:51,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,862 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:35:51,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,862 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:35:51,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,863 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:35:51,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,863 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:35:51,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,864 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:35:51,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,864 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:35:51,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,865 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:35:51,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,865 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:35:51,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,866 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:35:51,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,866 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:35:51,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,867 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:35:51,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,867 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:35:51,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,868 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:35:51,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:51,868 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:35:51,872 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:35:51,872 [1520] DEBUG index - Prepared sql query parameters : [308,1,Accounts,EditView,138,2013-01-30 11:35:51] +01/30/13 11:35:51,880 [1520] DEBUG index - Current user is: admin +01/30/13 11:35:51,880 [1520] DEBUG index - Current theme is: softed +01/30/13 11:35:51,880 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:35:51,880 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:35:51,882 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:35:51,882 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:35:51,884 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:35:51,884 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:35:51,886 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:35:51,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:51,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,887 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:35:51,887 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:35:51,887 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:35:51,887 [1520] DEBUG index - including headers +01/30/13 11:35:51,887 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:35:51,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:35:51,891 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:51,891 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:51,894 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:35:51,895 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:35:51,895 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,895 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:35:51,896 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,896 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:35:51,896 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,896 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:35:51,897 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,897 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:35:51,897 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,897 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:35:51,897 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,898 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:35:51,898 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,898 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:35:51,898 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:35:51,898 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:35:51,899 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:35:51,899 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:35:51,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:51,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,905 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:51,905 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:51,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:51,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,906 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:35:51,906 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:35:51,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:51,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,907 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:35:51,907 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:35:51,908 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:51,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,909 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:35:51,909 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:35:51,909 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,909 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:51,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,910 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:35:51,910 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:35:51,910 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:51,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,911 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:35:51,911 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:51,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:51,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,912 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:35:51,913 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:51,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:35:51,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,913 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:35:51,914 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:35:51,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,914 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:51,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,915 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:35:51,915 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:51,915 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,915 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:51,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,916 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:35:51,916 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:51,916 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:51,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,917 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:35:51,917 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:51,918 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,918 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:51,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,918 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:35:51,918 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:35:51,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:51,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,919 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:35:51,919 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:51,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:51,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,920 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:35:51,921 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:35:51,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,921 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:51,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,922 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:35:51,922 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:35:51,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,922 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:51,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,923 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:35:51,923 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:35:51,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,923 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:51,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,924 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:35:51,924 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:35:51,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,925 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:51,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,925 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:35:51,925 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:35:51,926 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:51,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,926 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:35:51,926 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:35:51,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,927 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:35:51,927 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:35:51) method ... +01/30/13 11:35:51,927 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:51,927 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:35:51) method ... +01/30/13 11:35:51,928 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:35:51,928 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:51,928 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:51,929 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:35:51,929 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:35:51,929 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:35:51,933 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,933 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,934 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,935 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,936 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,937 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,938 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,939 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,940 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,941 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,942 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:35:51,947 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:35:51,948 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,948 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:35:51,948 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:51,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:35:51,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:35:51,950 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:35:51,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,950 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,951 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,952 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:35:51,953 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,954 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:35:51,954 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,954 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:35:51,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,954 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,955 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:35:51,956 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,956 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:35:51,956 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,957 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:35:51,957 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,957 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,958 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,959 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,960 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:35:51,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,961 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:51,961 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:35:51,961 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:51,964 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:35:51,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,965 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:35:51,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,966 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:35:51,966 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,966 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:35:51,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,967 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,8) method ... +01/30/13 11:35:51,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:51,967 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:51,968 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:35:51,972 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:35:51,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:51,973 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:35:51,973 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:35:51,975 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:35:51,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:51,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,981 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:51,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:35:51,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,981 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:35:51,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:35:51,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,982 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:35:51,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:51,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,982 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:51,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:35:51,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,982 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:35:51,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:35:51,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,983 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:35:51,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:35:51,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,983 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:35:51,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:35:51,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,983 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:35:51,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:35:51,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,984 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:35:51,984 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:35:51,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,984 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:35:51,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:35:51,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,985 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:35:51,987 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:35:51,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,987 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:35:51,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:35:51,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,988 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:35:51,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:35:51,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,989 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:35:51,989 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:35:51,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,989 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:35:51,990 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:35:51,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,990 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:35:51,990 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:35:51,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,990 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:35:51,990 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:35:51,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,991 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:35:51,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:35:51,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,991 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:35:51,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:35:51,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,992 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:35:51,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:35:51,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,993 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:35:51,993 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:35:51,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,993 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:35:51,993 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:35:51,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,993 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:35:51,993 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:35:51,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,993 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:35:51,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:35:51,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,994 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:35:51,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:35:51,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,994 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:35:51,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:35:51,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,995 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:35:51,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:35:51,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,995 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:35:51,995 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:35:51,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,996 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:35:51,996 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:35:51,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,996 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:35:51,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:35:51,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,996 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:35:51,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:35:51,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,997 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:35:51,997 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:35:51,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,998 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:35:51,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:35:51,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,998 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:35:51,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:51,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:51,999 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:35:51,999 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,138) method ... +01/30/13 11:35:51,1000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,001 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:35:52,001 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:35:52,001 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,001 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,001 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:35:52,002 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,010 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,010 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:35:52,011 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:35:52,011 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:35:52,013 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:35:52,013 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,017 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:35:52,017 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,019 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:35:52,019 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,021 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:35:52,021 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,023 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:35:52,023 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,025 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,026 [1520] INFO VT - PearDatabase ->There is no entry for this entity 138 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:35:52,026 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:35:52,026 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:35:52,027 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,) method ... +01/30/13 11:35:52,027 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,027 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,027 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:35:52,027 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,029 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,030 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:52,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,030 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,030 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,031 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:52,031 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:35:52,040 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:35:52,040 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:35:52,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,041 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:52,041 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,042 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:35:52,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,042 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:52,042 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,043 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:35:52,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,043 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:52,043 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,044 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:35:52,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,044 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:52,045 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,045 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:35:52,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,046 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:52,046 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,046 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:35:52,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,047 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:52,047 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,047 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:35:52,048 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:35:52,048 [1520] INFO index - in getAccountName 8 +01/30/13 11:35:52,048 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:52,048 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:52,049 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:52,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,050 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:52,050 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,050 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:35:52,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,051 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:52,051 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,051 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:35:52,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,052 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:52,052 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,053 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:35:52,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,053 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:52,053 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,054 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:35:52,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,054 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:52,054 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,055 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:35:52,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,055 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:52,055 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,056 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:35:52,056 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,057 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,057 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:35:52,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:35:52,057 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:35:52,059 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:35:52,059 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:35:52,059 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:35:52,061 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,061 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,061 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,061 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,065 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #500 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #500 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,066 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,066 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,067 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,068 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,068 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,068 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,072 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,072 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,072 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,072 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,076 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,076 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,076 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,076 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:52,078 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,078 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:52,099 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:52,100 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:52,101 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:52,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,102 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:52,102 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,102 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:35:52,103 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,103 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,103 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,103 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,103 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,103 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,107 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #508 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #508 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,108 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,108 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,111 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,111 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,112 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,112 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,115 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,115 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,115 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,115 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,118 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,118 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,118 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,118 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:52,121 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,121 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,130 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,130 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:52,130 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:52,130 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:52,130 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:52,131 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:52,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,131 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:52,131 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,132 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:35:52,132 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,132 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,132 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,132 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,133 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,133 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,137 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #516 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #516 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,137 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,138 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,139 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,139 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,140 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,140 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,143 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,143 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,143 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,143 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,146 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,146 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,146 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,147 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:52,149 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,149 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:52,160 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:52,161 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:52,161 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:52,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,161 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:52,161 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,162 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,162 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:52,162 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,163 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:35:52,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,163 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:52,163 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,164 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:35:52,164 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:52,164 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:52,165 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:35:52,165 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:35:52,167 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:52,167 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:52,167 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:35:52,167 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:52,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,167 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:52,167 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,168 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:35:52,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,168 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:52,168 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:52,169 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:52,170 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:52,170 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:35:52,171 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:52,171 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:52,171 [1520] DEBUG index - Prepared sql query parameters : [Active,5] +01/30/13 11:35:52,174 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,174 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,176 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,176 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,178 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:52,178 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:52,178 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:52,178 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:52,178 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:52,178 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:52,178 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:35:52,179 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:52,179 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:52,181 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:52,181 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:52,181 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:52,181 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:52,181 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:52,182 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:52,182 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,182 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:35:52,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,183 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:52,183 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,183 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:35:52,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,184 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:52,184 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,185 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:35:52,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,185 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:52,185 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,186 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:35:52,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,186 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,186 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,187 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:35:52,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,187 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,187 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,188 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:35:52,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,189 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:52,189 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,189 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:35:52,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,190 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:52,190 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,190 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:35:52,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,191 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:52,191 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,191 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:35:52,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,192 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:52,192 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,192 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,193 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:52,193 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,194 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,194 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:52,194 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,195 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:35:52,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,195 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:52,195 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,196 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:35:52,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,196 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:52,197 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,197 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:35:52,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,198 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:52,198 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,198 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,198 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,199 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,199 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,199 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,199 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,199 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:35:52,200 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:52,200 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,BAS) method ... +01/30/13 11:35:52,200 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,200 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:35:52,200 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,204 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,205 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:52,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,205 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,206 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,206 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:52,206 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,BAS] +01/30/13 11:35:52,217 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:35:52,217 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:35:52,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,218 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:52,218 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,218 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:35:52,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,219 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:52,219 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,219 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:35:52,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,220 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:52,220 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,221 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:35:52,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,221 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:52,221 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,222 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:35:52,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,222 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:52,222 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,223 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:35:52,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,223 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:52,224 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,224 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:35:52,224 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:35:52,225 [1520] INFO index - in getAccountName 8 +01/30/13 11:35:52,225 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:35:52,225 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:35:52,226 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:35:52,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,227 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:52,227 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,227 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:35:52,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,228 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:52,228 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,228 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:35:52,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,229 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:52,229 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:35:52,229 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:35:52,230 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:35:52,231 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:35:52,231 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:52,231 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:35:52,231 [1520] DEBUG index - Prepared sql query parameters : [Active,5] +01/30/13 11:35:52,233 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,233 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,235 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,236 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,237 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:52,237 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:35:52,238 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:35:52,238 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:35:52,240 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:35:52,240 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:35:52,240 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:35:52,240 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:35:52,240 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:35:52,241 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:35:52,241 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,241 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:35:52,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,242 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:52,242 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,242 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:35:52,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,243 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:52,243 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,243 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:35:52,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,244 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,244 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,244 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:35:52,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,245 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,245 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,246 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:35:52,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,246 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:52,246 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,247 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:35:52,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,247 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:52,247 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,248 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:35:52,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,248 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:52,249 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,249 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:35:52,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,250 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:52,250 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,250 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,251 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,251 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:52,251 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,251 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,252 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:52,252 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,252 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:35:52,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,253 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:52,253 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,253 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:35:52,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,254 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:52,254 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,255 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:35:52,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,255 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:52,255 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,256 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,256 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,256 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,256 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,257 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,257 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,257 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,ADV) method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,257 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:35:52,258 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,260 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,261 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:35:52,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,261 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:35:52,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,262 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:35:52,262 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:35:52,262 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,ADV] +01/30/13 11:35:52,267 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +,Array,6,Array) method ... +01/30/13 11:35:52,268 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:35:52,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,268 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:52,269 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,269 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:35:52,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,270 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:52,270 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,270 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:35:52,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,271 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:52,271 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,271 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:35:52,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,272 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:52,272 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,272 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:35:52,273 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,273 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,273 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,273 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,273 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,273 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,277 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #638 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #638 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,278 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,278 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,279 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,280 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,280 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,280 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,283 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,283 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,283 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,283 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,287 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,287 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,287 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,287 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:35:52,293 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,293 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,314 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,314 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:35:52,314 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:35:52,314 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:35:52,315 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:35:52,316 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:35:52,317 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:35:52,317 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,317 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,317 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:52,317 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,317 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:35:52,318 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,318 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,318 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,318 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,318 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,318 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,326 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #646 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #646 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,327 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,327 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,329 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,329 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,329 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,329 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,333 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,333 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,333 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,333 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,336 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,336 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,336 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,336 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:35:52,342 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,342 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,350 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,350 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:35:52,350 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:35:52,350 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:35:52,350 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:35:52,351 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:35:52,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,351 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:52,351 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,351 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:35:52,352 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:35:52,352 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:35:52,352 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:35:52,352 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:35:52,352 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,352 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:35:52,356 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 308 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #654 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #654 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:35:52,357 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,357 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,359 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,359 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:35:52,359 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,359 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:35:52,374 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,374 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:35:52,374 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:35:52,374 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:35:52,377 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:35:52,377 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:35:52,377 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:35:52,378 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:35:52,379 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:35:52,379 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:35:52,391 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:35:52,392 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:35:52,392 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:35:52,392 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:35:52,392 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:35:52,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,392 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:52,392 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,393 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:35:52,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,393 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:52,393 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,394 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:35:52,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,395 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:52,395 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,395 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,396 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:52,396 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,397 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:35:52,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,397 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:52,397 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:35:52,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,398 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,398 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:35:52,398 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:35:52,398 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:35:52,399 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:35:52,399 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:35:52,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,400 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:35:52,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,400 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:35:52,400 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,401 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:35:52,401 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,401 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:35:52,401 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,401 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:35:52,402 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,402 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:52,402 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,402 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:35:52,403 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:35:52,403 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:35:52,403 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:35:52,403 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,403 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:52,406 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:35:52,406 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,408 [1520] DEBUG index - Entering updateInfo(138) method ... +01/30/13 11:35:52,408 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:35:52,409 [1520] DEBUG index - Prepared sql query parameters : [138] +01/30/13 11:35:52,410 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:35:52,411 [1520] INFO index - in getOwnerName 1 +01/30/13 11:35:52,411 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:35:52,411 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:35:52,411 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:35:52,413 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:35:52,413 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:35:52,418 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:34:33) method ... +01/30/13 11:35:52,419 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:35:52,419 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:35:52,421 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,421 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,421 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:35:52,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:35:52,421 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:35:52,421 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,424 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:35:52,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,424 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:35:52,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,425 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:35:52,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,425 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:35:52,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,425 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:35:52,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,426 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:35:52,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,426 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:35:52,426 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,426 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:35:52,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,427 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:35:52,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,427 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:35:52,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,427 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:35:52,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,428 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:35:52,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,428 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:35:52,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,428 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:35:52,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,429 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:35:52,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,429 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:35:52,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,429 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:35:52,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,430 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:35:52,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,430 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:35:52,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,430 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:35:52,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,431 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:35:52,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,431 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:35:52,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,431 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:35:52,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,432 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:35:52,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,432 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:35:52,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,432 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:35:52,432 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,432 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,432 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:35:52,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,433 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:35:52,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,433 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:35:52,433 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,433 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,433 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:35:52,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,434 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:35:52,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,434 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,434 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,434 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,434 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:35:52,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,435 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:35:52,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,435 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:35:52,435 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:35:52,435 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:35:52,435 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:35:52,435 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:35:52,436 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:35:52,436 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,436 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,436 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:35:52,436 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:35:52,436 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:35:52,436 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:35:52,438 [1520] DEBUG index - Prepared sql query being executed : select account_no from vtiger_account where account_no = ? +01/30/13 11:35:52,438 [1520] DEBUG index - Prepared sql query parameters : [ACC12] +01/30/13 11:35:52,440 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:35:52,487 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,488 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,488 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:35:52,488 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,495 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:35:52,495 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:35:52,495 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:35:52,495 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:35:52,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,504 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,505 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:52,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,505 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:52,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,506 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,506 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,506 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,507 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,507 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,508 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:35:52,510 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:35:52,510 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:35:52,510 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:35:52,652 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:35:52,652 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:35:52,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:01,981 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:02,111 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:02,111 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:02,112 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:02,112 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:02,112 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'Save', + 'accountname' => 'OSSEZ 1', + 'dup_check' => 'true', + 'record' => '', +) +01/30/13 11:36:02,112 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:36:02,112 [1520] DEBUG index - in AccountsAjax +01/30/13 11:36:02,113 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:36:02,113 [1520] INFO index - current module is Accounts +01/30/13 11:36:02,146 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:02,146 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:02,147 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:02,147 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,147 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,147 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:02,147 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:02,155 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,156 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,156 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:02,156 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:02,157 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:02,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,157 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:02,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,158 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:02,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,158 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:02,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,159 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:02,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,159 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:02,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,160 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:02,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,160 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:02,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,161 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:02,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,161 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:02,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,162 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:02,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,162 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:02,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,163 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:02,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,163 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:02,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,164 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:02,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,164 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:02,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,165 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:02,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,165 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:02,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,166 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:02,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,166 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:02,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,167 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:02,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,167 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,168 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:02,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,169 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:02,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,169 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:02,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,170 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:02,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,170 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:02,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,171 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:02,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,171 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:02,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,172 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:02,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,172 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:02,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,173 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:02,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,173 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:02,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,174 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:02,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,174 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:02,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,175 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:02,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,175 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:02,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,176 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:02,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,176 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:02,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,177 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:02,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,177 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:02,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,178 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:02,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,179 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:02,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,179 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:02,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,180 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:02,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,180 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:02,184 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:02,185 [1520] DEBUG index - Prepared sql query parameters : [309,1,Accounts,AccountsAjax,,2013-01-30 11:36:02] +01/30/13 11:36:02,188 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:02,188 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:02,188 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:02,188 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:02,189 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:02,190 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:02,191 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:02,192 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:02,193 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:02,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:02,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,194 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:02,194 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:02,194 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:02,194 [1520] DEBUG index - skipping headers +01/30/13 11:36:02,195 [1520] DEBUG index - Entering isPermitted(Accounts,Save,) method ... +01/30/13 11:36:02,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:02,198 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname FROM vtiger_account,vtiger_crmentity WHERE accountname =? and vtiger_account.accountid = vtiger_crmentity.crmid and vtiger_crmentity.deleted != 1 +01/30/13 11:36:02,198 [1520] DEBUG index - Prepared sql query parameters : [OSSEZ 1] +01/30/13 11:36:02,273 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:02,400 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:02,401 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:02,401 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:02,401 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:02,401 [1520] DEBUG index - array ( + 'pagenumber' => '', + 'module' => 'Accounts', + 'record' => '', + 'mode' => '', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => 'Accounts', + 'return_id' => '', + 'return_action' => 'DetailView', + 'return_viewname' => '', + 'createmode' => '', + 'accountname' => 'OSSEZ 1', + 'account_no' => '自动生成编号', + 'website' => '', + 'phone' => '', + 'tickersymbol' => '', + 'fax' => '', + 'account_name' => 'vtigerCRM Inc', + 'account_id' => '8', + 'otherphone' => '', + 'employees' => '', + 'email1' => '', + 'email2' => '', + 'ownership' => '', + 'industry' => '--None--', + 'rating' => '--None--', + 'accounttype' => '--None--', + 'siccode' => '', + 'annual_revenue' => '0', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'bill_street' => '123 Anywhere Street', + 'ship_street' => '123 Anywhere Street', + 'bill_pobox' => '', + 'ship_pobox' => '', + 'bill_city' => 'San Mateo', + 'ship_city' => 'San Mateo', + 'bill_state' => 'CA', + 'ship_state' => 'CA', + 'bill_code' => '82589', + 'ship_code' => '82589', + 'bill_country' => 'USA', + 'ship_country' => 'USA', + 'description' => 'd', + 'search_url' => '', +) +01/30/13 11:36:02,402 [1520] INFO index - About to take action Save +01/30/13 11:36:02,402 [1520] DEBUG index - in Save +01/30/13 11:36:02,402 [1520] INFO index - current page is modules/Accounts/Save.php +01/30/13 11:36:02,402 [1520] INFO index - current module is Accounts +01/30/13 11:36:02,437 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:02,437 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:02,437 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:02,437 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,438 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,438 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,438 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:02,438 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:02,449 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,449 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,449 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,450 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:02,450 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:02,450 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:02,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,451 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:02,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,451 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:02,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,452 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:02,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,452 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:02,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,453 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:02,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,453 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:02,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,454 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:02,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,454 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:02,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,455 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:02,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,455 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:02,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,456 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:02,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,456 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:02,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,457 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:02,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,457 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:02,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,458 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:02,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,458 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:02,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,459 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:02,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,459 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:02,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,460 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:02,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,460 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:02,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,461 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:02,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,461 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,462 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:02,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,463 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:02,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,463 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:02,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,464 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:02,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,465 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:02,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,465 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:02,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,466 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:02,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,466 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:02,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,467 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:02,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,467 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:02,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,468 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:02,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,468 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:02,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,469 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:02,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,469 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:02,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,470 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:02,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,470 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:02,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,470 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:02,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,471 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:02,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,471 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:02,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,472 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:02,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,472 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:02,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,473 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:02,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,473 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:02,479 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:02,479 [1520] DEBUG index - Prepared sql query parameters : [310,1,Accounts,Save,,2013-01-30 11:36:02] +01/30/13 11:36:02,481 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:02,481 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:02,481 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:02,481 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:02,483 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:02,484 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:02,486 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:02,486 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:02,487 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:02,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:02,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,488 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:02,488 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:02,488 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:02,489 [1520] DEBUG index - skipping headers +01/30/13 11:36:02,489 [1520] DEBUG index - Entering isPermitted(Accounts,Save,) method ... +01/30/13 11:36:02,489 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:02,491 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:02,491 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:02,491 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,491 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,491 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:02,492 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:02,500 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:02,500 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:02,501 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:36:02,501 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:02,506 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:02,506 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:02,506 [1520] INFO index - id is +01/30/13 11:36:02,506 [1520] DEBUG index - accountname=Field Name &first& Value =OSSEZ 1 +01/30/13 11:36:02,506 [1520] DEBUG index - account_no=Field Name &first& Value =自动生成编号 +01/30/13 11:36:02,506 [1520] DEBUG index - phone=Field Name &first& Value = +01/30/13 11:36:02,506 [1520] DEBUG index - website=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - fax=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - tickersymbol=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - otherphone=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - account_id=Field Name &first& Value =8 +01/30/13 11:36:02,507 [1520] DEBUG index - email1=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - employees=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - email2=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - ownership=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - rating=Field Name &first& Value =--None-- +01/30/13 11:36:02,507 [1520] DEBUG index - industry=Field Name &first& Value =--None-- +01/30/13 11:36:02,507 [1520] DEBUG index - siccode=Field Name &first& Value = +01/30/13 11:36:02,507 [1520] DEBUG index - accounttype=Field Name &first& Value =--None-- +01/30/13 11:36:02,508 [1520] DEBUG index - annual_revenue=Field Name &first& Value =0 +01/30/13 11:36:02,508 [1520] DEBUG index - assigned_user_id=Field Name &first& Value =5 +01/30/13 11:36:02,508 [1520] DEBUG index - bill_street=Field Name &first& Value =123 Anywhere Street +01/30/13 11:36:02,508 [1520] DEBUG index - ship_street=Field Name &first& Value =123 Anywhere Street +01/30/13 11:36:02,508 [1520] DEBUG index - bill_city=Field Name &first& Value =San Mateo +01/30/13 11:36:02,508 [1520] DEBUG index - ship_city=Field Name &first& Value =San Mateo +01/30/13 11:36:02,508 [1520] DEBUG index - bill_state=Field Name &first& Value =CA +01/30/13 11:36:02,508 [1520] DEBUG index - ship_state=Field Name &first& Value =CA +01/30/13 11:36:02,508 [1520] DEBUG index - bill_code=Field Name &first& Value =82589 +01/30/13 11:36:02,508 [1520] DEBUG index - ship_code=Field Name &first& Value =82589 +01/30/13 11:36:02,508 [1520] DEBUG index - bill_country=Field Name &first& Value =USA +01/30/13 11:36:02,508 [1520] DEBUG index - ship_country=Field Name &first& Value =USA +01/30/13 11:36:02,509 [1520] DEBUG index - bill_pobox=Field Name &first& Value = +01/30/13 11:36:02,509 [1520] DEBUG index - ship_pobox=Field Name &first& Value = +01/30/13 11:36:02,509 [1520] DEBUG index - description=Field Name &first& Value =d +01/30/13 11:36:02,509 [1520] DEBUG index - module name is Accounts +01/30/13 11:36:02,509 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:36:02,520 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:36:02,520 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:02,525 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Accounts +01/30/13 11:36:02,525 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:36:02,526 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:36:02,526 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:02,530 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:36:02,530 [1520] DEBUG index - Prepared sql query parameters : [139,1,5,Accounts,d,1,2013-01-30 11:36:02,2013-01-30 11:36:02] +01/30/13 11:36:02,534 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_account +01/30/13 11:36:02,534 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,534 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,534 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:36:02,534 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_account] +01/30/13 11:36:02,539 [1520] DEBUG index - Prepared sql query being executed : select cur_id,prefix from vtiger_modentity_num where semodule=? and active = 1 +01/30/13 11:36:02,539 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:02,542 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_modentity_num SET cur_id=? where cur_id=? and active=1 AND semodule=? +01/30/13 11:36:02,542 [1520] DEBUG index - Prepared sql query parameters : [13,12,Accounts] +01/30/13 11:36:02,546 [1520] DEBUG index - Entering function get_column_value (phone, , phone, 11, V='') +01/30/13 11:36:02,546 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,546 [1520] DEBUG index - Entering function get_column_value (website, , website, 17, V='') +01/30/13 11:36:02,546 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,547 [1520] DEBUG index - Entering function get_column_value (fax, , fax, 11, V='') +01/30/13 11:36:02,547 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,547 [1520] DEBUG index - Entering function get_column_value (tickersymbol, , tickersymbol, 1, V='') +01/30/13 11:36:02,547 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,547 [1520] DEBUG index - Entering function get_column_value (otherphone, , otherphone, 11, V='') +01/30/13 11:36:02,547 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,548 [1520] DEBUG index - Entering function get_column_value (email1, , email1, 13, E='') +01/30/13 11:36:02,548 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,548 [1520] DEBUG index - Entering function get_column_value (employees, , employees, 7, I='') +01/30/13 11:36:02,549 [1520] DEBUG index - Entering function get_column_value (email2, , email2, 13, E='') +01/30/13 11:36:02,549 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,549 [1520] DEBUG index - Entering function get_column_value (ownership, , ownership, 1, V='') +01/30/13 11:36:02,549 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,550 [1520] DEBUG index - Entering function get_column_value (siccode, , siccode, 1, V='') +01/30/13 11:36:02,550 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,550 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:02,550 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:02,551 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:02,551 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:02,551 [1520] DEBUG index - Entering convertToDollar(0,1.000) method ... +01/30/13 11:36:02,551 [1520] DEBUG index - Exiting convertToDollar method ... +01/30/13 11:36:02,551 [1520] DEBUG index - Entering function get_column_value (annualrevenue, 0, annual_revenue, 71, I='') +01/30/13 11:36:02,551 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_account(accountid,accountname,account_no,phone,website,fax,tickersymbol,otherphone,parentid,email1,employees,email2,ownership,rating,industry,siccode,account_type,annualrevenue,emailoptout,notify_owner) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:36:02,551 [1520] DEBUG index - Prepared sql query parameters : [139,OSSEZ 1,ACC12,,,,,,8,,0,,,--None--,--None--,,--None--,0,0,0] +01/30/13 11:36:02,556 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountbillads +01/30/13 11:36:02,556 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,557 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,557 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:36:02,557 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountbillads] +01/30/13 11:36:02,562 [1520] DEBUG index - Entering function get_column_value (bill_pobox, , bill_pobox, 1, V='') +01/30/13 11:36:02,562 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,562 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountbillads(accountaddressid,bill_street,bill_city,bill_state,bill_code,bill_country,bill_pobox) values(?,?,?,?,?,?,?) +01/30/13 11:36:02,562 [1520] DEBUG index - Prepared sql query parameters : [139,123 Anywhere Street,San Mateo,CA,82589,USA,] +01/30/13 11:36:02,565 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountshipads +01/30/13 11:36:02,565 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,565 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,565 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:36:02,566 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountshipads] +01/30/13 11:36:02,571 [1520] DEBUG index - Entering function get_column_value (ship_pobox, , ship_pobox, 1, V='') +01/30/13 11:36:02,571 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:36:02,571 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountshipads(accountaddressid,ship_street,ship_city,ship_state,ship_code,ship_country,ship_pobox) values(?,?,?,?,?,?,?) +01/30/13 11:36:02,571 [1520] DEBUG index - Prepared sql query parameters : [139,123 Anywhere Street,San Mateo,CA,82589,USA,] +01/30/13 11:36:02,580 [1520] INFO index - function insertIntoEntityTable Accounts vtiger_table name vtiger_accountscf +01/30/13 11:36:02,581 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,581 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,581 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:36:02,581 [1520] DEBUG index - Prepared sql query parameters : [6,vtiger_accountscf] +01/30/13 11:36:02,587 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_accountscf(accountid) values(?) +01/30/13 11:36:02,587 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,590 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:36:02,591 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:36:02,591 [1520] INFO VT - PearDatabase ->TRANS saveentity ends +01/30/13 11:36:02,591 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:36:02,592 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,593 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:02,593 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:02,593 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,593 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,594 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,594 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:36:02,594 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,596 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:36:02,596 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,598 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:36:02,598 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,599 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:36:02,599 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,601 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:36:02,601 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,602 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,602 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,603 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:36:02,609 [1520] DEBUG index - Prepared sql query being executed : SELECT id FROM vtiger_users WHERE is_admin='On' and status='Active' limit 1 +01/30/13 11:36:02,610 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:02,610 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:02,610 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:02,611 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:02,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,611 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:02,611 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:02,611 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:02,614 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where id=? +01/30/13 11:36:02,614 [1520] DEBUG index - Prepared sql query parameters : [11x139] +01/30/13 11:36:02,616 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:02,616 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:02,616 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,617 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:02,617 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:02,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:02,617 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 +01/30/13 11:36:02,617 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:02,619 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:02,619 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:02,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:02,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:02,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,623 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,624 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,625 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:02,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:02,627 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:36:02,631 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:02,631 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:02,631 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:36:02,635 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:36:02,635 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:36:02,684 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,684 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:36:02,686 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,686 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:36:02,688 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,688 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:36:02,690 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:02,690 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:36:02,692 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:36:02,693 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:36:02,772 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,772 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:36:02,774 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,775 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:36:02,778 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,778 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:36:02,780 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,780 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:36:02,796 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,796 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:36:02,799 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,799 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:36:02,801 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,802 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:36:02,803 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,804 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:36:02,806 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:02,806 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:36:02,811 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:36:02,811 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:36:02,862 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,862 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:36:02,865 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,865 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:36:02,867 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,867 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:36:02,869 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,869 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:36:02,871 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:36:02,871 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:02,873 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,873 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:36:02,875 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:02,875 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:36:02,878 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:36:02,878 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:36:02,921 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,921 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:36:02,923 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,923 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:36:02,925 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,926 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:36:02,938 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,938 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:36:02,940 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,940 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:36:02,943 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,944 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:36:02,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,946 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:36:02,948 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,948 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:36:02,952 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,952 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:36:02,954 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,955 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:36:02,959 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,959 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:36:02,962 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:36:02,962 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:36:02,965 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:02,970 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:02,970 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:02,973 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:02,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:02,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,976 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:02,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:02,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,977 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:36:02,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:02,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,978 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:36:02,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:02,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,978 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:36:02,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:02,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,980 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:36:02,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:02,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,980 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:36:02,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:02,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,982 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:02,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:02,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,982 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:36:02,982 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:02,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,983 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:02,984 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:02,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,984 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:02,984 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:02,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,985 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:36:02,985 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:02,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,986 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:36:02,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:02,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,987 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:02,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:02,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,988 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:36:02,988 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:02,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,989 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:36:02,989 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:02,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,989 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:36:02,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:02,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,991 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:02,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:02,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,992 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:36:02,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:02,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,993 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:36:02,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:02,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,993 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:36:02,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:02,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,993 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:02,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:02,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,994 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:02,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:02,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,994 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:02,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:02,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,995 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:36:02,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:02,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,995 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:02,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:02,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,996 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:36:02,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:02,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,996 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:02,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:02,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,996 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:36:02,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:02,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,997 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:02,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:02,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,997 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:36:02,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:02,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,998 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:02,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:02,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,998 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:36:02,998 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:02,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,999 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:02,999 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:02,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,999 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:36:02,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:02,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,1000 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:36:02,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:02,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:02,1000 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:36:02,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:36:03,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,001 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:36:03,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:36:03,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,002 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:36:03,002 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:03,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,002 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:36:03,002 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:03,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,002 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:36:03,002 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:03,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,004 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:36:03,004 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:03,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,004 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:36:03,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:03,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,004 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:03,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:03,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,005 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:36:03,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:03,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,005 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:03,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:03,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,006 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:36:03,006 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:03,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,006 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:36:03,006 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:03,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,006 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:36:03,006 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:03,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,007 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:36:03,007 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:03,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,007 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:36:03,007 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:03,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,008 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:36:03,008 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:03,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,008 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:36:03,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:03,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,009 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:36:03,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:03,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,009 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:36:03,009 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:03,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,009 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:36:03,010 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:03,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,010 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:36:03,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,011 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:03,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:03,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,013 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:03,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,013 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:36:03,013 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:03,018 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:36:03,018 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:36:03,035 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:03,035 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,035 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:36:03,035 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,044 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:03,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,044 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:03,044 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:03,044 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,044 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:03,044 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:36:03,044 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:36:03,045 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,051 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:36:03,051 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,057 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:36:03,057 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,059 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:36:03,059 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,068 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:36:03,069 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,071 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,072 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:36:03,072 [1520] INFO VT - PearDatabase ->TRANS Commited +01/30/13 11:36:03,072 [1520] INFO VT - PearDatabase ->TRANS Completed +01/30/13 11:36:03,073 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:36:03,155 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:36:03,155 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:36:03,158 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,158 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,158 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:36:03,158 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:36:03,160 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,160 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,161 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? and deleted=0 and setype='Accounts' +01/30/13 11:36:03,161 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:36:03,163 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:03,164 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,166 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:03,166 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:03,166 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:03,166 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:03,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,167 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:03,167 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:03,167 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:03,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,168 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? and deleted=0 and status='Active' +01/30/13 11:36:03,168 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:03,174 [1520] DEBUG index - Prepared sql query being executed : select groupname from vtiger_groups where groupid = ? +01/30/13 11:36:03,174 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:03,176 [1520] DEBUG index - Prepared sql query being executed : select first_name from vtiger_users where id = ? +01/30/13 11:36:03,176 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:03,182 [1520] DEBUG index - Prepared sql query being executed : select name from vtiger_ws_entity where id=? +01/30/13 11:36:03,182 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:36:03,183 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=com_vtiger_workflows +01/30/13 11:36:03,282 [1520] DEBUG index - Prepared sql query being executed : select workflow_id, module_name, summary, test, execution_condition, defaultworkflow, type + from com_vtiger_workflows where module_name=? +01/30/13 11:36:03,283 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:03,286 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflow_activatedonce + WHERE entity_id=? and workflow_id=? +01/30/13 11:36:03,286 [1520] DEBUG index - Prepared sql query parameters : [139,2] +01/30/13 11:36:03,288 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM com_vtiger_workflowtasks + INNER JOIN com_vtiger_workflowtask_queue + ON com_vtiger_workflowtasks.task_id= com_vtiger_workflowtask_queue.task_id + WHERE workflow_id=? AND entity_id=? +01/30/13 11:36:03,288 [1520] DEBUG index - Prepared sql query parameters : [2,139] +01/30/13 11:36:03,308 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,308 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,308 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_modtracker_tabs WHERE vtiger_modtracker_tabs.visible = 1 + AND vtiger_modtracker_tabs.tabid=? +01/30/13 11:36:03,309 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:03,310 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:03,311 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:03,316 [1520] DEBUG index - Saved record with id of 139 +01/30/13 11:36:03,317 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:36:03,318 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:03,318 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,407 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:03,535 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:03,535 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:03,535 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:03,536 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:03,536 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'record' => '139', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:36:03,536 [1520] INFO index - About to take action DetailView +01/30/13 11:36:03,536 [1520] DEBUG index - in DetailView +01/30/13 11:36:03,536 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:36:03,536 [1520] INFO index - current module is Accounts +01/30/13 11:36:03,571 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:03,571 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:03,571 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:03,571 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:03,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,572 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:03,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,572 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:03,572 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:03,582 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:03,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,583 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:03,583 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:03,583 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:03,584 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:03,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,584 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:03,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,585 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:03,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,585 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:03,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,586 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:03,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,586 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:03,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,587 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:03,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,587 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:03,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,588 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:03,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,588 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:03,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,589 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:03,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,589 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:03,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,590 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:03,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,590 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:03,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,591 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:03,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,591 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:03,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,592 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:03,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,592 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:03,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,593 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:03,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,593 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:03,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,595 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:03,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,595 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:03,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,596 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:03,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,596 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:03,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,596 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:03,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,597 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:03,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,597 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:03,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,598 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:03,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,598 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:03,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,599 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:03,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,599 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:03,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,600 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:03,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,600 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:03,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,601 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:03,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,601 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:03,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,602 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:03,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,602 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:03,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,603 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:03,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,603 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:03,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,604 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:03,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,604 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:03,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,605 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:03,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,605 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:03,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,606 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:03,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,606 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:03,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,607 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:03,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,607 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:03,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:03,608 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:03,617 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:03,617 [1520] DEBUG index - Prepared sql query parameters : [311,1,Accounts,DetailView,139,2013-01-30 11:36:03] +01/30/13 11:36:03,621 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:03,621 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:03,621 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:03,621 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:03,623 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:03,623 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:03,625 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:03,625 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:03,627 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:03,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,627 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:03,628 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:03,628 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,628 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:03,628 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:03,637 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,637 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,637 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:03,637 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:36:03,637 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:36:03,637 [1520] DEBUG index - Prepared sql query parameters : [1,139] +01/30/13 11:36:03,639 [1520] INFO index - in track view method Accounts +01/30/13 11:36:03,639 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,639 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:03,640 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:36:03,641 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,642 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:36:03,642 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:36:03,642 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,139,OSSEZ 1] +01/30/13 11:36:03,645 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:36:03,645 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:36:03,646 [1520] DEBUG Tracker - history size: (current, max)(6, 5) +01/30/13 11:36:03,646 [1520] DEBUG Tracker - About to try and find oldest item: SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC +01/30/13 11:36:03,646 [1520] DEBUG index - limitQuery sql = SELECT * from vtiger_tracker WHERE user_id='1' ORDER BY id ASC st = 0 co = 1 +01/30/13 11:36:03,648 [1520] DEBUG Tracker - About to delete oldest item: +01/30/13 11:36:03,648 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE id=? +01/30/13 11:36:03,649 [1520] DEBUG index - Prepared sql query parameters : [90] +01/30/13 11:36:03,651 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:03,651 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:03,651 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:03,651 [1520] DEBUG index - including headers +01/30/13 11:36:03,651 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:36:03,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:36:03,655 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,655 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,657 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:36:03,657 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:36:03,657 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:03,663 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:36:03,663 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:36:03,664 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:36:03,664 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,664 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:36:03,665 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,665 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:36:03,665 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,665 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:36:03,666 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,666 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:36:03,666 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,666 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:36:03,667 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,667 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:36:03,667 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,667 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:36:03,667 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:03,668 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:36:03,668 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:36:03,668 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:36:03,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,682 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:03,682 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:03,683 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:03,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:36:03,683 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:36:03,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:03,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,685 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:36:03,685 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:03,685 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:03,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,686 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:36:03,687 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:36:03,687 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,687 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:03,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,688 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:36:03,688 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:36:03,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:03,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,689 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:36:03,689 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:03,689 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:03,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,690 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:36:03,690 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:03,691 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:03,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,691 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:36:03,691 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:36:03,692 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,692 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:03,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,693 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:36:03,693 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:03,693 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:03,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,694 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:36:03,694 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:03,694 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:03,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,695 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:36:03,695 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:03,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,696 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:03,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,696 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:36:03,696 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:36:03,696 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:03,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:36:03,697 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:03,698 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,698 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:03,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,698 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:36:03,698 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:36:03,699 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,699 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:03,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,700 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:36:03,700 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:36:03,700 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,700 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:03,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,701 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:36:03,701 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:36:03,701 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,701 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:03,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,702 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:36:03,702 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:36:03,703 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:03,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,703 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:36:03,703 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:36:03,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:03,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,704 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:36:03,704 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:36:03,705 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,705 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:36:03,705 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:03) method ... +01/30/13 11:36:03,705 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:03,705 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:03) method ... +01/30/13 11:36:03,706 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:03,706 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:03,706 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:03,707 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:36:03,707 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:36:03,707 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:36:03,712 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,712 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,712 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,712 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,714 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,715 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,721 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:36:03,725 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:03,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,726 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:03,726 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:03,727 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,727 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,728 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:03,728 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,728 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,729 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:03,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,730 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:03,730 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,730 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:03,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,731 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,732 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,733 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:03,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,734 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:03,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,734 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:36:03,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,735 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:36:03,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,735 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:03,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,737 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:36:03,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,737 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:03,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,737 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:36:03,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,738 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:03,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,738 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:36:03,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,738 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:03,738 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:03,739 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:03,746 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:03,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,747 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:36:03,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,747 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:36:03,748 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,748 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:36:03,748 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,749 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:36:03,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,749 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:03,749 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:36:03,751 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:36:03,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,751 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:36:03,751 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:36:03,754 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:36:03,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,760 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:03,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:03,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,760 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:03,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:03,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,761 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:36:03,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,761 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:03,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:03,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,761 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:03,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:03,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,762 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:03,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:03,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,762 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:03,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:03,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,762 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:03,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:03,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,763 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:03,763 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:03,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,763 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:03,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:36:03,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,764 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:36:03,766 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:03,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,766 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:36:03,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:36:03,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,767 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:36:03,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:36:03,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,767 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:36:03,767 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:36:03,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,768 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:36:03,768 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:03,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,769 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:36:03,769 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:03,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,769 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:36:03,769 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:36:03,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,770 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:36:03,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:36:03,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,770 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:36:03,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:36:03,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,771 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:36:03,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:03,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,771 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:03,771 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:03,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,772 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:03,772 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:03,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,772 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:36:03,772 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:03,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,772 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:36:03,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:03,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,773 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:36:03,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:03,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,773 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:36:03,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:03,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,774 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:03,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:03,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,774 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:03,774 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:03,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,775 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:03,775 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:03,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,775 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:36:03,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:03,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,775 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:36:03,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:03,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,776 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:03,776 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:03,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,777 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:36:03,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:03,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,777 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:03,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,778 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:36:03,778 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:03,778 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:03,781 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:03,781 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:03,781 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,781 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:03,781 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:36:03,781 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,787 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:36:03,788 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,791 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:36:03,791 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,795 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:36:03,795 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,797 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:36:03,798 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,799 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,801 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:36:03,801 [1520] DEBUG index - id is 139 +01/30/13 11:36:03,801 [1520] DEBUG index - name is OSSEZ 1 +01/30/13 11:36:03,801 [1520] INFO index - Account detail view +01/30/13 11:36:03,801 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:36:03,801 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:03,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:03,801 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:36:03,801 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:03,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,804 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:03,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,804 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:36:03,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,804 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:03,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,805 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:03,805 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:03,805 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:36:03,814 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:36:03,815 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:36:03,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,815 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:03,815 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,816 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,816 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,816 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:36:03,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,817 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:03,817 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,817 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,817 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,818 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:36:03,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,818 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:03,818 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,818 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,818 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,819 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:36:03,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,819 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:03,820 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,820 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,820 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,820 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:36:03,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,821 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:03,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,821 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,821 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,822 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:36:03,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,822 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:03,822 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,822 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,823 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:36:03,823 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:36:03,823 [1520] INFO index - in getAccountName 8 +01/30/13 11:36:03,824 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:36:03,824 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:36:03,825 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:36:03,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,825 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:03,825 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,826 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,826 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,826 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:36:03,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,827 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:03,827 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,827 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,827 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,828 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:36:03,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,828 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:03,828 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,828 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,828 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,829 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:36:03,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,830 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:03,830 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,830 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,830 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,830 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:36:03,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,831 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:03,831 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,831 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,831 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,832 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:36:03,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,832 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:03,832 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,832 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,832 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,833 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:36:03,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,834 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:03,834 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:03,834 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:03,834 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:36:03,834 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:36:03,834 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:36:03,836 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:36:03,836 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:36:03,836 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:36:03,839 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:03,839 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:03,839 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,839 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:03,842 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 311 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #504 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #504 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:03,843 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,843 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,848 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,848 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:03,848 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,848 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:03,851 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,852 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:03,852 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,852 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:03,856 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,856 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:03,856 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:03,856 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:36:03,858 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:03,858 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:03,882 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:03,882 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:36:03,882 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:36:03,882 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:36:03,883 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:36:03,884 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:36:03,885 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:36:03,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,885 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,885 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,886 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:03,886 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:03,886 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,886 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:03,890 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 311 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #512 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #512 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:03,891 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,891 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,894 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,894 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:03,894 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,894 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:03,897 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,897 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:03,897 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,897 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:03,900 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,900 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:03,900 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:03,901 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:36:03,902 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:03,902 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:03,910 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:03,910 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:36:03,911 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:36:03,911 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:36:03,911 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:36:03,911 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:36:03,911 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,911 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,911 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,912 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:36:03,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,912 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:03,912 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:03,912 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:03,912 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:03,913 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:03,913 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,913 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:03,916 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 311 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #520 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #520 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:03,917 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,917 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,919 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,920 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:03,920 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,920 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:03,923 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,923 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:03,923 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:03,923 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:03,927 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:03,927 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:03,928 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:03,928 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:36:03,929 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:03,929 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:36:03,943 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:36:03,944 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:36:03,944 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:36:03,944 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:03,944 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:03,944 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,944 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,944 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,945 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:36:03,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,945 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:03,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,945 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,946 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:36:03,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,947 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:03,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,947 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,947 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:36:03,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,948 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:03,948 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:03,948 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:03,948 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:36:03,948 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:03,950 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:03,950 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:03,950 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:36:03,951 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:36:03,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,951 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,951 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:36:03,952 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:36:03,952 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:03,953 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:36:03,954 [1520] INFO index - in getOwnerName 5 +01/30/13 11:36:03,954 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:36:03,954 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,954 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,956 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:36:03,956 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:03,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,957 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:03,958 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,958 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,958 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:36:03,958 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:36:03,959 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:36:03,959 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:03,960 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:03,960 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:36:03,960 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:36:03,962 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,962 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,964 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,964 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,966 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:03,966 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:03,966 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:03,966 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:03,966 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:03,966 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:03,966 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:03,967 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:03,967 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:36:03,969 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:03,969 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:03,969 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:36:03,969 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:03,969 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:36:03,969 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:03,969 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,970 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,970 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,970 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:36:03,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,971 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:03,971 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,971 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,971 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,972 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:36:03,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,972 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:36:03,972 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:03,972 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:03,973 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:36:03,973 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:03,973 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,973 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,973 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,974 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:36:03,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,974 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:36:03,974 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,975 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,976 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:36:03,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,976 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:03,976 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,976 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,977 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,977 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:36:03,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,978 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:03,978 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,978 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,978 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,978 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:36:03,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,979 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:03,979 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,979 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,979 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,980 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:36:03,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,980 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:03,981 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,981 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,981 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,981 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:36:03,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,982 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:03,982 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,982 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,982 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,983 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:36:03,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,983 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:03,983 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,983 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,983 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,984 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:36:03,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,985 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:03,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,985 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,985 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,985 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:36:03,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,986 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:03,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,986 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,987 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:36:03,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,987 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:03,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,988 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,988 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:36:03,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,989 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:03,989 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,989 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,989 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,989 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:36:03,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,990 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:03,990 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,990 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,990 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,991 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:36:03,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,991 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:03,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,992 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,992 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,992 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,993 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:03,993 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,993 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:03,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,994 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:03,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,994 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:03,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,994 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:03,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,994 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:03,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:03,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:03,995 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:03,995 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:36:03,995 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:03,995 [1520] DEBUG index - Entering updateInfo(139) method ... +01/30/13 11:36:03,995 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:36:03,995 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:03,997 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:36:03,997 [1520] INFO index - in getOwnerName 1 +01/30/13 11:36:03,997 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:36:03,997 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:03,997 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:03,999 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:36:03,999 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:04,001 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:04,001 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:04,001 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:36:04,001 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:36:04,001 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,001 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,002 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:36:04,002 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:04,002 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:04,003 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:36:04,003 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:04,005 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:36:04,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,005 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,139) method ... +01/30/13 11:36:04,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,006 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:04,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,006 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:04,006 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:04,008 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,008 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,008 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,009 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,009 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:04,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,011 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:04,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,011 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:04,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,011 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:36:04,011 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:04,014 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,015 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,015 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:36:04,015 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:36:04,031 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:36:04,032 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,032 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:36:04,032 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:36:04,032 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:04,037 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:36:04,037 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,037 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:04,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:04,037 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:36:04,037 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:04,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,040 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:04,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,041 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:04,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,041 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:04,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,041 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:04,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,042 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:04,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,042 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:04,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,042 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:04,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,043 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:04,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,043 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:04,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,043 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:04,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,044 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:04,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,044 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:04,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,044 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:04,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,045 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:04,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,045 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:04,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,045 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:04,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,046 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:04,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,046 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:04,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,046 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:04,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,046 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:04,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,047 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:36:04,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,047 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:04,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,047 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:04,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,048 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:04,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,048 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:04,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,048 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:04,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,049 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:04,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,049 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:04,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,049 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:04,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,050 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:04,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,050 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:04,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,050 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:04,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,051 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:04,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,051 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:04,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,051 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:36:04,051 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:36:04,052 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:36:04,052 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:36:04,052 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:04,052 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,052 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:36:04,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,053 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:36:04,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,053 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:36:04,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,054 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:36:04,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,054 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:36:04,054 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,054 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:04,055 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,055 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:36:04,055 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,056 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:36:04,056 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:36:04,056 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,057 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:36:04,057 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:36:04,057 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:36:04,062 [1520] DEBUG index - Entering when status=0 +01/30/13 11:36:04,062 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:36:04,062 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:36:04,064 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,064 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,064 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,064 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,064 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,065 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,065 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/30/13 11:36:04,071 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,071 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:36:04,071 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:04,074 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:04,075 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,075 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:04,075 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:04,078 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:36:04,078 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:36:04,079 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:36:04,079 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,079 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:36:04,079 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:36:04,089 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:36:04,090 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:04,091 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,091 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:04,091 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:36:04,091 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:36:04,139,1] +01/30/13 11:36:04,094 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,094 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:36:04,094 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:36:04,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,102 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,103 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:04,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,103 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:04,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,103 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,104 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,104 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,104 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,104 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,105 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,105 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:04,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,105 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:04,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,106 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:04,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,106 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:04,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,106 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:04,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,107 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:04,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,107 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:36:04,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,107 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:04,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,108 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:36:04,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,108 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:04,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,108 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:36:04,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,109 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:04,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,109 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:04,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,109 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:04,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,109 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:04,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,110 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:04,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,110 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:04,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,110 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:04,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,111 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:36:04,200 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,200 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,200 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,200 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,200 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:36:04,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:04,203 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:04,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,203 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:04,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,204 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:36:04,204 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,204 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,204 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,204 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,204 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:36:04,205 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:36:04,207 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:36:04,207 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:36:04,207 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:36:04,207 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:04,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,208 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:04,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,208 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:04,208 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:36:04,215 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:04,215 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,216 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:36:04,216 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:36:04,216 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,216 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:04,217 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:36:04,226 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:04,226 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,227 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,227 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,227 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,227 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,227 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,227 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,227 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,228 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,228 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,228 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,228 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:36:04,228 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:36:04,228 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:04,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,228 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:04,229 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,229 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:04,229 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:04,234 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:04,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,234 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,235 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,236 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,236 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,236 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,237 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:04,238 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:04,238 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:04,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,238 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:04,238 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:36:04,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:04,239 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:36:04,239 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:04,263 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:04,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:04,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,264 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:36:04,264 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,264 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:36:04,264 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,265 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:36:04,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:04,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:04,265 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:04,265 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:36:04,266 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:04,266 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,366 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:11,500 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:11,500 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:11,500 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:11,501 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:11,501 [1520] DEBUG index - array ( + 'parenttab' => 'Marketing', + 'allselectedboxes' => '', + 'module' => 'Accounts', + 'record' => '139', + 'isDuplicate' => 'false', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'return_id' => '139', + 'contact_id' => '', + 'member_id' => '', + 'opportunity_id' => '', + 'case_id' => '', + 'task_id' => '', + 'meeting_id' => '', + 'call_id' => '', + 'email_id' => '', + 'source_module' => '', + 'entity_id' => '', + 'accountname' => 'OSSEZ 1', + 'website' => '', + 'phone' => '', + 'tickersymbol' => '', + 'fax' => '', + 'otherphone' => '', + 'employees' => '', + 'email1' => '', + 'email2' => '', + 'ownership' => '', + 'industry' => '--None--', + 'rating' => '--None--', + 'accounttype' => '--None--', + 'siccode' => '', + 'annual_revenue' => '0', + 'assigntype' => 'U', + 'assigned_user_id' => '5', + 'assigned_group_id' => '3', + 'bill_street' => '123 Anywhere Street', + 'ship_street' => '123 Anywhere Street', + 'bill_pobox' => '', + 'ship_pobox' => '', + 'bill_city' => 'San Mateo', + 'ship_city' => 'San Mateo', + 'bill_state' => 'CA', + 'ship_state' => 'CA', + 'bill_code' => '82589', + 'ship_code' => '82589', + 'bill_country' => 'USA', + 'ship_country' => 'USA', + 'description' => 'd', +) +01/30/13 11:36:11,501 [1520] INFO index - About to take action EditView +01/30/13 11:36:11,501 [1520] DEBUG index - in EditView +01/30/13 11:36:11,501 [1520] INFO index - current page is modules/Accounts/EditView.php +01/30/13 11:36:11,501 [1520] INFO index - current module is Accounts +01/30/13 11:36:11,536 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:11,536 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:11,536 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:11,536 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:11,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,537 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:11,537 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,537 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:11,537 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:11,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:11,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,550 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:11,550 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:11,550 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:11,551 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:11,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,552 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:11,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,552 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:11,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,553 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:11,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,553 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:11,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,554 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:11,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,554 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:11,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,555 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:11,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,555 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:11,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,555 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:11,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,556 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:11,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,556 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:11,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,557 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:11,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,557 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:11,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,558 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:11,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,558 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:11,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,559 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:11,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,559 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:11,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,560 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:11,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,560 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:11,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,561 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:11,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,561 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:11,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,562 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:11,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,562 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:11,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,563 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:11,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,563 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:11,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,564 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:11,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,564 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:11,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,565 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:11,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,565 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:11,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,566 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:11,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,566 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:11,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,567 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:11,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,567 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:11,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,568 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:11,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,568 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:11,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,568 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:11,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,569 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:11,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,569 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:11,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,570 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:11,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,570 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:11,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,571 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:11,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,571 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:11,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,572 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:11,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,572 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:11,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,573 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:11,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,573 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:11,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:11,574 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:11,577 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:11,577 [1520] DEBUG index - Prepared sql query parameters : [312,1,Accounts,EditView,139,2013-01-30 11:36:11] +01/30/13 11:36:11,617 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:11,617 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:11,617 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:11,617 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:11,621 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:11,621 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:11,625 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:11,625 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:11,628 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:11,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,630 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:11,630 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:11,630 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:11,630 [1520] DEBUG index - including headers +01/30/13 11:36:11,630 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:36:11,632 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:36:11,638 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,638 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,643 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:36:11,644 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:36:11,645 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,645 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:36:11,646 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,646 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:36:11,646 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,647 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:36:11,647 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,648 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:36:11,648 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,648 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:36:11,649 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,649 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:36:11,650 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,650 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:36:11,651 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:11,651 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:36:11,651 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:36:11,651 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:36:11,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,658 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:11,658 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:11,659 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:11,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,660 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:36:11,660 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:36:11,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:11,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,663 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:36:11,663 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:11,664 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:11,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,665 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:36:11,665 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:36:11,666 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,666 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:11,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,666 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:36:11,666 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:36:11,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:11,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,667 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:36:11,668 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:11,668 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:11,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,669 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:36:11,669 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:11,669 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:11,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,670 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:36:11,670 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:36:11,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,670 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:11,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,671 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:36:11,671 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:11,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:11,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,672 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:36:11,673 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:11,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:11,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,674 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:36:11,674 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:11,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,674 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:11,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,675 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:36:11,675 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:36:11,675 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:11,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,676 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:36:11,676 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:11,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:11,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,677 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:36:11,677 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:36:11,678 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,678 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:11,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,678 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:36:11,678 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:36:11,679 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,679 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:11,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,680 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:36:11,680 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:36:11,680 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,680 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:11,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,681 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:36:11,681 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:36:11,682 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:11,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,682 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:36:11,682 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:36:11,683 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:11,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:36:11,684 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:36:11,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,684 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:36:11,684 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:11) method ... +01/30/13 11:36:11,684 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:11,685 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:11) method ... +01/30/13 11:36:11,685 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:11,685 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:11,685 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:11,686 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:36:11,686 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:36:11,686 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:36:11,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,691 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,692 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,693 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,694 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,695 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,696 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,697 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,698 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,699 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:36:11,711 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:11,711 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,711 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:11,711 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:11,713 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:11,713 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:11,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,715 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:11,715 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,715 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,715 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,715 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:11,716 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,717 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:11,717 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,717 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:11,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,717 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,718 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:11,719 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,719 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:11,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,719 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:11,719 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,720 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:11,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,720 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:36:11,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,721 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:36:11,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,721 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,722 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:36:11,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,723 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:11,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,723 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:36:11,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,724 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:11,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,724 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:36:11,724 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,724 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:11,724 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:11,725 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:11,733 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:11,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,733 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:36:11,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,734 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:36:11,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,734 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:36:11,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,735 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:36:11,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,736 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:11,736 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:36:11,738 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:36:11,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,738 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:36:11,738 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:36:11,741 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:36:11,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,746 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:11,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:11,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,747 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:11,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:11,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,747 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:36:11,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,747 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:11,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:11,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,748 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:11,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:11,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,748 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:11,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:11,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,748 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:11,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:11,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,749 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:11,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:11,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,749 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:11,750 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:11,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,750 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:11,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:36:11,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,750 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:36:11,752 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:11,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,753 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:36:11,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:36:11,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,753 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:36:11,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:36:11,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,754 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:36:11,754 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:36:11,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,755 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:36:11,755 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:11,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,755 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:36:11,755 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:11,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,755 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:36:11,756 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:36:11,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,756 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:36:11,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:36:11,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,757 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:36:11,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:36:11,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,757 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:36:11,757 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:11,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,758 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:11,758 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:11,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,758 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:11,758 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:11,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,758 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:36:11,758 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:11,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,759 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:36:11,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:11,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,759 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:36:11,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:11,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,760 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:36:11,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:11,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,760 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:11,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:11,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,760 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:11,760 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:11,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,761 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:11,761 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:11,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,761 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:36:11,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:11,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,762 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:36:11,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:11,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,762 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:11,763 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:11,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,763 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:36:11,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:11,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,764 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:11,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,764 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:36:11,765 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:36:11,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:11,767 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:11,767 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:11,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,767 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:11,767 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:11,778 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,778 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,778 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:11,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:11,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:11,780 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:36:11,780 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:11,782 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:36:11,782 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:11,785 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:36:11,785 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:11,790 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:36:11,790 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:11,796 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:36:11,796 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:11,798 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,799 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:36:11,799 [1520] DEBUG index - Entering getView(edit) method ... +01/30/13 11:36:11,799 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:36:11,800 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,) method ... +01/30/13 11:36:11,800 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,800 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:36:11,800 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:11,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,803 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:11,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,803 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:36:11,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,803 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:11,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,804 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:11,804 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:11,804 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:36:11,817 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:36:11,818 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:36:11,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,818 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:11,819 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,819 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:36:11,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,820 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:11,820 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,820 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:36:11,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,821 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:11,821 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,821 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:36:11,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,822 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:11,822 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,822 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:36:11,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,823 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:11,823 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,823 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:36:11,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,824 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:11,824 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,825 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:36:11,825 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:36:11,825 [1520] INFO index - in getAccountName 8 +01/30/13 11:36:11,825 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:36:11,825 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:36:11,827 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:36:11,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,827 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:11,827 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,828 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:36:11,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,828 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:11,828 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,829 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:36:11,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,829 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:11,829 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,830 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:36:11,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,830 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:11,831 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,831 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:36:11,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,832 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:11,832 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,832 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:36:11,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,833 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:11,833 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,833 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:36:11,834 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:11,834 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:11,834 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:36:11,834 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:36:11,834 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:36:11,836 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:36:11,836 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:36:11,836 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:36:11,838 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:11,838 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:11,838 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,838 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:11,842 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #500 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #500 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:11,843 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,843 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,845 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,845 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:11,845 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,846 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:11,849 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,849 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:11,849 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,849 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:11,852 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,852 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:11,852 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:11,852 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:36:11,854 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:11,854 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:11,871 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:11,871 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:36:11,872 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:11,873 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:36:11,874 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:36:11,874 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:36:11,874 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:36:11,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,874 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:11,874 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:11,875 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,876 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:11,879 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #508 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #508 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:11,880 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,880 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,882 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,882 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:11,882 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,882 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:11,885 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,885 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:11,886 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,886 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:11,889 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,889 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:11,889 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:11,889 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:36:11,890 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:11,890 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:36:11,899 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:36:11,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,900 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:11,900 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,900 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:36:11,901 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:11,901 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:11,901 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:11,901 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:11,901 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,901 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:11,905 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #516 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #516 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:11,905 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,906 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,908 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,908 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:11,908 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,908 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:11,911 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,911 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:11,911 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:11,911 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:11,914 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:11,915 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:11,915 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:11,915 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:36:11,916 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:11,916 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:36:11,928 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:11,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,929 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:11,929 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,930 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:36:11,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,930 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:11,931 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,931 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:36:11,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,932 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:11,932 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,932 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:36:11,933 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:11,933 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:11,933 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:36:11,933 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:11,935 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:11,935 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:11,935 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:36:11,935 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:36:11,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,935 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:11,935 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,936 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:36:11,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,936 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:11,936 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:36:11,936 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:36:11,938 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:36:11,938 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:36:11,938 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:11,938 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:36:11,939 [1520] DEBUG index - Prepared sql query parameters : [Active,5] +01/30/13 11:36:11,941 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,941 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,942 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,943 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:11,944 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:11,944 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:11,944 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:11,945 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:11,945 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:11,945 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:11,945 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:36:11,945 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:11,945 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:36:11,947 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:11,947 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:11,947 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:11,947 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:11,947 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:11,948 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:11,948 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,948 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:36:11,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,949 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:11,949 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,949 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:36:11,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,950 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:11,950 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,950 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:36:11,951 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,951 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:11,951 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,951 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:36:11,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,952 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:11,952 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,953 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:36:11,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,953 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:11,953 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,954 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:36:11,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,954 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:11,954 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,955 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:36:11,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,955 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:11,955 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,956 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:36:11,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,957 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:11,957 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,957 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:36:11,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,958 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:11,958 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,958 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:36:11,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,959 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:11,959 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,959 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:36:11,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,960 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:11,960 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,961 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:36:11,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,961 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:11,961 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,962 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:36:11,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,962 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:11,962 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,963 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:36:11,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,963 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:11,964 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,964 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:11,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,964 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:11,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,964 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:11,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,965 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:11,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,965 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:11,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,965 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:11,965 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:36:11,965 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:11,966 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,BAS) method ... +01/30/13 11:36:11,966 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:11,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:11,966 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:36:11,966 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:11,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,968 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:11,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,968 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:36:11,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,969 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:11,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,969 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:11,969 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:11,970 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,BAS] +01/30/13 11:36:11,979 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:36:11,980 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:36:11,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,980 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:11,980 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,981 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:36:11,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,981 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:11,982 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,982 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:36:11,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,983 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:11,983 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,983 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:36:11,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,984 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:11,984 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,984 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:36:11,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,985 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:11,985 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,985 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:36:11,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,986 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:11,986 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,986 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:36:11,987 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:36:11,987 [1520] INFO index - in getAccountName 8 +01/30/13 11:36:11,987 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:36:11,987 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:36:11,989 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:36:11,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,989 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:11,989 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,989 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:36:11,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,990 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:11,990 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:11,991 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:36:11,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:11,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:11,991 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:11,991 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:36:11,991 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:36:11,995 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:36:11,995 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:36:11,995 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:11,995 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:36:11,995 [1520] DEBUG index - Prepared sql query parameters : [Active,5] +01/30/13 11:36:11,997 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:11,997 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,003 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,003 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,005 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:12,005 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:12,005 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:12,005 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:12,005 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:12,006 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:12,006 [1520] DEBUG index - Entering get_user_array(,Active,5,) method ... +01/30/13 11:36:12,006 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:12,006 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:36:12,008 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:12,008 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:12,008 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:12,008 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:12,008 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:12,008 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:12,008 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,009 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:36:12,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,009 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:12,009 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,010 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:36:12,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,010 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:12,011 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,011 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:36:12,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,012 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:12,012 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,012 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:36:12,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,013 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:12,013 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,013 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:36:12,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,014 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:12,014 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,014 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:36:12,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,015 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:12,015 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,015 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:36:12,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,016 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:12,016 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,017 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:36:12,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,017 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:12,017 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,018 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:36:12,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,018 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:12,018 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,019 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:36:12,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,020 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:12,020 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,020 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:36:12,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,021 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:12,021 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,021 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:36:12,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,022 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:12,022 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,022 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:36:12,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,023 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:12,023 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,023 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:12,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,024 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:12,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,024 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:12,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,024 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:12,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,024 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:12,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,025 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:12,025 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,,Array,ADV) method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:12,025 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:36:12,025 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:12,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,028 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:12,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,028 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:36:12,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,028 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:12,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,029 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:12,029 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:12,029 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,ADV] +01/30/13 11:36:12,035 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +,Array,6,Array) method ... +01/30/13 11:36:12,035 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:36:12,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,036 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:12,036 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,037 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:36:12,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,037 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:12,037 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,038 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:36:12,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,038 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:12,038 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,039 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:36:12,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,039 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:12,040 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,040 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:36:12,041 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:12,041 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:12,041 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:12,041 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:12,041 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,041 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:12,047 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #638 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #638 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:12,048 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,048 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,050 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,050 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:12,050 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,050 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:12,054 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,054 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:12,054 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,054 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:12,057 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,057 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:12,057 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:12,057 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:36:12,059 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:12,059 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:12,076 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:12,076 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:36:12,076 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:36:12,077 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:36:12,078 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:36:12,079 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:36:12,079 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:36:12,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,079 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:12,079 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:12,080 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,080 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:12,084 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #646 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #646 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:12,085 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,085 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,087 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,088 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:12,088 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,088 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:12,091 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,091 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:12,091 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,091 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:12,097 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,097 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:12,097 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:12,098 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:36:12,100 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:12,100 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:36:12,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,109 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:12,109 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,110 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:36:12,110 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:12,110 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:12,111 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:12,111 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:12,111 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,111 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:12,118 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 312 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #654 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #654 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:12,119 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,119 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,121 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,121 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:12,121 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,121 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:12,125 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,125 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:12,125 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:12,125 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:12,128 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:12,128 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:12,128 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:12,128 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:36:12,130 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:12,130 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:36:12,143 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:36:12,144 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:36:12,144 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:12,144 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:12,144 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,144 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:12,144 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,145 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:36:12,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,145 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:12,145 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,146 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:36:12,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,146 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:12,146 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,147 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:36:12,147 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:12,147 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,148 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:12,148 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,149 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:36:12,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,149 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:12,149 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:12,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,150 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:12,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,150 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:12,150 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:36:12,150 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:12,151 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:36:12,151 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:12,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,151 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:36:12,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,152 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:36:12,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,152 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:36:12,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,153 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:36:12,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,153 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:36:12,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,154 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:12,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,154 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:36:12,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:12,155 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:36:12,155 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:36:12,155 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,155 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:12,157 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:36:12,157 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:12,170 [1520] DEBUG index - Entering updateInfo(139) method ... +01/30/13 11:36:12,170 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:36:12,170 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:12,172 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:36:12,172 [1520] INFO index - in getOwnerName 1 +01/30/13 11:36:12,172 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:36:12,172 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:12,172 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:12,174 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:36:12,174 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:12,176 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:12,176 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:12,177 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:36:12,179 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:12,179 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:12,179 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:12,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:12,179 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:36:12,179 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:12,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,182 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:12,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,182 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:12,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,182 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,183 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:12,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,183 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:12,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,183 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:12,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,184 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:12,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,184 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:12,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,184 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:12,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,184 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:12,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,185 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:12,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,185 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:12,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,185 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:12,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,186 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:12,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,186 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:12,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,186 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:12,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,187 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:12,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,187 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:12,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,187 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:12,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,188 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:12,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,188 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:12,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,188 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:36:12,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,189 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:12,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,189 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:12,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,189 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:12,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,190 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:12,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,190 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:12,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,190 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:12,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,191 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:12,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,191 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:12,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,191 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:12,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,192 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:12,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,192 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:12,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,192 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:12,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,192 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:12,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,193 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:36:12,193 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:36:12,193 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:12,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:12,194 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:36:12,194 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:36:12,224 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:12,224 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:12,225 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:36:12,225 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:12,234 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:12,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:12,234 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:36:12,234 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:12,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,240 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,240 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:12,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,240 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:12,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,241 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,241 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,241 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,242 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,242 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,242 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:12,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,243 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:12,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:12,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:12,244 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:12,382 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:36:12,382 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:12,383 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,473 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:20,598 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:20,598 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:20,599 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:20,599 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:20,599 [1520] DEBUG index - array ( + 'action' => 'DetailView', + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'record' => '139', + 'viewname' => '0', + 'start' => '', +) +01/30/13 11:36:20,599 [1520] INFO index - About to take action DetailView +01/30/13 11:36:20,599 [1520] DEBUG index - in DetailView +01/30/13 11:36:20,600 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:36:20,600 [1520] INFO index - current module is Accounts +01/30/13 11:36:20,633 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:20,633 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:20,633 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:20,633 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:20,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,634 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:20,634 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,634 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:20,634 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:20,645 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:20,645 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,646 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:20,646 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:20,646 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:20,647 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:20,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,647 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:20,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,648 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:20,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,648 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:20,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,649 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:20,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,649 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:20,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,650 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:20,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,650 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:20,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,651 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:20,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,651 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:20,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,652 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:20,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,652 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:20,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,653 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:20,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,653 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:20,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,654 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:20,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,654 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:20,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,655 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:20,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,655 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:20,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,655 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:20,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,656 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:20,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,656 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:20,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,657 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:20,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,658 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:20,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,658 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:20,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,658 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:20,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,659 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:20,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,659 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:20,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,660 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:20,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,660 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:20,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,661 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:20,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,661 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:20,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,662 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:20,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,662 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:20,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,663 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:20,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,663 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:20,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,664 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:20,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,664 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:20,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,665 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:20,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,665 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:20,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,666 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:20,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,666 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:20,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,667 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:20,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,667 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:20,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,668 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:20,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,668 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:20,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,669 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:20,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,669 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:20,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:20,670 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:20,673 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:20,673 [1520] DEBUG index - Prepared sql query parameters : [313,1,Accounts,DetailView,139,2013-01-30 11:36:20] +01/30/13 11:36:20,676 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:20,676 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:20,676 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:20,676 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:20,678 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:20,678 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:20,680 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:20,680 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:20,682 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:20,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:20,683 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:20,683 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,683 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:20,683 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:20,692 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,692 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:20,692 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:36:20,692 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:36:20,692 [1520] DEBUG index - Prepared sql query parameters : [1,139] +01/30/13 11:36:20,695 [1520] INFO index - in track view method Accounts +01/30/13 11:36:20,695 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:20,695 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:20,697 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:36:20,697 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,698 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:36:20,698 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:36:20,699 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,139,OSSEZ 1] +01/30/13 11:36:20,701 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:36:20,701 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:36:20,702 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:36:20,702 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:20,702 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:20,703 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:20,703 [1520] DEBUG index - including headers +01/30/13 11:36:20,703 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:36:20,703 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:36:20,706 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:20,707 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:20,709 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:36:20,709 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:36:20,709 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:20,710 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:36:20,711 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:36:20,711 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:36:20,712 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,712 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:36:20,712 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,712 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,713 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:36:20,714 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,714 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:36:20,714 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,714 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:36:20,715 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:20,715 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:36:20,715 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:36:20,715 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:36:20,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,721 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:20,721 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:20,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:20,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,722 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:36:20,722 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:36:20,723 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:20,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,723 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:36:20,724 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:20,724 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:20,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,725 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:36:20,725 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:36:20,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,726 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:20,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,726 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:36:20,726 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:36:20,727 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:20,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,727 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:36:20,728 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:20,728 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:20,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,729 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:36:20,729 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:20,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:20,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,730 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:36:20,730 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:36:20,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,730 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:20,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,731 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:36:20,731 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:20,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:20,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,732 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:36:20,732 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:20,733 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:20,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,733 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:36:20,733 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:20,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,734 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:20,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,734 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:36:20,734 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:36:20,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:20,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,735 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:36:20,736 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:20,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:20,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,737 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:36:20,737 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:36:20,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,737 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:20,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,738 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:36:20,738 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:36:20,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,738 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:20,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,739 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:36:20,739 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:36:20,739 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,739 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:20,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,740 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:36:20,740 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:36:20,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:20,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,741 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:36:20,742 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:36:20,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:20,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,743 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:36:20,743 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:36:20,743 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,743 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:36:20,743 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:20) method ... +01/30/13 11:36:20,743 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:20,744 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:20) method ... +01/30/13 11:36:20,744 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:20,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:20,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:20,745 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:36:20,745 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:36:20,745 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:36:20,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,779 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:36:20,795 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:20,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,796 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:20,796 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:20,798 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,799 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,799 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:20,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,799 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,800 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,801 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,802 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:36:20,803 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,803 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:20,803 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,803 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:20,803 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,804 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:20,805 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,805 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:20,805 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,805 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:36:20,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,806 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:36:20,806 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,806 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:36:20,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,807 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:20,807 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,807 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:36:20,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,808 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:36:20,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,809 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:20,809 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,809 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:36:20,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,810 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:20,810 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:20,810 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:20,818 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:20,818 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,818 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:36:20,819 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,819 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:36:20,819 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,819 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:36:20,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,820 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:36:20,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,821 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:20,821 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:36:20,827 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:36:20,827 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,827 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:36:20,827 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:36:20,831 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:36:20,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,838 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:20,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:20,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,839 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:20,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:20,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,839 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:36:20,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,839 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:20,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:20,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,840 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:20,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:20,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,840 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:20,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:20,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,840 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:20,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:20,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,841 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:20,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:20,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,841 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:20,842 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:20,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,842 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:20,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:36:20,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,842 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:36:20,844 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:20,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,845 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:36:20,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:36:20,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,846 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:36:20,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:36:20,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,846 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:36:20,846 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:36:20,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,847 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:36:20,847 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:20,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,847 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:36:20,847 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:20,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,848 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:36:20,848 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:36:20,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,848 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:36:20,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:36:20,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,849 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:36:20,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:36:20,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,850 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:36:20,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:20,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,850 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:20,850 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:20,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,850 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:20,850 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:20,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,851 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:36:20,851 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:20,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,851 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:36:20,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:20,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,851 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:36:20,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:20,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,852 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:36:20,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:20,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,852 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:20,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:20,852 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,853 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:20,853 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:20,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,853 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:20,853 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:20,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,854 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:36:20,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:20,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,854 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:36:20,854 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:20,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,855 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:20,855 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:20,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,855 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:36:20,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:20,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,856 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:20,857 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,857 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:36:20,857 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:20,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:20,860 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:20,860 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:20,860 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,860 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:20,860 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:36:20,860 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,866 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:36:20,866 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,876 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:36:20,876 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,878 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:36:20,879 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:36:20,880 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:20,882 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,883 [1520] INFO VT - PearDatabase ->There is no entry for this entity 139 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:36:20,883 [1520] DEBUG index - id is 139 +01/30/13 11:36:20,883 [1520] DEBUG index - name is OSSEZ 1 +01/30/13 11:36:20,883 [1520] INFO index - Account detail view +01/30/13 11:36:20,884 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:36:20,884 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:20,884 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:20,884 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:36:20,884 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:20,886 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,886 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:20,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,887 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:36:20,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,887 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:20,887 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,887 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,887 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:20,888 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:20,888 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:36:20,896 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:36:20,897 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:36:20,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,898 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:20,898 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,898 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,898 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,898 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:36:20,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,899 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:20,899 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,899 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,899 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,900 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:36:20,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,900 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:20,900 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,901 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,901 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,901 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:36:20,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,902 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:20,902 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,902 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,902 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,902 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:36:20,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,903 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:20,903 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,903 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,903 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,904 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:36:20,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,904 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:20,904 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,905 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,905 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,905 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:36:20,906 [1520] DEBUG index - Entering getAccountName(8) method ... +01/30/13 11:36:20,906 [1520] INFO index - in getAccountName 8 +01/30/13 11:36:20,906 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:36:20,906 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:36:20,907 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:36:20,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,908 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:20,908 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,908 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,908 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,908 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:36:20,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,909 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:20,909 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,909 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,909 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,910 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:36:20,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,910 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:20,910 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,911 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,911 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,911 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:36:20,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,912 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:20,912 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,912 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,912 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,912 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:36:20,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,913 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:20,913 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,913 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,913 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,914 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:36:20,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,914 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:20,914 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,915 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,915 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,915 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:36:20,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,916 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:20,916 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:20,916 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:20,916 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:36:20,916 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:36:20,916 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:36:20,918 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:36:20,918 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:36:20,918 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:36:20,920 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:20,920 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:20,920 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:20,920 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:20,925 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 313 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:20,926 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:20,926 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:20,928 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:20,928 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:20,928 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:20,928 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:20,939 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:20,939 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:20,939 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:20,939 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:20,944 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:20,944 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:20,944 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:20,944 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:36:20,951 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:20,951 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:20,976 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:20,976 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:36:20,976 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:36:20,976 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:36:20,977 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:36:20,977 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:36:20,977 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:36:20,977 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:36:20,977 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:36:20,978 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:36:20,978 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:36:20,978 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:36:20,978 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:36:20,979 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:36:20,979 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:36:20,979 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:36:20,979 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:36:20,979 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:20,980 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:36:20,980 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:20,980 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:36:20,980 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:36:20,980 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:36:20,981 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:36:20,981 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:20,981 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:20,981 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:20,982 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:36:20,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:20,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:20,983 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:20,984 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:20,984 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:20,984 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:20,984 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:20,984 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:20,984 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:20,989 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 313 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:20,991 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:20,991 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:20,997 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:20,998 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:20,998 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:20,998 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:21,003 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:21,003 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:21,003 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:21,003 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:21,007 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:21,007 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:21,007 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:21,008 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:36:21,012 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:21,012 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:21,021 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:21,021 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:36:21,022 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:36:21,022 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:36:21,022 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:36:21,022 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:36:21,022 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,023 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,023 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,024 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:36:21,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,025 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:21,025 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:21,025 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:21,026 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:21,026 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:21,026 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:21,026 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:21,030 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 313 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:21,032 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:21,032 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:21,035 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:21,035 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:21,035 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:21,035 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:21,039 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:21,039 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:21,039 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:21,039 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:21,043 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:21,043 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:21,043 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:21,043 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:36:21,045 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:21,045 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:21,058 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:36:21,058 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:36:21,058 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:36:21,058 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:36:21,059 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:36:21,059 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:36:21,059 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:36:21,059 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:36:21,059 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:36:21,060 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:36:21,060 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:36:21,060 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:36:21,060 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,060 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,061 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,062 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:36:21,063 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,063 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,063 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:21,063 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,063 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,063 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,064 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:36:21,065 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,065 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,066 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:21,066 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,066 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,066 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,067 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:36:21,068 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,068 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,068 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:21,069 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:36:21,069 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:36:21,069 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:36:21,069 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:21,072 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:36:21,072 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:36:21,072 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:36:21,072 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:36:21,073 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,073 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,073 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,074 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:36:21,075 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:36:21,075 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:21,077 [1520] DEBUG index - Entering getOwnerName(5) method ... +01/30/13 11:36:21,077 [1520] INFO index - in getOwnerName 5 +01/30/13 11:36:21,077 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:36:21,077 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:21,078 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:21,080 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:36:21,080 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:36:21,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,082 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:21,082 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,082 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,083 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:36:21,083 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:36:21,084 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:36:21,084 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:21,085 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:21,085 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:36:21,085 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:36:21,087 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:21,087 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:21,094 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:21,094 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:21,096 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:21,096 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:21,096 [1520] DEBUG index - Entering get_select_options_array (Array,5,false) method ... +01/30/13 11:36:21,096 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:21,096 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,5,false) method ... +01/30/13 11:36:21,096 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:21,096 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:21,097 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:21,097 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:36:21,099 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:21,099 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:21,099 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:36:21,099 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:21,099 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:36:21,099 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:21,099 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,100 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,100 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,100 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:36:21,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,101 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:21,101 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,101 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,101 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,102 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:36:21,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,102 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:36:21,103 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:21,103 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:21,103 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:36:21,103 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:21,103 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,103 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,104 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,104 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:36:21,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,105 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:36:21,105 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:21,105 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:21,105 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:02) method ... +01/30/13 11:36:21,106 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:21,106 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,106 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,106 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,106 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:36:21,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,107 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:21,107 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,107 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,107 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,108 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:36:21,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,109 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:21,109 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,109 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,109 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,109 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:36:21,110 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,110 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:21,110 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,110 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,110 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,111 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:36:21,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,112 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:21,112 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,112 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,112 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,112 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:36:21,113 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,113 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:21,113 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,113 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,113 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,114 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:36:21,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,114 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:21,114 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,114 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,115 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,115 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:36:21,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,116 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:21,116 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,116 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,116 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,116 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:36:21,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,117 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:21,117 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,117 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,117 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,118 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:36:21,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,118 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:21,118 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,119 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,119 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,119 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:36:21,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,120 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:21,120 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,120 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,120 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,121 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:36:21,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,121 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:21,121 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,121 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,121 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,122 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:36:21,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,123 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:21,123 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,123 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,123 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,123 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,124 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:21,124 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,125 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:21,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,125 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:36:21,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,125 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:21,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,125 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:36:21,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,126 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:21,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,126 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:36:21,126 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:36:21,126 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:21,126 [1520] DEBUG index - Entering updateInfo(139) method ... +01/30/13 11:36:21,126 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:36:21,126 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:21,129 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:36:21,129 [1520] INFO index - in getOwnerName 1 +01/30/13 11:36:21,129 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:36:21,129 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:21,129 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:21,131 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:36:21,131 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:21,140 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:02) method ... +01/30/13 11:36:21,141 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:21,141 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:36:21,141 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:36:21,141 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,141 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,141 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:36:21,141 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:21,142 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:21,143 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:36:21,143 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:21,144 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:36:21,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,145 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,139) method ... +01/30/13 11:36:21,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,145 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:21,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,146 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:36:21,146 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:21,149 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,149 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,149 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,149 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,150 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,151 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:36:21,151 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:21,160 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,161 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:36:21,161 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:36:21,200 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:36:21,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,202 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:36:21,202 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:36:21,202 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:21,206 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:36:21,206 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,206 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:21,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:21,206 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:36:21,206 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:21,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,209 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:36:21,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,210 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:36:21,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,210 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:36:21,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,210 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:36:21,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,211 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:36:21,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,211 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:36:21,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,211 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:36:21,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,212 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:36:21,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,212 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:36:21,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,212 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:36:21,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,213 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:36:21,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,213 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:36:21,213 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,213 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:36:21,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,214 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:36:21,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,214 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:36:21,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,214 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:36:21,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,215 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:36:21,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,215 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:36:21,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,215 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:36:21,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,216 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:21,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,216 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:36:21,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,216 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:36:21,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,217 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:36:21,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,217 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:36:21,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,217 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:36:21,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,218 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:36:21,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,218 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:36:21,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,218 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:36:21,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,219 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:36:21,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,219 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:36:21,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,219 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:36:21,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,220 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:36:21,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,220 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:36:21,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,220 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:21,220 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,220 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:36:21,221 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:36:21,221 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:36:21,221 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:36:21,221 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:21,221 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,221 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:36:21,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,222 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:36:21,222 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,222 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:36:21,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,223 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:36:21,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,223 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:36:21,224 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,224 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:21,224 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,224 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:36:21,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,225 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:36:21,225 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,139) method ... +01/30/13 11:36:21,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,226 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:36:21,227 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:36:21,227 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:36:21,229 [1520] DEBUG index - Entering when status=0 +01/30/13 11:36:21,229 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:36:21,229 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:36:21,231 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,231 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,231 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:36:21,231 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:21,235 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:21,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,235 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:21,235 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:21,238 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:36:21,238 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:21,238 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:36:21,239 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:36:21,239 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,239 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:36:21,239 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:36:21,254 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:21,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,254 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:21,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,254 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,254 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:21,255 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:36:21,255 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:21,255 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,255 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:21,255 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:36:21,255 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:36:21,139,1] +01/30/13 11:36:21,258 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,258 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,258 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:36:21,258 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:36:21,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,267 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,268 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:21,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,268 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:21,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,270 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,270 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:21,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,271 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:21,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,271 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:21,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,272 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:21,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,272 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:21,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,272 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:21,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,272 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:36:21,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,273 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:21,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,273 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:36:21,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,273 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:21,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,274 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:36:21,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,274 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:21,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,274 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:21,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,274 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:21,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,275 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:21,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,275 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:21,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,275 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:21,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,276 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:21,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,276 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:36:21,365 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,365 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,365 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,365 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,365 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:36:21,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:21,368 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:21,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,368 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:21,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,368 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:36:21,369 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,369 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,369 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,369 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,369 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,369 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:36:21,369 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:36:21,373 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:36:21,373 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:36:21,373 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:36:21,373 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:21,373 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,373 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:21,374 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,374 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:21,374 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:36:21,388 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:21,388 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,388 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,388 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:36:21,389 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:36:21,389 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:36:21,389 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:21,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,389 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:21,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,389 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:21,389 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:36:21,400 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:21,400 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,400 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,400 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,401 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,401 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,401 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,401 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,401 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,401 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,401 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,401 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,402 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:36:21,402 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:36:21,402 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:21,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,402 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:21,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,402 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:21,402 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:36:21,413 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:21,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,413 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,414 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,415 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,415 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,415 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,415 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,416 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:21,417 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:21,417 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:21,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,417 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:21,417 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:36:21,417 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:21,418 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:36:21,418 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:21,440 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,440 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:36:21,440 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,441 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:36:21,441 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:21,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:21,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,441 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:36:21,441 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:21,441 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:21,441 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:36:21,442 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:36:21,442 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:21,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:23,593 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:23,729 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:23,729 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:23,729 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:23,730 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:23,730 [1520] DEBUG index - array ( + 'module' => 'Emails', + 'return_module' => 'Accounts', + 'action' => 'EmailsAjax', + 'file' => 'mailSelect', + 'idlist' => '139undefined', +) +01/30/13 11:36:23,730 [1520] INFO index - About to take action EmailsAjax +01/30/13 11:36:23,730 [1520] DEBUG index - in EmailsAjax +01/30/13 11:36:23,730 [1520] INFO index - current page is modules/Emails/EmailsAjax.php +01/30/13 11:36:23,730 [1520] INFO index - current module is Emails +01/30/13 11:36:23,763 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:23,763 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:23,763 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:23,763 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:23,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,764 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:23,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,764 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:23,764 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:23,772 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:23,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,773 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:23,773 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:23,773 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:23,774 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:23,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,774 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:23,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,775 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:23,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,775 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:23,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,776 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:23,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,776 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:23,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,777 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:23,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,777 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:23,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,778 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:23,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,778 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:23,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,779 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:23,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,779 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:23,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,780 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:23,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,780 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:23,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,781 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:23,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,781 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:23,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,782 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:23,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,782 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:23,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,783 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:23,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,783 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:23,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,784 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:23,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,784 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:23,784 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,785 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:23,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,785 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:23,785 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,785 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:23,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,786 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:23,786 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,786 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:23,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,787 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:23,787 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,787 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:23,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,788 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:23,788 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,788 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:23,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,789 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:23,789 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,789 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:23,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,790 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:23,790 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,790 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:23,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,791 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:23,791 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,791 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:23,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,792 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:23,792 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,792 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:23,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,793 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:23,793 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,793 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:23,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,794 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:23,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,794 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:23,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,795 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:23,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,795 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:23,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,796 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:23,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,796 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:23,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,797 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:23,805 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:23,805 [1520] DEBUG index - Prepared sql query parameters : [314,1,Emails,EmailsAjax,,2013-01-30 11:36:23] +01/30/13 11:36:23,809 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:23,809 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:23,809 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:23,809 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:23,811 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:23,811 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:23,813 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:23,813 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:23,815 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:23,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:23,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:23,816 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:23,816 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:23,816 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:23,816 [1520] DEBUG index - skipping headers +01/30/13 11:36:23,817 [1520] DEBUG index - Entering isPermitted(Emails,mailSelect,) method ... +01/30/13 11:36:23,817 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:23,818 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:36:23,818 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:36:23,818 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:36:23,818 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:23,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,818 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:23,818 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,819 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:23,819 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:36:23,823 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:23,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,823 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:23,823 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:36:23,829 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,829 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,829 [1520] DEBUG index - Prepared sql query being executed : select fieldid, fieldname, fieldlabel, columnname from vtiger_field where tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:36:23,829 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,832 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:23,833 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:36:23,839 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,839 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,839 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:23,840 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:23,840 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:36:23,840 [1520] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:36:23,840 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:23,840 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:23,840 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:23,841 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (Other Email) +01/30/13 11:36:23,841 [1520] DEBUG index - Prepared sql query being executed : select accountname,email1,email2 from vtiger_account left join vtiger_accountscf on vtiger_accountscf.accountid = vtiger_account.accountid where vtiger_account.accountid = ? +01/30/13 11:36:23,841 [1520] DEBUG index - Prepared sql query parameters : [139undefined] +01/30/13 11:36:26,564 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:26,705 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:26,705 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:26,706 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:26,706 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:26,706 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:36:26,706 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:36:26,707 [1520] DEBUG index - in CalendarAjax +01/30/13 11:36:26,707 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:36:26,707 [1520] INFO index - current module is Calendar +01/30/13 11:36:26,744 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:26,744 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:26,744 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:26,744 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:26,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:26,745 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:26,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:26,745 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:26,745 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:26,753 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:26,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:26,753 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:26,754 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:26,754 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:26,754 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:26,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,755 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:26,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,755 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:26,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,756 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:26,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,756 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:26,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,757 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:26,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,757 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:26,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,758 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:26,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,758 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:26,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,759 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:26,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,759 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:26,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,760 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:26,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,760 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:26,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,761 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:26,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,761 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:26,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,762 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:26,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,762 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:26,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,763 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:26,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,763 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:26,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,764 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:26,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,764 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:26,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,765 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:26,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,765 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,766 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:26,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,767 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:26,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,767 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:26,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,768 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:26,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,768 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:26,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,769 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:26,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,769 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:26,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,770 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:26,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,770 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:26,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,771 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:26,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,771 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:26,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,772 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:26,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,772 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:26,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,773 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:26,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,773 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:26,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,774 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:26,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,774 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:26,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,775 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:26,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,775 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:26,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,776 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:26,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,776 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:26,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,777 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:26,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:26,777 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:26,778 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:26,778 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:26,778 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:26,778 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:26,780 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:26,780 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:26,781 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:26,782 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:26,783 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:26,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:26,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:26,784 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:26,784 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:26,784 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:26,784 [1520] DEBUG index - skipping headers +01/30/13 11:36:26,785 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:36:26,786 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:26,791 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:26,791 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:36:26,791 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:36:26,791 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:36:26,795 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:37')) +01/30/13 11:36:26,797 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:36:37,647 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:36:37,784 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:36:37,784 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:36:37,784 [1520] DEBUG index - ****Starting for new session +01/30/13 11:36:37,784 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:36:37,785 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'activity_mode' => 'Events', + 'return_id' => '139', + 'parent_id' => '139', + 'parenttab' => 'Marketing', +) +01/30/13 11:36:37,785 [1520] INFO index - About to take action EditView +01/30/13 11:36:37,785 [1520] DEBUG index - in EditView +01/30/13 11:36:37,785 [1520] INFO index - current page is modules/Calendar/EditView.php +01/30/13 11:36:37,785 [1520] INFO index - current module is Calendar +01/30/13 11:36:37,822 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:36:37,822 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:36:37,822 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:36:37,822 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:37,822 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,823 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:37,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,823 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:36:37,823 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:36:37,838 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:36:37,838 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,838 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:37,838 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:36:37,838 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:36:37,839 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:36:37,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,840 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:36:37,840 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,840 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:36:37,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,841 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:36:37,841 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,841 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:36:37,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,842 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:36:37,842 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,842 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:36:37,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,843 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:36:37,843 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,844 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:36:37,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,844 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:36:37,844 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,845 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:36:37,845 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,845 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:36:37,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,846 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:36:37,846 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,846 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:36:37,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,847 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:36:37,847 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,847 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:36:37,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,848 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:36:37,848 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,848 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:36:37,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,849 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:36:37,849 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,850 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:36:37,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,850 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:36:37,850 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,851 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:36:37,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,851 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:36:37,851 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,852 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:36:37,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,852 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:36:37,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,852 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:36:37,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,853 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:36:37,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,853 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:36:37,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,854 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:36:37,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,854 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:36:37,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,855 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:36:37,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,855 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:36:37,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,856 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:36:37,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,856 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:36:37,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,857 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:36:37,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,857 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:36:37,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,858 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:36:37,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,858 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:36:37,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,859 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:36:37,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,859 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:36:37,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,860 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:36:37,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,860 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:36:37,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,861 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:36:37,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,861 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:36:37,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,862 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:36:37,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,862 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:36:37,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,863 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:36:37,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:37,863 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:36:37,871 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:36:37,871 [1520] DEBUG index - Prepared sql query parameters : [315,1,Calendar,EditView,,2013-01-30 11:36:37] +01/30/13 11:36:37,887 [1520] DEBUG index - Current user is: admin +01/30/13 11:36:37,887 [1520] DEBUG index - Current theme is: softed +01/30/13 11:36:37,887 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:36:37,887 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:36:37,889 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:36:37,889 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:36:37,891 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:36:37,891 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:36:37,892 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:36:37,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:37,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,893 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:36:37,894 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:36:37,894 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:36:37,894 [1520] DEBUG index - including headers +01/30/13 11:36:37,894 [1520] DEBUG index - Entering getParentTabFromModule(Calendar) method ... +01/30/13 11:36:37,894 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:36:37,898 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:37,898 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:37,900 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:36:37,901 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:36:37,901 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,901 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:36:37,901 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,901 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:36:37,902 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,902 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:36:37,902 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,902 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:36:37,903 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,903 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:36:37,903 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,903 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:36:37,904 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:36:37,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:37,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,912 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:36:37,912 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:37,912 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:37,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,913 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:36:37,913 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:36:37,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:37,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,914 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:36:37,914 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:37,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:37,915 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,916 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:36:37,916 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:36:37,916 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,916 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:37,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,917 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:36:37,917 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:36:37,917 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:37,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,918 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:36:37,918 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:37,919 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:37,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,919 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:36:37,920 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:37,920 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,920 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:37,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,921 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:36:37,921 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:36:37,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,921 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:37,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,922 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:36:37,922 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:37,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:37,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,923 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:36:37,924 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:37,924 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,924 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:37,925 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,925 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:36:37,925 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:37,925 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,926 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:37,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,926 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:36:37,926 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:36:37,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:37,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,927 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:36:37,928 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:37,928 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:37,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,929 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:36:37,929 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:36:37,929 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,930 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:37,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,930 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:36:37,930 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:36:37,931 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,931 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:37,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,931 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:36:37,931 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:36:37,932 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,932 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:37,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,933 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:36:37,933 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:36:37,934 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:37,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,934 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:36:37,934 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:36:37,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:37,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,936 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:36:37,936 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:36:37,936 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,936 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:36:37,936 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:37) method ... +01/30/13 11:36:37,937 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:37,937 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:36:37) method ... +01/30/13 11:36:37,937 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:36:37,937 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:37,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:37,938 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:36:37,938 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:36:37,939 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:36:37,944 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,944 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,944 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,944 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,944 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,945 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,946 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,947 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,948 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,949 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,950 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,951 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,953 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:36:37,957 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:36:37,957 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,957 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:36:37,958 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:37,962 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:36:37,962 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:36:37,963 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:36:37,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,963 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:36:37,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,965 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:36:37,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,965 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:36:37,965 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,965 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:36:37,966 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,966 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:36:37,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,966 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,967 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:36:37,968 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,968 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:36:37,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,968 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,969 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:36:37,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,970 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:37,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,971 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:36:37,971 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,971 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,972 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:36:37,973 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,973 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:36:37,973 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,973 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:36:37,974 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,974 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:36:37,974 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,974 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:36:37,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,975 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:36:37,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,975 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:36:37,975 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,976 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:37,976 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:36:37,976 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:37,979 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:36:37,979 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,980 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:36:37,980 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,981 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:36:37,981 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,981 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:36:37,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,982 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:36:37,983 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:37,983 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:37,983 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:36:37,987 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:36:37,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:37,987 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:36:37,988 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:36:37,991 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:36:37,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:37,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,997 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:37,998 [1520] DEBUG index - function getTranslatedString(LBL_FILENAME) - translated to (文件名称) +01/30/13 11:36:37,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:37,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,998 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:36:37,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:36:37,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,999 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:36:37,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:36:37,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,999 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:36:37,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:36:37,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,999 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:36:37,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:36:37,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:37,1000 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:36:37,1000 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:36:37,1000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,000 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:36:38,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:36:38,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,000 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:36:38,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:36:38,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,001 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:36:38,001 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:36:38,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,001 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:36:38,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:36:38,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,002 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:36:38,005 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:36:38,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,005 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:36:38,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:36:38,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,006 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:36:38,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:36:38,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,006 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:36:38,006 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:36:38,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,007 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:36:38,007 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:36:38,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,008 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:36:38,008 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:36:38,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,008 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:36:38,008 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:36:38,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,009 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:36:38,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:36:38,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,009 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:36:38,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:36:38,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,010 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:36:38,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:36:38,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,011 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:36:38,011 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:36:38,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,011 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:36:38,011 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:36:38,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,011 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:36:38,011 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:36:38,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,012 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:36:38,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:36:38,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,012 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:36:38,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:36:38,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,013 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:36:38,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:36:38,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,013 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:36:38,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:36:38,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,013 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:36:38,013 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:36:38,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,014 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:36:38,014 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:36:38,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,014 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:36:38,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:36:38,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,015 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:36:38,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:36:38,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,015 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:36:38,016 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:36:38,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,016 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:36:38,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:36:38,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,017 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:36:38,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:36:38,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,018 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:36:38,018 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:38,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,085 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:38,085 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:38,087 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:36:38,088 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,088 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:36:38,088 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:36:38,088 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:38,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,089 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:38,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,089 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:36:38,089 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:36:38,102 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:38,102 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,102 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,102 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,102 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:36:38,103 [1520] DEBUG index - Entering setObjectValuesFromRequest(Activity) method ... +01/30/13 11:36:38,103 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:36:38,103 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where deleted=0 and status='Active' and id!=? +01/30/13 11:36:38,104 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:38,108 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select * from vtiger_users where deleted=0 and status='Active' and id!='1' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 315 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #468 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 58 + [_queryID] => Resource id #468 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:38,109 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,109 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,111 [1520] INFO VT - PearDatabase ->Inside the function getUserEmailId. --- id = '1' +01/30/13 11:36:38,111 [1520] DEBUG index - Prepared sql query being executed : SELECT email1, email2, secondaryemail from vtiger_users WHERE status='Active' AND id = ? +01/30/13 11:36:38,111 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:36:38,112 [1520] INFO VT - PearDatabase ->Email id is selected => 'mail@inkinlight.com' +01/30/13 11:36:38,113 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:36:38,113 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:36:38,113 [1520] DEBUG index - Entering getBlocks(Events,create_view,,Array,BAS) method ... +01/30/13 11:36:38,113 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,113 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,113 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:36:38,113 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:36:38,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,115 [1520] DEBUG index - function getTranslatedString(LBL_EVENT_INFORMATION) - translated to (事件信息) +01/30/13 11:36:38,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,115 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,116 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,116 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:36:38,116 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:36:38,117 [1520] DEBUG index - Prepared sql query parameters : [16,39,40,41,87,BAS] +01/30/13 11:36:38,124 [1520] DEBUG index - Entering getBlockInformation(Events,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +16,277,reminder_time,vtiger_activity_reminder,1,30,reminder_time,Send Reminder,1,0,,100,1,40,1,I~O,1,,BAS,1, +16,256,subject,vtiger_activity,1,2,subject,Subject,1,0,,100,1,41,1,V~M,0,1,BAS,1, +16,276,description,vtiger_crmentity,1,19,description,Description,1,0,,100,1,41,1,V~O,1,,BAS,1, +16,257,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,2,41,1,V~M,0,6,BAS,1, +16,258,date_start,vtiger_activity,1,6,date_start,Start Date & Time,1,0,,100,3,41,1,DT~M~time_start,0,2,BAS,1, +16,260,due_date,vtiger_activity,1,23,due_date,End Date,1,0,,100,5,41,1,D~M~OTH~GE~date_start~Start Date & Time,0,5,BAS,1, +16,262,recurringtype,vtiger_activity,1,16,recurringtype,Recurrence,1,0,,100,6,41,1,O~O,1,,BAS,1, +16,263,duration_hours,vtiger_activity,1,63,duration_hours,Duration,1,0,,100,7,41,1,I~M,1,,BAS,1, +16,265,crmid,vtiger_seactivityrel,1,66,parent_id,Related To,1,0,,100,9,41,1,I~O,1,,BAS,1, +16,266,eventstatus,vtiger_activity,1,15,eventstatus,Status,1,0,,100,10,41,1,V~M,0,3,BAS,1, +16,267,sendnotification,vtiger_activity,1,56,sendnotification,Send Notification,1,0,,100,11,41,1,C~O,1,,BAS,1, +16,268,activitytype,vtiger_activity,1,15,activitytype,Activity Type,1,0,,100,12,41,1,V~M,0,4,BAS,1, +16,269,location,vtiger_activity,1,1,location,Location,1,0,,100,13,41,1,V~O,1,,BAS,1, +16,272,priority,vtiger_activity,1,15,taskpriority,Priority,1,0,,100,16,41,1,V~O,1,,BAS,1, +16,273,notime,vtiger_activity,1,56,notime,No Time,1,0,,100,17,41,1,C~O,1,,BAS,1, +16,274,visibility,vtiger_activity,1,16,visibility,Visibility,1,0,,100,18,41,1,V~O,1,,BAS,1, +,Array,16,Array) method ... +01/30/13 11:36:38,124 [1520] DEBUG index - Entering getOutputHtml(30,reminder_time,Send Reminder,100,Array,1,Events) method ... +01/30/13 11:36:38,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,125 [1520] DEBUG index - function getTranslatedString(Send Reminder) - translated to (发送邮件通知) +01/30/13 11:36:38,125 [1520] DEBUG index - Entering getReminderSelectOption(0,31,remdays,) method ... +01/30/13 11:36:38,125 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:36:38,125 [1520] DEBUG index - Entering getReminderSelectOption(0,23,remhrs,) method ... +01/30/13 11:36:38,125 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:36:38,126 [1520] DEBUG index - Entering getReminderSelectOption(1,59,remmin,) method ... +01/30/13 11:36:38,126 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_DAYS) - translated to (日) +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_HOURS) - translated to (时) +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_MINUTES) - translated to (分) +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_BEFORE_EVENT) - translated to (在事件开始之前) +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_YES) - translated to (是) +01/30/13 11:36:38,126 [1520] DEBUG index - function getTranslatedString(LBL_NO) - translated to (否) +01/30/13 11:36:38,126 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,127 [1520] DEBUG index - Entering getOutputHtml(2,subject,Subject,100,Array,1,Events) method ... +01/30/13 11:36:38,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,128 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:36:38,128 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,128 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Events) method ... +01/30/13 11:36:38,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,129 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:38,129 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,129 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Events) method ... +01/30/13 11:36:38,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,130 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:38,130 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:36:38,130 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:36:38,136 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:36:38,136 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:38,137 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:38,137 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:36:38,137 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:36:38,139 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,139 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,145 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,145 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,147 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:38,147 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:38,147 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:36:38,147 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:38,147 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:36:38,147 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:38,147 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:36:38,148 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:36:38,148 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:36:38,150 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:36:38,150 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:36:38,150 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:36:38,150 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:36:38,150 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:36:38,150 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:36:38,150 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,151 [1520] DEBUG index - Entering getOutputHtml(6,date_start,Start Date & Time,100,Array,1,Events) method ... +01/30/13 11:36:38,151 [1520] INFO index - uitype is 6 +01/30/13 11:36:38,151 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:36:38,152 [1520] INFO index - in getNewDisplayDate +01/30/13 11:36:38,152 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:38) method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,153 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (开始时间) +01/30/13 11:36:38,153 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:38,153 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:38,153 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,153 [1520] DEBUG index - Entering getOutputHtml(23,due_date,End Date,100,Array,1,Events) method ... +01/30/13 11:36:38,154 [1520] INFO index - uitype is 23 +01/30/13 11:36:38,154 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,154 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:36:38,154 [1520] INFO index - in getNewDisplayDate +01/30/13 11:36:38,154 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:36:38,154 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:36:38) method ... +01/30/13 11:36:38,155 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:36:38,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,155 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:36:38,155 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:38,155 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:38,156 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,156 [1520] DEBUG index - Entering getOutputHtml(16,recurringtype,Recurrence,100,Array,1,Events) method ... +01/30/13 11:36:38,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,157 [1520] DEBUG index - function getTranslatedString(Recurrence) - translated to (重复) +01/30/13 11:36:38,157 [1520] DEBUG index - Prepared sql query being executed : select recurringtype from vtiger_recurringtype order by sortorderid +01/30/13 11:36:38,190 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--None--) +01/30/13 11:36:38,191 [1520] DEBUG index - function getTranslatedString(Daily) - translated to (天) +01/30/13 11:36:38,191 [1520] DEBUG index - function getTranslatedString(Weekly) - translated to (周) +01/30/13 11:36:38,191 [1520] DEBUG index - function getTranslatedString(Monthly) - translated to (月) +01/30/13 11:36:38,192 [1520] DEBUG index - function getTranslatedString(Yearly) - translated to (年) +01/30/13 11:36:38,192 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,193 [1520] DEBUG index - Entering getOutputHtml(63,duration_hours,Duration,100,Array,1,Events) method ... +01/30/13 11:36:38,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,194 [1520] DEBUG index - function getTranslatedString(Duration) - translated to (持续) +01/30/13 11:36:38,195 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_duration_minutes order by sortorderid +01/30/13 11:36:38,222 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,223 [1520] DEBUG index - Entering getOutputHtml(66,parent_id,Related To,100,Array,1,Events) method ... +01/30/13 11:36:38,226 [1520] DEBUG index - Entering getSalesEntityType(139) method ... +01/30/13 11:36:38,226 [1520] INFO index - in getSalesEntityType 139 +01/30/13 11:36:38,226 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:36:38,226 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:38,228 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:36:38,228 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:36:38,229 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,229 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:36:38,233 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:36:38,233 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:36:38,235 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,236 [1520] DEBUG index - Entering getOutputHtml(15,eventstatus,Status,100,Array,1,Events) method ... +01/30/13 11:36:38,237 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:38,237 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:38,237 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:36:38,237 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:36:38,238 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:36:38,241 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:36:38,241 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:36:38,241 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:36:38,244 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:38,244 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:38,244 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,245 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:38,249 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 315 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:38,251 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,251 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,253 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,253 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:38,254 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,254 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:38,260 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,260 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:38,261 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,261 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:38,268 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,268 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:38,268 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:38,268 [1520] DEBUG index - Prepared sql query parameters : [eventstatus] +01/30/13 11:36:38,270 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct eventstatus FROM vtiger_eventstatus inner join vtiger_role2picklist on vtiger_eventstatus.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:38,270 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:38,322 [1520] DEBUG index - function getTranslatedString(Planned) - translated to (计划中) +01/30/13 11:36:38,322 [1520] DEBUG index - function getTranslatedString(Held) - translated to (已执行) +01/30/13 11:36:38,323 [1520] DEBUG index - function getTranslatedString(Not Held) - translated to (未执行) +01/30/13 11:36:38,323 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,323 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,323 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:36:38,323 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,325 [1520] DEBUG index - Entering getOutputHtml(56,sendnotification,Send Notification,100,Array,1,Events) method ... +01/30/13 11:36:38,326 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,326 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,326 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:36:38,327 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,328 [1520] DEBUG index - Entering getOutputHtml(15,activitytype,Activity Type,100,Array,1,Events) method ... +01/30/13 11:36:38,329 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:38,329 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:38,329 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:38,329 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:38,330 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,330 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:38,334 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 315 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #521 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #521 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:38,336 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,336 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,338 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,339 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:38,339 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,339 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:38,342 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,343 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:38,343 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,343 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:38,346 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,347 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:38,347 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:38,347 [1520] DEBUG index - Prepared sql query parameters : [activitytype] +01/30/13 11:36:38,349 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct activitytype FROM vtiger_activitytype inner join vtiger_role2picklist on vtiger_activitytype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:38,349 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:38,395 [1520] DEBUG index - function getTranslatedString(Call) - translated to (电话) +01/30/13 11:36:38,395 [1520] DEBUG index - function getTranslatedString(Meeting) - translated to (会议) +01/30/13 11:36:38,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,396 [1520] DEBUG index - function getTranslatedString(Activity Type) - translated to (活动类型) +01/30/13 11:36:38,396 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,397 [1520] DEBUG index - Entering getOutputHtml(1,location,Location,100,Array,1,Events) method ... +01/30/13 11:36:38,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,399 [1520] DEBUG index - function getTranslatedString(Location) - translated to (地点) +01/30/13 11:36:38,399 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,400 [1520] DEBUG index - Entering getOutputHtml(15,taskpriority,Priority,100,Array,1,Events) method ... +01/30/13 11:36:38,401 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:36:38,401 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:36:38,402 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:36:38,402 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:36:38,402 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,402 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:36:38,407 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 315 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #531 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #531 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:36:38,409 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:36:38,409 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:36:38,413 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,413 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:36:38,413 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,413 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:36:38,417 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,417 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:36:38,418 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:36:38,418 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:36:38,421 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:36:38,422 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:36:38,422 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:36:38,422 [1520] DEBUG index - Prepared sql query parameters : [taskpriority] +01/30/13 11:36:38,424 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct taskpriority FROM vtiger_taskpriority inner join vtiger_role2picklist on vtiger_taskpriority.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:36:38,424 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:36:38,477 [1520] DEBUG index - function getTranslatedString(High) - translated to (高) +01/30/13 11:36:38,477 [1520] DEBUG index - function getTranslatedString(Medium) - translated to (中) +01/30/13 11:36:38,478 [1520] DEBUG index - function getTranslatedString(Low) - translated to (低) +01/30/13 11:36:38,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,478 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:36:38,478 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,479 [1520] DEBUG index - Entering getOutputHtml(56,notime,No Time,100,Array,1,Events) method ... +01/30/13 11:36:38,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,481 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,481 [1520] DEBUG index - function getTranslatedString(No Time) - translated to (没有时间) +01/30/13 11:36:38,481 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,482 [1520] DEBUG index - Entering getOutputHtml(16,visibility,Visibility,100,Array,1,Events) method ... +01/30/13 11:36:38,483 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,484 [1520] DEBUG index - function getTranslatedString(Visibility) - translated to (可见性) +01/30/13 11:36:38,484 [1520] DEBUG index - Prepared sql query being executed : select visibility from vtiger_visibility order by sortorderid +01/30/13 11:36:38,534 [1520] DEBUG index - function getTranslatedString(Private) - translated to (私有) +01/30/13 11:36:38,534 [1520] DEBUG index - function getTranslatedString(Public) - translated to (公开) +01/30/13 11:36:38,534 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:36:38,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,535 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,536 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,536 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,537 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:36:38,537 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:36:38,537 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:36:38,538 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:38,538 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:38,538 [1520] INFO index - Activity edit view +01/30/13 11:36:38,540 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:36:38,540 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:36:38,542 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:38,542 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:38,543 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,contact_id) method ... +01/30/13 11:36:38,543 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,543 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,544 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:36:38,548 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,548 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,548 [1520] DEBUG index - Entering getTabModuleName(16) method ... +01/30/13 11:36:38,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:36:38,549 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:36:38,549 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:36:38,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,552 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:36:38,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,553 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:36:38,553 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,553 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,554 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (Start Date & Time) +01/30/13 11:36:38,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,554 [1520] DEBUG index - function getTranslatedString(Time Start) - translated to (开始时间) +01/30/13 11:36:38,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,555 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:36:38,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,556 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:36:38,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,556 [1520] DEBUG index - function getTranslatedString(Recurrence) - translated to (重复) +01/30/13 11:36:38,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,557 [1520] DEBUG index - function getTranslatedString(Duration) - translated to (持续) +01/30/13 11:36:38,557 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,557 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,558 [1520] DEBUG index - function getTranslatedString(Duration Minutes) - translated to (持续分钟) +01/30/13 11:36:38,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,558 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (关联于) +01/30/13 11:36:38,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,559 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:36:38,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,560 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:36:38,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,560 [1520] DEBUG index - function getTranslatedString(Activity Type) - translated to (活动类型) +01/30/13 11:36:38,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,561 [1520] DEBUG index - function getTranslatedString(Location) - translated to (地点) +01/30/13 11:36:38,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,561 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,562 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:36:38,562 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,562 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,562 [1520] DEBUG index - function getTranslatedString(No Time) - translated to (没有时间) +01/30/13 11:36:38,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,563 [1520] DEBUG index - function getTranslatedString(Visibility) - translated to (可见性) +01/30/13 11:36:38,563 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,564 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:36:38,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,564 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:36:38,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,565 [1520] DEBUG index - function getTranslatedString(Send Reminder) - translated to (发送邮件通知) +01/30/13 11:36:38,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:36:38,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:36:38,566 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:36:38,566 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:36:38,566 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:36:38,566 [1520] DEBUG index - Entering Button_Check(Calendar) method ... +01/30/13 11:36:38,566 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:36:38,567 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,568 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:38,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,569 [1520] DEBUG index - Entering isPermitted(Calendar,Import,) method ... +01/30/13 11:36:38,570 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,570 [1520] DEBUG index - Entering isPermitted(Calendar,Export,) method ... +01/30/13 11:36:38,571 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,571 [1520] DEBUG index - Entering isPermitted(Calendar,Merge,) method ... +01/30/13 11:36:38,572 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,572 [1520] DEBUG index - Entering isPermitted(Calendar,DuplicatesHandling,) method ... +01/30/13 11:36:38,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,573 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:38,573 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,573 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:36:38,574 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:36:38,574 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:36:38,575 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,575 [1520] DEBUG index - Entering getCalendarCustomFields(16, edit, Array) +01/30/13 11:36:38,575 [1520] DEBUG index - Entering getBlockId(16,LBL_CUSTOM_INFORMATION) method ... +01/30/13 11:36:38,575 [1520] DEBUG index - Prepared sql query being executed : select blockid from vtiger_blocks where tabid=? and blocklabel = ? +01/30/13 11:36:38,575 [1520] DEBUG index - Prepared sql query parameters : [16,LBL_CUSTOM_INFORMATION] +01/30/13 11:36:38,577 [1520] DEBUG index - Exiting getBlockId method ... +01/30/13 11:36:38,577 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where block=? AND vtiger_field.tabid=? ORDER BY fieldid +01/30/13 11:36:38,577 [1520] DEBUG index - Prepared sql query parameters : [87,16] +01/30/13 11:36:38,580 [1520] DEBUG index - Exiting getCalendarCustomFields() +01/30/13 11:36:38,580 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:36:38,580 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:36:38,580 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:36:38,580 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,580 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:36:38,580 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:36:38,582 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:36:38,625 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:36:38,625 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:36:38,626 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:36:38,626 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:36:38,685 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:36:38,686 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:36:38,687 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:37:02,612 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:37:02,749 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:37:02,749 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:37:02,750 [1520] DEBUG index - ****Starting for new session +01/30/13 11:37:02,750 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:37:02,750 [1520] DEBUG index - array ( + 'time_start' => '11:40', + 'view' => '', + 'hour' => '', + 'day' => '', + 'month' => '', + 'year' => '', + 'viewOption' => '', + 'subtab' => '', + 'maintab' => '', + 'activity_mode' => 'Events', + 'product_id' => '', + 'pagenumber' => '', + 'module' => 'Calendar', + 'record' => '', + 'mode' => 'create', + 'action' => 'Save', + 'parenttab' => 'Marketing', + 'return_module' => 'Accounts', + 'return_id' => '139', + 'return_action' => 'DetailView', + 'return_viewname' => '', + 'createmode' => '', + 'time_end' => '11:45', + 'followup_due_date' => '', + 'followup_time_start' => '', + 'followup_time_end' => '', + 'inviteesid' => '5;', + 'duration_hours' => '0', + 'duration_minutes' => '5', + 'dateformat' => '%Y-%m-%d', + 'activitytype' => 'Call', + 'subject' => 'OSSE 电话回访', + 'description' => '', + 'location' => '', + 'eventstatus' => 'Planned', + 'assigntype' => 'U', + 'assigned_user_id' => '1', + 'assigned_group_id' => '3', + 'taskpriority' => 'High', + 'starthr' => '11', + 'startmin' => '40', + 'startfmt' => 'am', + 'date_start' => '2013-01-30', + 'endhr' => '11', + 'endmin' => '45', + 'endfmt' => 'am', + 'due_date' => '2013-01-30', + 'followup_starthr' => '11', + 'followup_startmin' => '45', + 'followup_startfmt' => 'am', + 'followup_date' => '2013-01-30', + 'selectedusers' => '5', + 'set_reminder' => 'No', + 'remdays' => '0', + 'remhrs' => '0', + 'remmin' => '1', + 'repeat_frequency' => '1', + 'calendar_repeat_limit_date' => '', + 'repeatMonth' => 'date', + 'repeatMonth_date' => '', + 'repeatMonth_daytype' => 'first', + 'repeatMonth_day' => '1', + 'parent_id' => '139', + 'del_actparent_rel' => '', + 'parent_type' => 'Accounts&action=Popup', + 'parent_name' => 'OSSEZ 1', + 'contactidlist' => '', + 'deletecntlist' => '', + 'button' => ' 保存 ', + 'search_url' => '', +) +01/30/13 11:37:02,750 [1520] INFO index - About to take action Save +01/30/13 11:37:02,750 [1520] DEBUG index - in Save +01/30/13 11:37:02,751 [1520] INFO index - current page is modules/Calendar/Save.php +01/30/13 11:37:02,751 [1520] INFO index - current module is Calendar +01/30/13 11:37:02,785 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:37:02,785 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:37:02,785 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:37:02,785 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:37:02,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,785 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:37:02,785 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,786 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:37:02,786 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:37:02,797 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:37:02,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,797 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:37:02,797 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:37:02,798 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:37:02,798 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:37:02,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,799 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:37:02,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,799 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:37:02,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,800 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:37:02,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,800 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:37:02,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,801 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:37:02,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,801 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:37:02,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,802 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:37:02,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,802 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:37:02,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,803 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:37:02,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,803 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:37:02,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,804 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:37:02,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,804 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:37:02,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,805 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:37:02,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,805 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:37:02,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,806 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:37:02,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,806 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:37:02,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,807 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:37:02,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,807 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:37:02,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,808 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:37:02,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,808 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:37:02,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,809 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:37:02,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,809 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:37:02,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,810 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:37:02,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,810 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:37:02,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,811 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:37:02,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,811 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:37:02,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,811 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:37:02,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,812 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:37:02,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,812 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:37:02,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,813 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:37:02,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,813 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:37:02,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,814 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:37:02,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,814 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:37:02,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,815 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:37:02,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,815 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:37:02,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,816 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:37:02,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,816 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:37:02,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,817 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:37:02,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,817 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:37:02,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,818 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:37:02,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,818 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:37:02,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,819 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:37:02,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,819 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:37:02,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,820 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:37:02,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,820 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:37:02,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,821 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:37:02,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:37:02,821 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:37:02,824 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:37:02,824 [1520] DEBUG index - Prepared sql query parameters : [316,1,Calendar,Save,,2013-01-30 11:37:02] +01/30/13 11:37:02,826 [1520] DEBUG index - Current user is: admin +01/30/13 11:37:02,826 [1520] DEBUG index - Current theme is: softed +01/30/13 11:37:02,826 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:37:02,826 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:37:02,828 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:37:02,828 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:37:02,831 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:37:02,831 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:37:02,832 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:37:02,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:37:02,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:37:02,833 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:37:02,833 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:37:02,833 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:37:02,833 [1520] DEBUG index - skipping headers +01/30/13 11:37:02,834 [1520] DEBUG index - Entering isPermitted(Calendar,Save,) method ... +01/30/13 11:37:02,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:37:02,853 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:37:02,853 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:37:02,853 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,853 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,853 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,853 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,853 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:37:02,854 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:37:02,871 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,871 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,871 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:37:02,872 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,872 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:37:02,874 [1520] DEBUG index - id is +01/30/13 11:37:02,874 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,874 [1520] DEBUG index - Entering getDBInsertDateValue(2013-01-30 11:40) method ... +01/30/13 11:37:02,874 [1520] DEBUG index - Exiting getDBInsertDateValue method ... +01/30/13 11:37:02,874 [1520] DEBUG index - Entering getDBInsertTimeValue(2013-01-30 11:40) method ... +01/30/13 11:37:02,875 [1520] DEBUG index - Exiting getDBInsertTimeValue method ... +01/30/13 11:37:02,875 [1520] DEBUG index - Entering getDBInsertDateValue(2013-01-30 11:45) method ... +01/30/13 11:37:02,875 [1520] DEBUG index - Exiting getDBInsertDateValue method ... +01/30/13 11:37:02,875 [1520] DEBUG index - Entering getDBInsertTimeValue(2013-01-30 11:45) method ... +01/30/13 11:37:02,875 [1520] DEBUG index - Exiting getDBInsertTimeValue method ... +01/30/13 11:37:02,875 [1520] DEBUG index - module name is Calendar +01/30/13 11:37:02,876 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_eventhandlers WHERE is_active=true +01/30/13 11:37:02,882 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_fieldformulas where modulename=? +01/30/13 11:37:02,882 [1520] DEBUG index - Prepared sql query parameters : [Activity] +01/30/13 11:37:02,885 [1520] INFO VT - PearDatabase ->TRANS saveentity starts Calendar +01/30/13 11:37:02,885 [1520] INFO VT - PearDatabase ->TRANS Started +01/30/13 11:37:02,885 [1520] DEBUG index - Prepared sql query being executed : select ownedby from vtiger_tab where name=? +01/30/13 11:37:02,885 [1520] DEBUG index - Prepared sql query parameters : [Calendar] +01/30/13 11:37:02,893 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,modifiedby,createdtime,modifiedtime) values(?,?,?,?,?,?,?,?) +01/30/13 11:37:02,893 [1520] DEBUG index - Prepared sql query parameters : [140,1,1,Calendar,,1,2013-01-30 11:37:02,2013-01-30 11:37:02] +01/30/13 11:37:02,896 [1520] INFO index - function insertIntoEntityTable Calendar vtiger_table name vtiger_activity +01/30/13 11:37:02,896 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,897 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:37:02,897 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,897 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:37:02,897 [1520] DEBUG index - Prepared sql query parameters : [16,vtiger_activity] +01/30/13 11:37:02,901 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:37:02,901 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:37:02,901 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:37:02,901 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:37:02,902 [1520] DEBUG index - Entering function get_column_value (recurringtype, , recurringtype, 16, O='') +01/30/13 11:37:02,902 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:37:02,903 [1520] DEBUG index - Entering function get_column_value (location, , location, 1, V='') +01/30/13 11:37:02,903 [1520] DEBUG index - Exiting function get_column_value +01/30/13 11:37:02,904 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_activity(activityid,subject,date_start,time_start,due_date,time_end,recurringtype,duration_hours,duration_minutes,eventstatus,sendnotification,activitytype,location,priority,notime,visibility) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) +01/30/13 11:37:02,904 [1520] DEBUG index - Prepared sql query parameters : [140,OSSE 电话回访,2013-01-30,11:40:00,2013-01-30,11:45:00,,0,5,Planned,0,Call,,High,0,Private] +01/30/13 11:37:02,927 [1520] INFO index - function insertIntoEntityTable Calendar vtiger_table name vtiger_activitycf +01/30/13 11:37:02,927 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,927 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:37:02,928 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,928 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:37:02,928 [1520] DEBUG index - Prepared sql query parameters : [16,vtiger_activitycf] +01/30/13 11:37:02,932 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_activitycf(activityid) values(?) +01/30/13 11:37:02,932 [1520] DEBUG index - Prepared sql query parameters : [140] +01/30/13 11:37:02,974 [1520] INFO index - function insertIntoEntityTable Calendar vtiger_table name vtiger_seactivityrel +01/30/13 11:37:02,974 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:37:02,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,975 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:37:02,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:37:02,975 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and tablename=? and displaytype in (1,3,4) and vtiger_field.presence in (0,2) +01/30/13 11:37:02,975 [1520] DEBUG index - Prepared sql query parameters : [16,vtiger_seactivityrel] +01/30/13 11:37:02,980 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_seactivityrel(activityid,crmid) values(?,?) +01/30/13 11:37:02,980 [1520] DEBUG index - Prepared sql query parameters : [140,139] +01/30/13 11:37:03,080 [1520] INFO index - in insertIntoReminderTable vtiger_activity_reminder module is Calendar +01/30/13 11:37:03,080 [1520] DEBUG index - Entering vtiger_activity_reminder(140,0,0,,delete) method ... +01/30/13 11:37:03,080 [1520] DEBUG index - Prepared sql query being executed : SELECT activity_id FROM vtiger_activity_reminder WHERE activity_id = ? +01/30/13 11:37:03,080 [1520] DEBUG index - Prepared sql query parameters : [140] +01/30/13 11:37:03,136 [1520] DEBUG index - Prepared sql query being executed : INSERT INTO vtiger_activity_reminder VALUES (?,?,?,?) +01/30/13 11:37:03,136 [1520] DEBUG index - Prepared sql query parameters : [140,0,0,] +01/30/13 11:37:03,138 [1520] INFO VT - PearDatabase ->ADODB error Error in processing vtiger_table vtiger_activity_reminder Query Failed:INSERT INTO vtiger_activity_reminder VALUES (?,?,?,?)::->[1366]Incorrect integer value: '' for column 'recurringid' at row 1 +01/30/13 11:41:39,621 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:41:39,999 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:41:39,999 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:41:39,999 [1520] DEBUG index - ****Starting for new session +01/30/13 11:41:39,999 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:41:39,1000 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'EditView', + 'return_module' => 'Accounts', + 'return_action' => 'DetailView', + 'activity_mode' => 'Events', + 'return_id' => '139', + 'parent_id' => '139', + 'parenttab' => 'Marketing', +) +01/30/13 11:41:39,1000 [1520] INFO index - About to take action EditView +01/30/13 11:41:39,1000 [1520] DEBUG index - in EditView +01/30/13 11:41:39,1000 [1520] INFO index - current page is modules/Calendar/EditView.php +01/30/13 11:41:40,000 [1520] INFO index - current module is Calendar +01/30/13 11:41:40,036 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:41:40,036 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:41:40,036 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:41:40,037 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,037 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,037 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:41:40,037 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:41:40,049 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,049 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,049 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:40,049 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:41:40,049 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:41:40,050 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:41:40,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,051 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:41:40,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,051 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:41:40,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,052 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:41:40,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,052 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:40,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,053 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:41:40,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,053 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:41:40,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,054 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:41:40,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,054 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:41:40,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,055 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:41:40,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,055 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:41:40,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,056 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:41:40,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,056 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:41:40,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,057 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:41:40,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,057 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:41:40,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,058 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:41:40,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,058 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:41:40,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,059 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:41:40,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,059 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:41:40,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,060 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:41:40,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,060 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:41:40,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,061 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:41:40,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,061 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,062 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:41:40,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,063 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:41:40,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,063 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:41:40,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,064 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:41:40,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,064 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:41:40,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,065 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:41:40,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,065 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:41:40,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,066 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:41:40,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,066 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:41:40,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,067 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:41:40,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,067 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:41:40,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,068 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:41:40,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,068 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:41:40,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,069 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:41:40,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,069 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:41:40,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,070 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:41:40,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,070 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:41:40,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,071 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:41:40,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,071 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:41:40,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,072 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:41:40,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,072 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:41:40,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,073 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:41:40,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,073 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:41:40,077 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:41:40,077 [1520] DEBUG index - Prepared sql query parameters : [317,1,Calendar,EditView,,2013-01-30 11:41:40] +01/30/13 11:41:40,080 [1520] DEBUG index - Current user is: admin +01/30/13 11:41:40,080 [1520] DEBUG index - Current theme is: softed +01/30/13 11:41:40,080 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:41:40,080 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:41:40,082 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:41:40,082 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:41:40,084 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:41:40,084 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:41:40,085 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:41:40,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,086 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:41:40,086 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:41:40,086 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:41:40,087 [1520] DEBUG index - including headers +01/30/13 11:41:40,087 [1520] DEBUG index - Entering getParentTabFromModule(Calendar) method ... +01/30/13 11:41:40,087 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:40,091 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,091 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,093 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:41:40,094 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:41:40,094 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,094 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:41:40,094 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,095 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:41:40,095 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,095 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:41:40,095 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,095 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:41:40,096 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,096 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:41:40,096 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,096 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:41:40,097 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:41:40,106 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:40,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,106 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:41:40,106 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:40,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:40,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,108 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:41:40,108 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:41:40,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,109 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:41:40,109 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:41:40,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:40,110 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,110 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:41:40,111 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:41:40,111 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,111 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:40,112 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,112 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:41:40,112 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:41:40,112 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,112 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:40,113 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,113 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:41:40,113 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:41:40,114 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:40,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,114 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:41:40,114 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:41:40,115 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,115 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:41:40,116 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:41:40,116 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,116 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:40,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,117 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:41:40,117 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:41:40,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:40,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,118 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:41:40,118 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:41:40,119 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:40,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:41:40,120 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:41:40,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,120 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:40,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,121 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:41:40,121 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:41:40,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:40,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,122 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:41:40,122 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:41:40,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:40,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,123 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:41:40,123 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:41:40,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,124 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:40,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,125 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:41:40,125 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:41:40,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,125 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:40,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,126 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:41:40,126 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:41:40,126 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,126 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:40,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,127 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:41:40,128 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:41:40,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,128 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:40,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,129 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:41:40,129 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:41:40,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:40,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,130 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:41:40,131 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:41:40,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,131 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:41:40,131 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:41:40) method ... +01/30/13 11:41:40,131 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:41:40,132 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:41:40) method ... +01/30/13 11:41:40,132 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:41:40,132 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:40,132 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:40,133 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:41:40,133 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:41:40,133 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:41:40,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,137 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,138 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,140 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,141 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,142 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,143 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,144 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,146 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:41:40,151 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:41:40,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,151 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:41:40,151 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:40,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:40,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:40,154 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:41:40,154 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,154 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:40,155 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,156 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:40,156 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,156 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:41:40,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,156 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:41:40,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,157 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:41:40,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,157 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:41:40,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,159 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:41:40,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,159 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:41:40,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,159 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:41:40,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,160 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:41:40,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,160 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:41:40,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,161 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,161 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:41:40,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,162 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:41:40,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,162 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,163 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,164 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:41:40,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,165 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:41:40,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,165 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:41:40,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,166 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:41:40,166 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:41:40,166 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:40,169 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:41:40,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,170 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:41:40,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,171 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:41:40,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,172 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:41:40,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,173 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:41:40,173 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,173 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:40,174 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:41:40,175 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:41:40,176 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,176 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:41:40,176 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:41:40,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:41:40,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,187 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:41:40,188 [1520] DEBUG index - function getTranslatedString(LBL_FILENAME) - translated to (文件名称) +01/30/13 11:41:40,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,189 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:41:40,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:40,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,189 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:41:40,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:40,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,189 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:40,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:40,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,190 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:41:40,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:40,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,190 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:41:40,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:40,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,190 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:41:40,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:40,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,191 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:41:40,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:41:40,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,191 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:41:40,192 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:40,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,192 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:41:40,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:41:40,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,192 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:41:40,194 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:41:40,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,195 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:41:40,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:41:40,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,196 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:41:40,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:41:40,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,196 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:41:40,196 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:41:40,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,197 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:41:40,197 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:41:40,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,198 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:41:40,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:40,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,198 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:41:40,198 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:41:40,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,198 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:41:40,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:41:40,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,199 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:41:40,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:41:40,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,200 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:41:40,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:40,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,201 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:41:40,201 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:40,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,201 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:41:40,201 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:40,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,201 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:41:40,201 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:40,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,201 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:41:40,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:40,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,202 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:41:40,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:41:40,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,202 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:41:40,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:40,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,203 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:41:40,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:40,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,203 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:41:40,203 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:41:40,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,204 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:41:40,204 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:40,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,204 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:41:40,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:40,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,204 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:41:40,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:41:40,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,205 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:41:40,205 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:41:40,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,206 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:41:40,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:41:40,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,206 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:41:40,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,207 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:41:40,207 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:41:40,208 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,219 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:40,219 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:40,220 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:41:40,221 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,221 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:41:40,221 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:41:40,222 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:41:40,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,222 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:41:40,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,222 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:41:40,222 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:41:40,234 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:41:40,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,234 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,235 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:40,236 [1520] DEBUG index - Entering setObjectValuesFromRequest(Activity) method ... +01/30/13 11:41:40,236 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:41:40,236 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where deleted=0 and status='Active' and id!=? +01/30/13 11:41:40,236 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:40,240 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select * from vtiger_users where deleted=0 and status='Active' and id!='1' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 317 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #468 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 58 + [_queryID] => Resource id #468 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:41:40,241 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,241 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,243 [1520] INFO VT - PearDatabase ->Inside the function getUserEmailId. --- id = '1' +01/30/13 11:41:40,243 [1520] DEBUG index - Prepared sql query being executed : SELECT email1, email2, secondaryemail from vtiger_users WHERE status='Active' AND id = ? +01/30/13 11:41:40,243 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:40,245 [1520] INFO VT - PearDatabase ->Email id is selected => 'mail@inkinlight.com' +01/30/13 11:41:40,245 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:41:40,245 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:41:40,245 [1520] DEBUG index - Entering getBlocks(Events,create_view,,Array,BAS) method ... +01/30/13 11:41:40,245 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,246 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:41:40,246 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:41:40,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,248 [1520] DEBUG index - function getTranslatedString(LBL_EVENT_INFORMATION) - translated to (事件信息) +01/30/13 11:41:40,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,249 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,249 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,250 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/30/13 11:41:40,250 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:41:40,250 [1520] DEBUG index - Prepared sql query parameters : [16,39,40,41,87,BAS] +01/30/13 11:41:40,259 [1520] DEBUG index - Entering getBlockInformation(Events,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +16,277,reminder_time,vtiger_activity_reminder,1,30,reminder_time,Send Reminder,1,0,,100,1,40,1,I~O,1,,BAS,1, +16,256,subject,vtiger_activity,1,2,subject,Subject,1,0,,100,1,41,1,V~M,0,1,BAS,1, +16,276,description,vtiger_crmentity,1,19,description,Description,1,0,,100,1,41,1,V~O,1,,BAS,1, +16,257,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,2,41,1,V~M,0,6,BAS,1, +16,258,date_start,vtiger_activity,1,6,date_start,Start Date & Time,1,0,,100,3,41,1,DT~M~time_start,0,2,BAS,1, +16,260,due_date,vtiger_activity,1,23,due_date,End Date,1,0,,100,5,41,1,D~M~OTH~GE~date_start~Start Date & Time,0,5,BAS,1, +16,262,recurringtype,vtiger_activity,1,16,recurringtype,Recurrence,1,0,,100,6,41,1,O~O,1,,BAS,1, +16,263,duration_hours,vtiger_activity,1,63,duration_hours,Duration,1,0,,100,7,41,1,I~M,1,,BAS,1, +16,265,crmid,vtiger_seactivityrel,1,66,parent_id,Related To,1,0,,100,9,41,1,I~O,1,,BAS,1, +16,266,eventstatus,vtiger_activity,1,15,eventstatus,Status,1,0,,100,10,41,1,V~M,0,3,BAS,1, +16,267,sendnotification,vtiger_activity,1,56,sendnotification,Send Notification,1,0,,100,11,41,1,C~O,1,,BAS,1, +16,268,activitytype,vtiger_activity,1,15,activitytype,Activity Type,1,0,,100,12,41,1,V~M,0,4,BAS,1, +16,269,location,vtiger_activity,1,1,location,Location,1,0,,100,13,41,1,V~O,1,,BAS,1, +16,272,priority,vtiger_activity,1,15,taskpriority,Priority,1,0,,100,16,41,1,V~O,1,,BAS,1, +16,273,notime,vtiger_activity,1,56,notime,No Time,1,0,,100,17,41,1,C~O,1,,BAS,1, +16,274,visibility,vtiger_activity,1,16,visibility,Visibility,1,0,,100,18,41,1,V~O,1,,BAS,1, +,Array,16,Array) method ... +01/30/13 11:41:40,260 [1520] DEBUG index - Entering getOutputHtml(30,reminder_time,Send Reminder,100,Array,1,Events) method ... +01/30/13 11:41:40,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,260 [1520] DEBUG index - function getTranslatedString(Send Reminder) - translated to (发送邮件通知) +01/30/13 11:41:40,260 [1520] DEBUG index - Entering getReminderSelectOption(0,31,remdays,) method ... +01/30/13 11:41:40,261 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:41:40,261 [1520] DEBUG index - Entering getReminderSelectOption(0,23,remhrs,) method ... +01/30/13 11:41:40,261 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:41:40,261 [1520] DEBUG index - Entering getReminderSelectOption(1,59,remmin,) method ... +01/30/13 11:41:40,261 [1520] DEBUG index - Exiting getReminderSelectOption method ... +01/30/13 11:41:40,261 [1520] DEBUG index - function getTranslatedString(LBL_DAYS) - translated to (日) +01/30/13 11:41:40,261 [1520] DEBUG index - function getTranslatedString(LBL_HOURS) - translated to (时) +01/30/13 11:41:40,261 [1520] DEBUG index - function getTranslatedString(LBL_MINUTES) - translated to (分) +01/30/13 11:41:40,261 [1520] DEBUG index - function getTranslatedString(LBL_BEFORE_EVENT) - translated to (在事件开始之前) +01/30/13 11:41:40,262 [1520] DEBUG index - function getTranslatedString(LBL_YES) - translated to (是) +01/30/13 11:41:40,262 [1520] DEBUG index - function getTranslatedString(LBL_NO) - translated to (否) +01/30/13 11:41:40,262 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,262 [1520] DEBUG index - Entering getOutputHtml(2,subject,Subject,100,Array,1,Events) method ... +01/30/13 11:41:40,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,263 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:41:40,263 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,264 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Events) method ... +01/30/13 11:41:40,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,265 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:41:40,265 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,265 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Events) method ... +01/30/13 11:41:40,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,266 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:40,266 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:41:40,266 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:41:40,268 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:41:40,269 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:41:40,269 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:41:40,269 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:41:40,269 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:41:40,272 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,272 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,274 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,274 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,277 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:40,277 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:41:40,277 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:41:40,277 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:41:40,277 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:41:40,277 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:41:40,277 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:41:40,278 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:41:40,278 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:41:40,280 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:40,280 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:41:40,280 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:41:40,280 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:41:40,281 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:41:40,281 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:41:40,281 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,281 [1520] DEBUG index - Entering getOutputHtml(6,date_start,Start Date & Time,100,Array,1,Events) method ... +01/30/13 11:41:40,282 [1520] INFO index - uitype is 6 +01/30/13 11:41:40,282 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,282 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,282 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:41:40,282 [1520] INFO index - in getNewDisplayDate +01/30/13 11:41:40,282 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:41:40,282 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:41:40) method ... +01/30/13 11:41:40,283 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:41:40,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,283 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (开始时间) +01/30/13 11:41:40,283 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:40,283 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:40,283 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,284 [1520] DEBUG index - Entering getOutputHtml(23,due_date,End Date,100,Array,1,Events) method ... +01/30/13 11:41:40,284 [1520] INFO index - uitype is 23 +01/30/13 11:41:40,284 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,284 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,284 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:41:40,285 [1520] INFO index - in getNewDisplayDate +01/30/13 11:41:40,285 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:41:40,285 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:41:40) method ... +01/30/13 11:41:40,285 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:41:40,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,285 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:41:40,285 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:40,285 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:40,286 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,286 [1520] DEBUG index - Entering getOutputHtml(16,recurringtype,Recurrence,100,Array,1,Events) method ... +01/30/13 11:41:40,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,287 [1520] DEBUG index - function getTranslatedString(Recurrence) - translated to (重复) +01/30/13 11:41:40,287 [1520] DEBUG index - Prepared sql query being executed : select recurringtype from vtiger_recurringtype order by sortorderid +01/30/13 11:41:40,289 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--None--) +01/30/13 11:41:40,289 [1520] DEBUG index - function getTranslatedString(Daily) - translated to (天) +01/30/13 11:41:40,289 [1520] DEBUG index - function getTranslatedString(Weekly) - translated to (周) +01/30/13 11:41:40,289 [1520] DEBUG index - function getTranslatedString(Monthly) - translated to (月) +01/30/13 11:41:40,290 [1520] DEBUG index - function getTranslatedString(Yearly) - translated to (年) +01/30/13 11:41:40,290 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,290 [1520] DEBUG index - Entering getOutputHtml(63,duration_hours,Duration,100,Array,1,Events) method ... +01/30/13 11:41:40,291 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,291 [1520] DEBUG index - function getTranslatedString(Duration) - translated to (持续) +01/30/13 11:41:40,291 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_duration_minutes order by sortorderid +01/30/13 11:41:40,293 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,294 [1520] DEBUG index - Entering getOutputHtml(66,parent_id,Related To,100,Array,1,Events) method ... +01/30/13 11:41:40,295 [1520] DEBUG index - Entering getSalesEntityType(139) method ... +01/30/13 11:41:40,295 [1520] INFO index - in getSalesEntityType 139 +01/30/13 11:41:40,295 [1520] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:41:40,295 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:41:40,297 [1520] DEBUG index - Exiting getSalesEntityType method ... +01/30/13 11:41:40,297 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:41:40,297 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,297 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:41:40,299 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:41:40,299 [1520] DEBUG index - Prepared sql query parameters : [139] +01/30/13 11:41:40,300 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,301 [1520] DEBUG index - Entering getOutputHtml(15,eventstatus,Status,100,Array,1,Events) method ... +01/30/13 11:41:40,301 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:41:40,302 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:41:40,302 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:41:40,302 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:41:40,302 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:41:40,304 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:41:40,304 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:41:40,304 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:41:40,306 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:41:40,306 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:41:40,306 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,306 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:41:40,311 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 317 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:41:40,312 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,312 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,314 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,314 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:41:40,314 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,314 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:41:40,317 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,317 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:41:40,317 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,318 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:41:40,321 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,321 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:41:40,321 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:41:40,321 [1520] DEBUG index - Prepared sql query parameters : [eventstatus] +01/30/13 11:41:40,323 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct eventstatus FROM vtiger_eventstatus inner join vtiger_role2picklist on vtiger_eventstatus.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:41:40,323 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:41:40,333 [1520] DEBUG index - function getTranslatedString(Planned) - translated to (计划中) +01/30/13 11:41:40,333 [1520] DEBUG index - function getTranslatedString(Held) - translated to (已执行) +01/30/13 11:41:40,333 [1520] DEBUG index - function getTranslatedString(Not Held) - translated to (未执行) +01/30/13 11:41:40,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,333 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:41:40,333 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,334 [1520] DEBUG index - Entering getOutputHtml(56,sendnotification,Send Notification,100,Array,1,Events) method ... +01/30/13 11:41:40,334 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,335 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:41:40,335 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,335 [1520] DEBUG index - Entering getOutputHtml(15,activitytype,Activity Type,100,Array,1,Events) method ... +01/30/13 11:41:40,336 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:41:40,336 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:41:40,336 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:41:40,336 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:41:40,336 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,336 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:41:40,340 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 317 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #521 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #521 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:41:40,341 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,342 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,344 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,344 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:41:40,344 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,344 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:41:40,348 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,348 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:41:40,348 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,348 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:41:40,351 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,351 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:41:40,352 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:41:40,352 [1520] DEBUG index - Prepared sql query parameters : [activitytype] +01/30/13 11:41:40,355 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct activitytype FROM vtiger_activitytype inner join vtiger_role2picklist on vtiger_activitytype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:41:40,355 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:41:40,364 [1520] DEBUG index - function getTranslatedString(Call) - translated to (电话) +01/30/13 11:41:40,364 [1520] DEBUG index - function getTranslatedString(Meeting) - translated to (会议) +01/30/13 11:41:40,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,365 [1520] DEBUG index - function getTranslatedString(Activity Type) - translated to (活动类型) +01/30/13 11:41:40,365 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,365 [1520] DEBUG index - Entering getOutputHtml(1,location,Location,100,Array,1,Events) method ... +01/30/13 11:41:40,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,366 [1520] DEBUG index - function getTranslatedString(Location) - translated to (地点) +01/30/13 11:41:40,366 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,366 [1520] DEBUG index - Entering getOutputHtml(15,taskpriority,Priority,100,Array,1,Events) method ... +01/30/13 11:41:40,367 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:41:40,367 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:41:40,367 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:41:40,367 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:41:40,367 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,367 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:41:40,373 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 317 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #531 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #531 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:41:40,374 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:40,374 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:40,376 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,376 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:41:40,376 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,376 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:41:40,380 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,380 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:41:40,380 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:41:40,380 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:41:40,383 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:41:40,383 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:41:40,384 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:41:40,384 [1520] DEBUG index - Prepared sql query parameters : [taskpriority] +01/30/13 11:41:40,385 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct taskpriority FROM vtiger_taskpriority inner join vtiger_role2picklist on vtiger_taskpriority.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:41:40,386 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:41:40,393 [1520] DEBUG index - function getTranslatedString(High) - translated to (高) +01/30/13 11:41:40,393 [1520] DEBUG index - function getTranslatedString(Medium) - translated to (中) +01/30/13 11:41:40,393 [1520] DEBUG index - function getTranslatedString(Low) - translated to (低) +01/30/13 11:41:40,393 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,393 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,393 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:41:40,393 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,394 [1520] DEBUG index - Entering getOutputHtml(56,notime,No Time,100,Array,1,Events) method ... +01/30/13 11:41:40,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,394 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,394 [1520] DEBUG index - function getTranslatedString(No Time) - translated to (没有时间) +01/30/13 11:41:40,395 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,395 [1520] DEBUG index - Entering getOutputHtml(16,visibility,Visibility,100,Array,1,Events) method ... +01/30/13 11:41:40,396 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,396 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,396 [1520] DEBUG index - function getTranslatedString(Visibility) - translated to (可见性) +01/30/13 11:41:40,396 [1520] DEBUG index - Prepared sql query being executed : select visibility from vtiger_visibility order by sortorderid +01/30/13 11:41:40,398 [1520] DEBUG index - function getTranslatedString(Private) - translated to (私有) +01/30/13 11:41:40,398 [1520] DEBUG index - function getTranslatedString(Public) - translated to (公开) +01/30/13 11:41:40,398 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:41:40,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,398 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,398 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,398 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,399 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,399 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,399 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:41:40,399 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:41:40,399 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:41:40,400 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:40,400 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:40,400 [1520] INFO index - Activity edit view +01/30/13 11:41:40,401 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:40,401 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:40,402 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:40,402 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:40,402 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,contact_id) method ... +01/30/13 11:41:40,402 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,403 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:41:40,405 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,405 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,405 [1520] DEBUG index - Entering getTabModuleName(16) method ... +01/30/13 11:41:40,405 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,405 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:41:40,405 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:41:40,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,411 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/30/13 11:41:40,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,411 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:41:40,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,411 [1520] DEBUG index - function getTranslatedString(Start Date & Time) - translated to (Start Date & Time) +01/30/13 11:41:40,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,412 [1520] DEBUG index - function getTranslatedString(Time Start) - translated to (开始时间) +01/30/13 11:41:40,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,412 [1520] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/30/13 11:41:40,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,412 [1520] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/30/13 11:41:40,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,413 [1520] DEBUG index - function getTranslatedString(Recurrence) - translated to (重复) +01/30/13 11:41:40,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,413 [1520] DEBUG index - function getTranslatedString(Duration) - translated to (持续) +01/30/13 11:41:40,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,413 [1520] DEBUG index - function getTranslatedString(Duration Minutes) - translated to (持续分钟) +01/30/13 11:41:40,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,414 [1520] DEBUG index - function getTranslatedString(Related To) - translated to (关联于) +01/30/13 11:41:40,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,414 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:41:40,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,414 [1520] DEBUG index - function getTranslatedString(Send Notification) - translated to (发送邮件通知) +01/30/13 11:41:40,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,415 [1520] DEBUG index - function getTranslatedString(Activity Type) - translated to (活动类型) +01/30/13 11:41:40,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,415 [1520] DEBUG index - function getTranslatedString(Location) - translated to (地点) +01/30/13 11:41:40,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,415 [1520] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/30/13 11:41:40,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,416 [1520] DEBUG index - function getTranslatedString(No Time) - translated to (没有时间) +01/30/13 11:41:40,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,416 [1520] DEBUG index - function getTranslatedString(Visibility) - translated to (可见性) +01/30/13 11:41:40,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,416 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:41:40,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,417 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:41:40,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,417 [1520] DEBUG index - function getTranslatedString(Send Reminder) - translated to (发送邮件通知) +01/30/13 11:41:40,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:40,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,417 [1520] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/30/13 11:41:40,417 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:41:40,417 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:41:40,417 [1520] DEBUG index - Entering Button_Check(Calendar) method ... +01/30/13 11:41:40,418 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:41:40,418 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,418 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:40,419 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,419 [1520] DEBUG index - Entering isPermitted(Calendar,Import,) method ... +01/30/13 11:41:40,419 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,419 [1520] DEBUG index - Entering isPermitted(Calendar,Export,) method ... +01/30/13 11:41:40,420 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,420 [1520] DEBUG index - Entering isPermitted(Calendar,Merge,) method ... +01/30/13 11:41:40,420 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,420 [1520] DEBUG index - Entering isPermitted(Calendar,DuplicatesHandling,) method ... +01/30/13 11:41:40,421 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,421 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:40,422 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,422 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:41:40,422 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,422 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:41:40,423 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,423 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,423 [1520] DEBUG index - Entering getCalendarCustomFields(16, edit, Array) +01/30/13 11:41:40,424 [1520] DEBUG index - Entering getBlockId(16,LBL_CUSTOM_INFORMATION) method ... +01/30/13 11:41:40,424 [1520] DEBUG index - Prepared sql query being executed : select blockid from vtiger_blocks where tabid=? and blocklabel = ? +01/30/13 11:41:40,424 [1520] DEBUG index - Prepared sql query parameters : [16,LBL_CUSTOM_INFORMATION] +01/30/13 11:41:40,426 [1520] DEBUG index - Exiting getBlockId method ... +01/30/13 11:41:40,426 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where block=? AND vtiger_field.tabid=? ORDER BY fieldid +01/30/13 11:41:40,426 [1520] DEBUG index - Prepared sql query parameters : [87,16] +01/30/13 11:41:40,428 [1520] DEBUG index - Exiting getCalendarCustomFields() +01/30/13 11:41:40,428 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:41:40,428 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:41:40,429 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:40,429 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,429 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:41:40,429 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:41:40,431 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:41:40,457 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:41:40,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,458 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:41:40,458 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:41:40,478 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:41:40,479 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:40,480 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,697 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:41:40,829 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:41:40,829 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:41:40,829 [1520] DEBUG index - ****Starting for new session +01/30/13 11:41:40,829 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:41:40,830 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:41:40,830 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:41:40,830 [1520] DEBUG index - in CalendarAjax +01/30/13 11:41:40,830 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:41:40,830 [1520] INFO index - current module is Calendar +01/30/13 11:41:40,863 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:41:40,863 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:41:40,863 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:41:40,863 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,864 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,864 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:41:40,864 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:41:40,874 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:40,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:40,874 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:40,874 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:41:40,874 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:41:40,875 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:41:40,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,876 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:41:40,876 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,876 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:41:40,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,877 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:41:40,877 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,877 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:40,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,878 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:41:40,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,878 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:41:40,878 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,879 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:41:40,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,879 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:41:40,879 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,880 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:41:40,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,880 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:41:40,880 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,881 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:41:40,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,881 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:41:40,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,882 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:41:40,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,882 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:41:40,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,883 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:41:40,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,883 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:41:40,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,883 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:41:40,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,884 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:41:40,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,884 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:41:40,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,885 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:41:40,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,885 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:41:40,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,886 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:41:40,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,886 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:41:40,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,887 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:41:40,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,887 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:41:40,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,888 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:41:40,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,888 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:41:40,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,889 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:41:40,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,889 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:41:40,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,890 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:41:40,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,890 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:41:40,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,891 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:41:40,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,891 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:41:40,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,892 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:41:40,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,892 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:41:40,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,893 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:41:40,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,893 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:41:40,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,894 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:41:40,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,894 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:41:40,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,895 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:41:40,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,895 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:41:40,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,896 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:41:40,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,896 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:41:40,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,897 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:41:40,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,897 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:41:40,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,898 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:41:40,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:40,898 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:41:40,899 [1520] DEBUG index - Current user is: admin +01/30/13 11:41:40,899 [1520] DEBUG index - Current theme is: softed +01/30/13 11:41:40,899 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:41:40,899 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:41:40,901 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:41:40,901 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:41:40,903 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:41:40,903 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:41:40,904 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:41:40,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:40,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:40,905 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:41:40,905 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:41:40,906 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:41:40,906 [1520] DEBUG index - skipping headers +01/30/13 11:41:40,907 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:41:40,907 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:40,912 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:40,912 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:41:40,912 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:41:40,912 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:41:40,916 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:42')) +01/30/13 11:41:40,921 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:41:44,707 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:41:44,832 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:41:44,832 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:41:44,832 [1520] DEBUG index - ****Starting for new session +01/30/13 11:41:44,832 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:41:44,833 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:41:44,833 [1520] INFO index - About to take action index +01/30/13 11:41:44,833 [1520] DEBUG index - in index +01/30/13 11:41:44,833 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:41:44,833 [1520] INFO index - current module is Accounts +01/30/13 11:41:44,867 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:41:44,867 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:41:44,867 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:41:44,867 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:44,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,868 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:44,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,868 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:41:44,868 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:41:44,879 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:41:44,879 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,879 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:44,879 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:41:44,880 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:41:44,881 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:41:44,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,881 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:41:44,881 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,882 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:41:44,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,882 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:41:44,882 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,883 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:44,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,883 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:41:44,883 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,884 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:41:44,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,884 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:41:44,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,885 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:41:44,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,885 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:41:44,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,886 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:41:44,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,886 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:41:44,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,886 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:41:44,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,887 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:41:44,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,887 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:41:44,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,888 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:41:44,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,888 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:41:44,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,889 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:41:44,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,889 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:41:44,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,890 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:41:44,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,890 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:41:44,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,891 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:41:44,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,891 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:41:44,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,892 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:41:44,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,892 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:41:44,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,893 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:41:44,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,893 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:41:44,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,894 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:41:44,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,894 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:41:44,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,895 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:41:44,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,895 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:41:44,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,896 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:41:44,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,896 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:41:44,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,897 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:41:44,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,897 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:41:44,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,897 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:41:44,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,898 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:41:44,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,898 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:41:44,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,899 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:41:44,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,899 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:41:44,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,900 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:41:44,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,900 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:41:44,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,901 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:41:44,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,901 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:41:44,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,902 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:41:44,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,902 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:41:44,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,903 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:41:44,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:44,903 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:41:44,907 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:41:44,907 [1520] DEBUG index - Prepared sql query parameters : [318,1,Accounts,index,,2013-01-30 11:41:44] +01/30/13 11:41:44,911 [1520] DEBUG index - Current user is: admin +01/30/13 11:41:44,911 [1520] DEBUG index - Current theme is: softed +01/30/13 11:41:44,911 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:41:44,911 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:41:44,913 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:41:44,913 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:41:44,915 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:41:44,915 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:41:44,916 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:41:44,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:44,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,917 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:41:44,917 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:41:44,917 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:41:44,917 [1520] DEBUG index - including headers +01/30/13 11:41:44,918 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:44,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:44,921 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:44,921 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:44,923 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:41:44,924 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:41:44,925 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,925 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:41:44,925 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,925 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:41:44,925 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,926 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:41:44,926 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,926 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:41:44,926 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,926 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:41:44,927 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,927 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:41:44,927 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,927 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:41:44,928 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:41:44,928 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:41:44,928 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:41:44,928 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:41:44,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:44,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,936 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:41:44,937 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:44,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:44,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,938 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:41:44,938 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:41:44,938 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:44,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,939 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:41:44,939 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:41:44,940 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:44,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,941 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:41:44,941 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:41:44,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,942 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:44,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,942 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:41:44,942 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:41:44,943 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:44,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,944 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:41:44,944 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:41:44,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:44,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,945 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:41:44,945 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:41:44,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:41:44,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,946 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:41:44,946 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:41:44,947 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,947 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:44,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,947 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:41:44,947 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:41:44,948 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:44,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,949 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:41:44,949 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:41:44,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,949 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:44,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,950 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:41:44,950 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:41:44,950 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,951 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:44,951 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,951 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:41:44,951 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:41:44,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:44,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,952 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:41:44,952 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:41:44,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:44,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,954 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:41:44,954 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:41:44,954 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,954 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:44,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,955 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:41:44,955 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:41:44,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,955 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:44,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,956 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:41:44,956 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:41:44,957 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,957 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:44,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,958 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:41:44,958 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:41:44,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:44,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,959 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:41:44,959 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:41:44,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:44,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:44,960 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:41:44,960 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:41:44) method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:41:44) method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:41:44,961 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:44,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:44,962 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:44,963 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:44,963 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:41:44,963 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:41:44,963 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:41:44,967 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,967 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,967 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,967 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,967 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,967 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,968 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,969 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,970 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,971 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,972 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,973 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,974 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,975 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,976 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,976 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,976 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,976 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,976 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:41:44,981 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:41:44,982 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,982 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:41:44,982 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:44,984 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:41:44,984 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:41:44,985 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:41:44,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,985 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,986 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,987 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:41:44,988 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,988 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:41:44,988 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,988 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:41:44,989 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,989 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:41:44,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,989 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:41:44,989 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:41:44,990 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,991 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:41:44,991 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,991 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:41:44,991 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,991 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:41:44,992 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,992 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:41:44,992 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,992 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:41:44,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,993 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:41:44,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,994 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:41:44,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,994 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:41:44,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,994 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:41:44,995 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,995 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:41:44,995 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,995 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,996 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:41:44,997 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:44,997 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:41:44,997 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:44,997 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:41:44,997 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:41:44,998 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:41:45,002 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,139) method ... +01/30/13 11:41:45,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,003 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,138) method ... +01/30/13 11:41:45,003 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,003 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,10) method ... +01/30/13 11:41:45,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,004 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,20) method ... +01/30/13 11:41:45,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,005 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:41:45,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,006 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:45,006 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:41:45,008 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:41:45,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,008 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:41:45,008 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:41:45,011 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:41:45,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,018 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:41:45,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,018 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:41:45,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:41:45,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,019 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:41:45,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,019 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:41:45,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:41:45,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,019 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:41:45,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:41:45,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,019 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:41:45,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:41:45,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,020 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:41:45,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:41:45,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,020 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:41:45,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:41:45,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,021 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:41:45,021 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:41:45,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,021 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:41:45,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:41:45,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,022 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:41:45,024 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:41:45,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,025 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:41:45,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:41:45,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,025 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:41:45,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:41:45,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,026 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:41:45,026 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:41:45,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,027 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:41:45,027 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:41:45,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,027 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:41:45,027 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:41:45,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,027 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:41:45,028 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:41:45,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,028 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:41:45,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:41:45,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,029 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:41:45,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:41:45,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,029 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:41:45,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:41:45,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,030 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:41:45,030 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:41:45,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,030 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:41:45,030 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:41:45,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,030 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:41:45,030 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:41:45,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,030 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:41:45,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:41:45,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,031 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:41:45,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:41:45,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,031 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:41:45,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:41:45,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,032 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:41:45,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:41:45,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,032 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:41:45,032 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:41:45,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,033 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:41:45,033 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:41:45,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,033 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:41:45,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:41:45,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,033 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:41:45,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:41:45,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,034 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:41:45,034 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:41:45,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,035 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:41:45,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:41:45,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,036 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:41:45,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:41:45,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,036 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:41:45,036 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:41:45,037 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,041 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:41:45,041 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:41:45,042 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:41:45,042 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:41:45,042 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:41:45,042 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,043 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,043 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:41:45,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,044 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:41:45,044 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,044 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:41:45,045 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,045 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:41:45,045 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,045 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:41:45,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,046 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:41:45,046 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,047 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:41:45,047 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,047 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:41:45,047 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,048 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,048 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,048 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,048 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,048 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:41:45,048 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,057 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,057 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,057 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,058 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:41:45,058 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,058 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:41:45,058 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:41:45,061 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:41:45,062 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:41:45,062 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,062 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:41:45,063 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,063 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:41:45,063 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,063 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:41:45,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:41:45,064 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:41:45,064 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:41:45,064 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:41:45,064 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:41:45,065 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:41:45,065 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:41:45,065 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:41:45,066 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:41:45,066 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:41:45,066 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:41:45,069 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:45,069 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:45,076 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:41:45,076 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:41:45,078 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:45,078 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:41:45,078 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:41:45,078 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:41:45,078 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:41:45,079 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:41:45,079 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:41:45,079 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:41:45,079 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:41:45,079 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:41:45,081 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:41:45,081 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:41:45,082 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:41:45,082 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:41:45,084 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:41:45,084 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:41:45,084 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:41:45,084 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:41:45,084 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:41:45,084 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:41:45,084 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:41:45,085 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:41:45,085 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:41:45,087 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:41:45,087 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:41:45,087 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,087 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,088 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:41:45,088 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,088 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,089 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:41:45,089 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:41:45,089 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,091 [1520] DEBUG index - Entering when status=0 +01/30/13 11:41:45,091 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:41:45,091 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:41:45,091 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,091 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,091 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:41:45,091 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,094 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,094 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,094 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:41:45,094 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:41:45,096 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:41:45,096 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:41:45,098 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:41:45,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,099 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:41:45,099 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:41:45,099 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:41:45,099 [1520] DEBUG index - Entering when status=0 +01/30/13 11:41:45,099 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:41:45,099 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:41:45,100 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:41:45,100 [1520] DEBUG index - Entering when status=0 +01/30/13 11:41:45,100 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:41:45,100 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:41:45,100 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,100 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,100 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:41:45,101 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,103 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:41:45,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,104 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:41:45,104 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:41:45,106 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:41:45,106 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:41:45,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,106 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:41:45,106 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,106 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:41:45,107 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:41:45,108 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:41:45,111 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:41:45,111 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:41:45,128 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:41:45,132 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:41:45,132 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:41:45,134 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:41:45,134 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:41:45,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:41:45,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,136 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:41:45,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:41:45,138 [1520] DEBUG index - Entering getTabModuleName(30) method ... diff --git a/logs/vtigercrm.log.5 b/logs/vtigercrm.log.5 new file mode 100644 index 0000000..aa63eab --- /dev/null +++ b/logs/vtigercrm.log.5 @@ -0,0 +1,35069 @@ +01/30/13 11:02:25,100 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,100 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:02:25,101 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,101 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:25,101 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:25,102 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:25,105 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:02:25,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,106 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:02:25,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,106 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:02:25,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,107 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:02:25,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,107 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:02:25,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,108 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:25,108 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:02:25,110 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:02:25,110 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,110 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:02:25,110 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:02:25,113 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:02:25,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,119 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:25,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,120 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:02:25,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:25,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,120 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:02:25,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,120 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:25,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,120 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:02:25,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:25,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,121 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:02:25,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:25,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,121 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:02:25,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:25,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,121 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:02:25,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:02:25,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,122 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:02:25,122 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:25,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,123 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:02:25,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:02:25,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,123 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:02:25,125 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:02:25,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,126 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:02:25,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:02:25,126 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,126 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:02:25,126 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:02:25,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,127 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:02:25,127 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:02:25,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,128 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:02:25,128 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:02:25,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,128 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:02:25,128 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:25,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,128 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:02:25,128 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:02:25,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,129 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:02:25,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:02:25,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,130 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:02:25,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:02:25,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,131 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:02:25,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:25,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,131 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:02:25,131 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:25,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,131 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:02:25,132 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:25,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,132 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:02:25,132 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:25,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,132 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:02:25,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:25,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,132 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:02:25,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:02:25,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,133 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:02:25,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:25,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,133 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:02:25,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:25,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,133 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:02:25,134 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:02:25,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,134 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:02:25,134 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:25,134 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,134 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:02:25,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:25,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,135 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:02:25,135 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:02:25,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,135 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:02:25,135 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:02:25,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,136 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:02:25,136 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:02:25,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,137 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:02:25,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,137 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:02:25,138 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:02:25,138 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,142 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,142 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,142 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,143 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,143 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:02:25,143 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,144 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:02:25,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,144 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:02:25,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,145 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:02:25,145 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,145 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:02:25,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,146 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:02:25,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,146 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:25,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,147 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:02:25,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,147 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:02:25,147 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,147 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,147 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,148 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,148 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,148 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:25,148 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,156 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,156 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,156 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,156 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:02:25,157 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,157 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:02:25,157 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:02:25,160 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:02:25,160 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,161 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,161 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:02:25,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,161 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:02:25,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,162 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:02:25,162 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:02:25,162 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:02:25,162 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:02:25,162 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:25,163 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:02:25,163 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:25,163 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:25,164 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:02:25,164 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:02:25,165 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:25,166 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:25,167 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:25,167 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:25,169 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:25,169 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:25,169 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:25,169 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:25,169 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:25,170 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:25,170 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:02:25,170 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:02:25,170 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:02:25,170 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:02:25,171 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:02:25,172 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:25,172 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:25,172 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:02:25,174 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:25,174 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:02:25,174 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,175 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:02:25,177 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,177 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,177 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,177 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,177 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,177 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,177 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,178 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:02:25,179 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:02:25,179 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,180 [1520] DEBUG index - Entering when status=0 +01/30/13 11:02:25,180 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:02:25,180 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:02:25,180 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,181 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:02:25,181 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,185 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,185 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,186 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:02:25,186 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,188 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:02:25,188 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:02:25,189 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:02:25,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,190 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:02:25,190 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:02:25,190 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:02:25,190 [1520] DEBUG index - Entering when status=0 +01/30/13 11:02:25,190 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:02:25,191 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:02:25,191 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:02:25,191 [1520] DEBUG index - Entering when status=0 +01/30/13 11:02:25,191 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:02:25,191 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:02:25,191 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,191 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:02:25,192 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,196 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,196 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:02:25,196 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:02:25,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,200 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:02:25,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,200 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:02:25,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,200 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:02:25,200 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:02:25,204 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:02:25,204 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:02:25,220 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:02:25,224 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:02:25,225 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:02:25,226 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,227 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,228 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:25,229 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:25,230 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,231 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,232 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,233 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:25,234 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,235 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:25,235 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:02:25,238 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:25,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,238 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:02:25,242 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:02:25,242 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:02:25,285 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,285 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:02:25,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,289 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:02:25,291 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,291 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:02:25,293 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,294 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:02:25,299 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:02:25,299 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:02:25,347 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,347 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:02:25,349 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,349 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:02:25,351 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,352 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:02:25,354 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,354 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:02:25,357 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,357 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:02:25,359 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,359 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:02:25,361 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,361 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:02:25,363 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,363 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:02:25,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,366 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:02:25,368 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:02:25,368 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:02:25,400 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,400 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:02:25,403 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,403 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:02:25,405 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,405 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:02:25,407 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,407 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:02:25,410 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:02:25,410 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:25,412 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,412 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:02:25,414 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,414 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:02:25,418 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:02:25,418 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:02:25,450 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,450 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:02:25,452 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,452 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:02:25,455 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,455 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:02:25,457 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,457 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:02:25,459 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,460 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:02:25,462 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,462 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:02:25,464 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,464 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:02:25,466 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,466 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:02:25,469 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,469 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:02:25,471 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,471 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:02:25,473 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,474 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:02:25,476 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:02:25,476 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:02:25,478 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:25,483 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:25,483 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:25,486 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:25,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:25,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,487 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:02:25,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:25,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,488 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:02:25,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:25,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,488 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:02:25,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:25,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,488 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:02:25,488 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:02:25,488 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,489 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:02:25,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:02:25,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,489 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:02:25,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:02:25,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,489 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:02:25,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:02:25,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,489 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:02:25,489 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:02:25,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,490 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:02:25,490 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:02:25,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,490 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:02:25,490 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:02:25,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,490 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:02:25,490 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:02:25,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,490 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:02:25,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:02:25,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,491 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:02:25,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:02:25,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,491 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:02:25,491 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:25,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,491 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:02:25,491 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:25,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,492 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:02:25,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:25,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,492 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:02:25,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:25,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,492 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:02:25,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:25,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,492 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:02:25,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:25,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,493 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:02:25,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,493 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,493 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:25,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:25,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,494 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:02:25,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:25,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,494 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:02:25,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:25,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,494 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:02:25,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:25,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,494 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:02:25,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:25,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,495 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:02:25,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:25,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,495 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:02:25,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:25,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,495 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:02:25,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:25,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,495 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:02:25,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:02:25,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,496 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:02:25,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:02:25,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,496 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:02:25,496 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:25,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,496 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:02:25,496 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:25,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,497 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:02:25,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:25,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,497 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:02:25,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:25,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,497 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:02:25,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:02:25,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,498 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:02:25,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:02:25,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,499 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:02:25,499 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:02:25,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,499 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:02:25,499 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:02:25,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,499 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:02:25,499 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:25,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,500 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:02:25,500 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:25,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,500 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:02:25,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:25,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,500 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:02:25,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:25,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,500 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:02:25,500 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:25,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,501 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:02:25,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:25,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,501 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:02:25,501 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:25,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,501 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:02:25,501 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:25,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,501 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:02:25,501 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:25,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,502 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:02:25,502 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:25,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,502 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:02:25,502 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:25,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,502 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:02:25,502 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:25,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,502 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:02:25,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:25,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,503 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:02:25,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:25,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,503 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:02:25,503 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:02:25,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,503 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:02:25,503 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:02:25,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,504 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:02:25,504 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,504 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,547 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:02:25,547 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:02:25,549 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,550 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,550 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:02:25,551 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,554 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:02:25,554 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,556 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:02:25,556 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,559 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:02:25,559 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:25,562 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:25,562 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:25,562 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:25,562 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:25,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,563 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,563 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:25,563 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:25,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,563 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:25,564 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,564 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:02:25,564 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:25,566 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:02:25,566 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:02:25,569 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,569 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,569 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,570 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,570 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,570 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,570 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,571 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,571 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,571 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,571 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,571 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,572 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,572 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,572 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,572 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,572 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,573 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,573 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,573 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,573 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,573 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,574 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,574 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,574 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,574 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,574 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,575 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,575 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,575 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,575 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,576 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,577 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,577 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:02:25,580 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:02:25,583 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,583 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,583 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,584 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,585 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,586 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,586 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,587 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:25,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,587 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:25,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,588 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:25,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,588 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:25,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,588 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:25,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,589 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:25,589 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,589 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,589 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,589 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:02:25,590 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:02:25,590 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:25,590 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:25,592 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:02:25,592 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:02:25,594 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:02:25,595 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,595 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:02:25,595 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:25,596 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,597 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,598 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,598 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,598 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,598 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,599 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,599 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,600 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,601 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,601 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,601 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,602 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,602 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,602 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,602 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,603 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,603 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,603 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,603 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,604 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,604 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,605 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,605 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,605 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,605 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,606 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,606 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,606 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,607 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,607 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,607 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,607 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,608 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,611 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,611 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,611 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,611 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,611 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,612 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,612 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,612 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:25,614 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,614 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,614 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,615 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,615 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,615 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,615 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,616 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,616 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,616 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,617 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,617 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,617 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,618 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,618 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,618 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,618 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,619 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,619 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,619 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,620 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,620 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,620 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,620 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,621 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,622 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,622 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,623 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,623 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,623 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,623 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,623 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,624 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,627 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,627 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,627 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,627 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,628 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,628 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,628 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:02:25,631 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,631 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,631 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,632 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,633 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,633 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,633 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,633 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,634 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,634 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,634 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,635 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,635 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,635 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,635 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,636 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,636 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,636 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,637 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,637 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,637 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,637 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,638 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,638 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,638 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,638 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,638 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,639 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,639 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,639 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,640 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,640 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,640 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,640 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,641 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,644 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,644 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,644 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,644 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,644 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,644 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,645 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,645 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,645 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,645 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,647 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,647 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,647 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,648 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,648 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,648 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,649 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,649 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,649 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,650 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,650 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,650 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,650 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,651 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,651 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,651 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,651 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,652 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,652 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,652 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,653 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,653 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,653 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,653 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,654 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,654 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,654 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,654 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,654 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,655 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,655 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,656 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,656 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,656 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,656 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,656 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,657 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,660 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,660 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,660 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,660 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,661 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,661 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,661 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:02:25,663 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,663 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,663 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,664 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,664 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,664 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,664 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,665 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,665 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,666 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,666 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,666 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,666 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,667 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,667 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,667 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,667 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,668 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,668 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,668 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,669 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,669 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,669 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,669 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,670 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,671 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,671 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,671 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,671 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,672 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,672 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,672 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,672 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,673 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,676 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,676 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,676 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,676 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,677 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,677 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,677 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:02:25,679 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,679 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,679 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,680 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,680 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,680 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,680 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,681 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,681 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,681 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,682 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,682 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,682 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,682 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,683 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,683 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,683 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,683 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,684 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,684 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,684 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,684 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,685 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,685 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,685 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,685 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,686 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,686 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,686 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,686 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,686 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,687 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,687 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,687 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,688 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,688 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,688 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,689 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,692 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,692 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,692 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,692 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,692 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,692 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,693 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:02:25,695 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,695 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,695 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,696 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,696 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,696 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,696 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,697 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,697 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,698 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,698 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,698 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,698 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,699 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,699 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,699 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,699 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,700 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,700 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,700 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,701 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,701 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,701 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,701 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,702 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,703 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,703 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,703 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,704 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,704 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,704 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,704 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,705 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,708 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,708 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,708 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,708 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,708 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,709 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,709 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:02:25,711 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,711 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,711 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,712 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,712 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,712 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,712 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,713 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,713 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,713 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,713 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,713 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,714 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,714 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,714 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,714 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,715 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,715 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,715 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,716 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,716 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,716 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,716 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,717 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,717 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,717 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,717 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,718 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,718 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,718 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,718 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,719 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,719 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,719 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,719 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,720 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,720 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,720 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,721 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,724 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,724 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,724 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,724 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,724 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,724 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,725 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,725 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:02:25,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,727 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,727 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,728 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,728 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,728 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,728 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,729 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,729 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,729 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,729 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,729 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,730 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,730 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,730 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,730 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,731 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,731 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,731 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,731 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,732 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,732 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,732 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,733 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,733 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,733 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,734 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,734 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,734 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,735 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,735 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,735 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,736 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,736 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,736 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,736 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,740 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,740 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,740 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,740 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,740 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,740 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,740 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,740 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:02:25,743 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,743 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,743 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,744 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,744 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,745 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,745 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,745 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,746 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,746 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,746 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,746 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,747 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,747 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,747 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,747 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,748 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,748 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,748 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,748 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,749 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,749 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,750 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,750 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,750 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,751 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,751 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:02:25,751 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:02:25,751 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,751 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,752 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,752 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,752 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,755 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:25,756 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:25,756 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,756 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:25,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,756 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:02:25,756 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:02:25,756 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:02:25,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,759 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:25,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,759 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:25,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,759 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:25,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,760 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:25,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,760 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:25,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,760 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:25,760 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:02:25,760 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:02:25,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,761 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:25,761 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,761 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,763 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,763 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:25,763 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,763 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,766 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,766 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:25,766 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,766 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,768 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,768 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:25,768 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,768 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,770 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,771 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,771 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:02:25,771 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,771 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,772 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,773 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,773 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:02:25,773 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,773 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,775 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,775 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:02:25,775 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,775 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,778 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,778 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:02:25,778 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,778 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,779 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,780 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:02:25,780 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,780 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,782 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,782 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:02:25,782 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,782 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,784 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,784 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:02:25,784 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,784 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,785 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,786 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:02:25,786 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,786 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,787 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,788 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:02:25,788 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,788 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,789 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,790 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:02:25,790 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,790 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,791 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,792 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:02:25,792 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,792 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,793 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,794 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:02:25,794 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,794 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,795 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,796 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:02:25,796 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,796 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,799 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,800 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:02:25,800 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,800 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,801 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,802 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:25,802 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,802 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,804 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,804 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:25,804 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,804 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,806 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,807 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:02:25,807 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,807 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,810 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,810 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:02:25,811 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,811 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,812 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,813 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:02:25,813 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,813 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:02:25,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,814 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:25,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,815 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:02:25,815 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,815 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,818 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,818 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,818 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:02:25,819 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,819 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,821 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,821 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:25,821 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,821 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,823 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,823 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:02:25,823 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,823 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,826 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,826 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:02:25,826 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,826 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,829 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,829 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:02:25,829 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,830 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,832 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,832 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:02:25,832 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,832 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,836 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,837 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:02:25,837 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,837 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,838 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,839 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:02:25,839 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,839 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,840 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,841 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:02:25,841 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,841 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,842 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,842 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:02:25,843 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,843 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,844 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,844 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:02:25,844 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,844 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:02:25,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,846 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:25,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,846 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:02:25,846 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:02:25,846 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:02:25,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,848 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:25,848 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:02:25,848 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:02:25,848 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,848 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:02:25,848 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:02:25,848 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:02:25,850 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:02:25,850 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:02:25,850 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:02:25,851 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:25,852 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:02:25,852 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:02:25,852 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:02:25,852 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,852 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,852 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:02:25,853 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:02:25,862 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:02:25,862 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:02:25,863 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,866 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:25,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,866 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:25,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,867 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:25,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,867 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:02:25,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,867 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:02:25,867 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,867 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:02:25,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,868 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:02:25,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,868 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:02:25,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,868 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:02:25,868 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,869 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:02:25,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,869 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:02:25,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,869 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:02:25,869 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,869 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,870 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:02:25,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,870 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:02:25,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,870 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:02:25,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,870 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:02:25,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,871 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:02:25,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,871 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:25,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,871 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:25,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,872 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:02:25,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,872 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:02:25,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,872 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:02:25,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,873 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:25,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,873 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:02:25,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,873 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:02:25,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,873 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:02:25,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,874 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:02:25,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,874 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:02:25,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,874 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,874 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:02:25,874 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,875 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:02:25,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,875 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:02:25,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,875 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:02:25,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,875 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,876 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:02:25,876 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,876 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,876 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:02:25,876 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:02:25,878 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:02:25,878 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:02:25,878 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:02:25,878 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:02:25,878 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:02:25,878 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:02:25,878 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:25,883 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,883 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,884 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:02:25,884 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:02:25,886 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:02:25,887 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,887 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:02:25,887 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:02:25,887 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:02:25,889 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:02:25,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,892 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,892 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:02:25,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,892 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:02:25,892 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,892 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,893 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,893 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,893 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,893 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,893 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,893 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,894 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,894 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,894 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,894 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,894 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,895 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,895 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,895 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,897 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:02:25,897 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:02:25,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,897 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:02:25,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,898 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:02:25,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,898 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:02:25,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,898 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:02:25,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,898 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:02:25,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,899 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:02:25,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,899 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:02:25,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,899 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:02:25,902 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:25,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,902 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:02:25,902 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,902 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,903 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,903 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:25,903 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:25,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:25,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,904 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:02:25,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:25,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,904 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:02:25,904 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:02:25,905 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:25,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:27,829 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:02:27,958 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:02:27,958 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:02:27,958 [1520] DEBUG index - ****Starting for new session +01/30/13 11:02:27,959 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:02:27,959 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'EditView', + 'record' => '2', + 'return_module' => 'Accounts', + 'return_action' => 'index', + 'parenttab' => 'Marketing', + 'return_viewname' => '4', +) +01/30/13 11:02:27,959 [1520] INFO index - About to take action EditView +01/30/13 11:02:27,959 [1520] DEBUG index - in EditView +01/30/13 11:02:27,959 [1520] INFO index - current page is modules/Accounts/EditView.php +01/30/13 11:02:27,959 [1520] INFO index - current module is Accounts +01/30/13 11:02:28,010 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:28,010 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:28,010 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:28,010 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:28,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,011 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:28,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,011 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:28,011 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:28,022 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:28,022 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,022 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:28,022 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:28,023 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:28,023 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:28,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,024 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:28,024 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,024 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:28,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,025 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:28,025 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,025 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:28,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,026 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:28,026 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,026 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,027 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:28,027 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,027 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,028 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:28,028 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,028 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,029 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:28,029 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,029 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,030 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:28,030 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,030 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:28,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,031 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:28,031 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,031 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,032 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,032 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:28,032 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,033 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,033 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:28,033 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,033 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,034 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,034 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:28,034 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,035 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,035 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:28,035 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,036 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,036 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:28,036 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,036 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,037 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:28,037 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,037 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,038 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:28,038 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,038 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,039 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:28,039 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,039 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,040 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:28,040 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,040 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,041 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,041 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:28,041 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,042 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,042 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:28,042 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,043 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,043 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:28,043 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,043 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,044 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:28,044 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,044 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,045 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:28,045 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,045 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:28,087 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:02:28,088 [1520] DEBUG index - Prepared sql query parameters : [267,1,Accounts,EditView,2,2013-01-30 11:02:28] +01/30/13 11:02:28,091 [1520] DEBUG index - Current user is: admin +01/30/13 11:02:28,091 [1520] DEBUG index - Current theme is: softed +01/30/13 11:02:28,091 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:02:28,091 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:02:28,093 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:02:28,093 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:28,095 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:28,095 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:28,096 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:28,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,097 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:02:28,097 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:02:28,097 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:02:28,097 [1520] DEBUG index - including headers +01/30/13 11:02:28,097 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:28,098 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:28,101 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,101 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,104 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:02:28,104 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:02:28,105 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,105 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:02:28,105 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,105 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:02:28,106 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,106 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:02:28,106 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,106 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:02:28,106 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,107 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:02:28,107 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,107 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:02:28,107 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,107 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:02:28,108 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:28,108 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:02:28,108 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:02:28,108 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:02:28,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,117 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,117 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:28,117 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:28,117 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,117 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:28,118 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,118 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:02:28,118 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:02:28,118 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:28,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,119 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:02:28,119 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:02:28,120 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,120 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:28,121 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,121 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:02:28,121 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:02:28,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:28,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,122 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:02:28,122 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:02:28,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,123 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:28,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,123 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:02:28,123 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:28,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:28,124 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,124 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:02:28,125 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:28,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,125 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:02:28,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,126 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:02:28,126 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:02:28,126 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,126 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:28,127 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,127 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:02:28,127 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:28,127 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:28,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,128 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:02:28,128 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:28,128 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,129 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:28,129 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,129 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:02:28,129 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:28,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,130 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:28,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,130 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:02:28,130 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:02:28,131 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:28,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,131 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:02:28,131 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:28,132 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,132 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:28,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,132 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:02:28,133 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:02:28,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,133 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:28,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,134 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:02:28,134 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:02:28,134 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,134 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:28,135 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,135 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:02:28,135 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:02:28,135 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,135 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:28,136 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,136 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:02:28,136 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:02:28,137 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,137 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:28,137 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,137 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:02:28,138 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:02:28,138 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:28,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,139 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:02:28,139 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:02:28,139 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,139 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:02:28,139 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:02:28) method ... +01/30/13 11:02:28,140 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:02:28,140 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:02:28) method ... +01/30/13 11:02:28,140 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:02:28,140 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:28,140 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:28,141 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:02:28,141 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:02:28,142 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:02:28,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,145 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,145 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,146 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,147 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,148 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,149 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,150 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,151 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,152 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,153 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,154 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,154 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,154 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,154 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,154 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:02:28,158 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:02:28,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,158 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:02:28,159 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:28,160 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:28,160 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:28,161 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:02:28,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,161 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,162 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:28,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,163 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:02:28,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,163 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:28,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,164 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,165 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,166 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:02:28,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,167 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:02:28,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,167 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:02:28,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,168 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:02:28,168 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,168 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,169 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:02:28,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,170 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:02:28,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,170 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:02:28,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,171 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:02:28,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,171 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:02:28,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,171 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:28,172 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:28,172 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:28,175 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:02:28,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,176 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:02:28,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,177 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:02:28,177 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,177 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:02:28,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,178 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:02:28,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,178 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:28,178 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:02:28,180 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:02:28,180 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,180 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:02:28,180 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:02:28,183 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:02:28,187 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,187 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,188 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:28,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:28,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,188 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:02:28,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:28,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,188 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:02:28,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,189 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:28,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:28,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,189 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:02:28,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:28,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,189 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:02:28,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:28,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,190 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:02:28,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:28,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,190 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:02:28,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:02:28,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,191 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:02:28,191 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:28,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,191 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:02:28,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:02:28,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,191 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:02:28,193 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:02:28,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,194 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:02:28,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:02:28,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,194 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:02:28,194 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:02:28,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,195 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:02:28,195 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:02:28,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,195 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:02:28,195 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:02:28,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,196 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:02:28,196 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:28,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,196 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:02:28,196 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:02:28,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,196 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:02:28,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:02:28,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,197 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:02:28,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:02:28,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,198 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:02:28,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:28,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,198 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:02:28,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:28,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,198 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:02:28,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:28,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,198 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:02:28,199 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:28,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,199 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:02:28,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:28,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,199 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:02:28,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:02:28,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,200 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:02:28,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:28,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,200 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:02:28,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:28,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,200 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:02:28,200 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:02:28,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,201 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:02:28,201 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:28,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,201 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:02:28,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:28,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,201 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:02:28,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:02:28,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,202 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:02:28,202 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:02:28,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,203 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:02:28,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:02:28,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,204 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:02:28,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,204 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:02:28,204 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:02:28,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,227 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:28,227 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:28,227 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,227 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,228 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,228 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,228 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:28,228 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:28,236 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,237 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,237 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:28,237 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:28,237 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:28,239 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:28,239 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,241 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:28,241 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,244 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:28,244 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,246 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:28,246 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,284 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:28,284 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,313 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,316 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:28,316 [1520] DEBUG index - Entering getView(edit) method ... +01/30/13 11:02:28,316 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:02:28,316 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,) method ... +01/30/13 11:02:28,317 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,317 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,317 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:02:28,317 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:28,320 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,320 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,321 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:02:28,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,322 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,322 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,322 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,322 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,323 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:02:28,323 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:02:28,377 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:02:28,378 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:02:28,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,379 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:28,379 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,380 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:02:28,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,381 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:28,381 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,382 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:02:28,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,383 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,383 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:28,384 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,385 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:02:28,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,386 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,386 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:28,386 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,387 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:02:28,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,388 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:02:28,388 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,389 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:02:28,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,390 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:02:28,390 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,391 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:02:28,392 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:02:28,392 [1520] INFO index - in getAccountName 0 +01/30/13 11:02:28,392 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:02:28,393 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:02:28,396 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:02:28,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,397 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:02:28,397 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,398 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:02:28,399 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,399 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,399 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:02:28,399 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,399 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:02:28,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,400 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:02:28,400 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,400 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:02:28,401 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,401 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,401 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:02:28,401 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,401 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:02:28,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,402 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:02:28,402 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,403 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:02:28,403 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,403 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,403 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:02:28,403 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,404 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:02:28,404 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,404 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,404 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:02:28,405 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:02:28,405 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:02:28,406 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:02:28,407 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:02:28,407 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:02:28,409 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,409 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,409 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,409 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,413 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #500 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #500 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,414 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,414 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,416 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,417 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,417 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,417 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,420 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,420 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,420 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,421 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,424 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,424 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,424 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,424 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:02:28,463 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,463 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,581 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,581 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:02:28,582 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:02:28,582 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:02:28,582 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:02:28,582 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:02:28,582 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:02:28,583 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:02:28,583 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:02:28,583 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:02:28,583 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:02:28,583 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:02:28,584 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:02:28,584 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:02:28,584 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:02:28,584 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:02:28,584 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:02:28,585 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:02:28,585 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:02:28,585 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:02:28,585 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:02:28,586 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:02:28,586 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:02:28,586 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:02:28,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,586 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:02:28,587 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,588 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:02:28,589 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,589 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,589 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,589 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,589 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,590 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,594 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #508 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #508 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,595 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,596 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,599 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,599 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,599 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,599 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,603 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,603 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,603 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,603 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,607 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,607 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,607 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,607 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:02:28,609 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,610 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,639 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,639 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:02:28,639 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:02:28,639 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:02:28,640 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:02:28,640 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:02:28,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,640 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:02:28,641 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,641 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:02:28,643 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,643 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,643 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,643 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,643 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,644 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,648 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #516 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #516 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,650 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,650 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,652 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,652 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,652 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,653 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,656 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,657 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,657 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,657 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,661 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,661 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,661 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,661 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:02:28,663 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,663 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,711 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,712 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:02:28,712 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:02:28,712 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:02:28,712 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:02:28,713 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:02:28,713 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:02:28,713 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:02:28,713 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:02:28,713 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:02:28,714 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:02:28,714 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:02:28,714 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,714 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,714 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:02:28,714 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,715 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,716 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,716 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,717 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:02:28,717 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,718 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:02:28,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,719 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,719 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:02:28,719 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,720 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:02:28,721 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:02:28,721 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:02:28,721 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:02:28,721 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,724 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:02:28,724 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:02:28,724 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:02:28,725 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:02:28,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,725 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:02:28,725 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,726 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:02:28,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,728 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:28,728 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:02:28,728 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:02:28,730 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:02:28,730 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:28,731 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:28,731 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:02:28,731 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:02:28,734 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,734 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,736 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,736 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,739 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:28,739 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:28,739 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:28,739 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:28,739 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:28,739 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:28,739 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:28,740 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:28,740 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:02:28,743 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:28,743 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:28,743 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:28,743 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:28,743 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:28,743 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:28,743 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,744 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:02:28,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,745 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:28,745 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,745 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:02:28,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,746 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:02:28,746 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,747 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:02:28,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,748 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:02:28,748 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,748 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:02:28,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,749 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,749 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,750 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:02:28,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,750 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,751 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,751 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,751 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:02:28,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,752 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:28,752 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,753 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:02:28,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,753 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:02:28,754 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,754 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:02:28,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,755 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:02:28,755 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,756 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:02:28,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,756 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:02:28,756 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,757 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,758 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:02:28,758 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,758 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,759 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:02:28,759 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,760 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:02:28,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,760 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:02:28,760 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,761 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:02:28,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,761 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:02:28,762 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,762 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:02:28,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,763 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:02:28,763 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,763 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,763 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,763 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,764 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,764 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,764 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,764 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,764 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:02:28,765 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:02:28,765 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,BAS) method ... +01/30/13 11:02:28,765 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,765 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:02:28,765 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:28,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,768 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,769 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:02:28,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,769 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,769 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,770 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:02:28,770 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,BAS] +01/30/13 11:02:28,778 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:02:28,778 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:02:28,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,779 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:28,779 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,779 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:02:28,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,780 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:28,780 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,781 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:02:28,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,781 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:28,781 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,782 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:02:28,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,782 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:28,782 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,783 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:02:28,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,783 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:02:28,784 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,784 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:02:28,784 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,785 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:02:28,785 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,785 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:02:28,785 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:02:28,786 [1520] INFO index - in getAccountName 0 +01/30/13 11:02:28,786 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:02:28,786 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:02:28,788 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:02:28,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,789 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:02:28,789 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,789 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:02:28,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,790 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:02:28,790 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,790 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:02:28,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,791 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:28,791 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:02:28,791 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:02:28,793 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:02:28,793 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:28,794 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:28,794 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:02:28,794 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:02:28,796 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,796 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,798 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,799 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,801 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:28,801 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:28,801 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:28,801 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:28,801 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:28,801 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:28,801 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:02:28,802 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:02:28,802 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:02:28,806 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:28,806 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:02:28,806 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:02:28,806 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:02:28,806 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:02:28,806 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:02:28,806 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,807 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:02:28,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,807 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:02:28,808 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,808 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:02:28,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,809 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:02:28,809 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,809 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:02:28,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,810 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,810 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,810 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:02:28,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,811 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,811 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,811 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:02:28,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,812 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:28,812 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,813 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:02:28,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,813 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:02:28,813 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,814 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:02:28,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,814 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,814 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:02:28,814 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,815 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:02:28,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,815 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:02:28,816 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,816 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,817 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:02:28,817 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,817 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,818 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:02:28,818 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,818 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:02:28,819 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,819 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,819 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:02:28,819 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,819 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:02:28,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,820 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:02:28,820 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,820 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:02:28,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,821 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:02:28,821 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,821 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,821 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,821 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,822 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,822 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,822 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,822 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,822 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,822 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,823 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,823 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,,Array,ADV) method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,823 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:02:28,823 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:28,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,826 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,826 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:02:28,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,827 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:02:28,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,827 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:02:28,827 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:02:28,827 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,ADV] +01/30/13 11:02:28,833 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +,Array,6,Array) method ... +01/30/13 11:02:28,834 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:02:28,834 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,834 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:02:28,834 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,835 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:02:28,835 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,836 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:02:28,836 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,836 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:02:28,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,837 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:02:28,837 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,837 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:02:28,838 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,838 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:02:28,838 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,838 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:02:28,839 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,839 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,839 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,839 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,839 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,839 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,843 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #638 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #638 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,844 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,844 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,847 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,847 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,847 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,847 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,851 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,851 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,851 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,851 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,854 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,854 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,854 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,855 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:02:28,856 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,856 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:02:28,877 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:02:28,878 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:02:28,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,879 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:02:28,879 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,880 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:02:28,880 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,880 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,881 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,881 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,881 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,881 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,885 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #646 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #646 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,886 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,886 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,887 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,888 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,888 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,888 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,892 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,892 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,892 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,892 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,896 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,896 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,896 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,896 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:02:28,897 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,898 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:02:28,906 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:02:28,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,907 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:02:28,907 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,907 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:02:28,908 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:02:28,908 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:02:28,908 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:02:28,908 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:02:28,908 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,908 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:02:28,912 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 267 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #654 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #654 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:02:28,913 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,913 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,915 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,915 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:02:28,915 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,915 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:02:28,918 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,918 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:02:28,918 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:02:28,918 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:02:28,922 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:02:28,922 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:02:28,922 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:02:28,922 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:02:28,924 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:02:28,924 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:02:28,935 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:02:28,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,936 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:02:28,936 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,937 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:02:28,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,937 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:02:28,938 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,938 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:02:28,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,939 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:02:28,939 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,939 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,940 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:02:28,940 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,941 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:02:28,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,941 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:28,942 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:02:28,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,942 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,942 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:02:28,942 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:02:28,942 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:02:28,943 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:02:28,943 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:28,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,944 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:02:28,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,944 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:02:28,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,945 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:02:28,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,945 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:02:28,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,946 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:02:28,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,946 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:02:28,947 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,948 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:02:28,950 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:02:28,950 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,952 [1520] DEBUG index - Entering updateInfo(2) method ... +01/30/13 11:02:28,952 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:02:28,952 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:02:28,954 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:02:28,954 [1520] INFO index - in getOwnerName 1 +01/30/13 11:02:28,954 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:02:28,954 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:28,954 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:28,956 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:28,956 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:28,958 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:02:28,959 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:02:28,959 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:02:28,961 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,961 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:28,961 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:28,961 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:02:28,962 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:28,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,964 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:28,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,964 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:02:28,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,965 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:28,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,965 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:28,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,965 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:02:28,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,966 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:02:28,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,966 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:02:28,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,966 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:02:28,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,967 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:02:28,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,967 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:02:28,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,967 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:02:28,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,968 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:02:28,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,968 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:02:28,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,968 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:02:28,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,969 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:02:28,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,969 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:02:28,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,969 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:02:28,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,970 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:02:28,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,970 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:28,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,970 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:28,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,971 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:02:28,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,971 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:02:28,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,971 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:02:28,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,971 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:28,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,972 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:02:28,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,972 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:02:28,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,972 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,972 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:02:28,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,973 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:02:28,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,973 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:02:28,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,973 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:02:28,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,974 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:02:28,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,974 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,974 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:02:28,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,975 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:02:28,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:28,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:28,975 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:02:28,975 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:02:28,975 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:02:28,975 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:02:28,975 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:02:28,976 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:02:28,976 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:28,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:28,976 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:02:28,991 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:02:29,028 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:29,028 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:29,028 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:02:29,028 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:29,033 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:29,033 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:29,034 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:02:29,034 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:29,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,096 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,097 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:29,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,097 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:29,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,099 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,099 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,100 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,100 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,101 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,102 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:29,102 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,103 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:29,116 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:29,116 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:29,116 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:29,293 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:02:29,293 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:29,293 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:32,782 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:02:32,910 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:02:32,910 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:02:32,910 [1520] DEBUG index - ****Starting for new session +01/30/13 11:02:32,911 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:02:32,911 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'popuptype' => 'specific_account_address', + 'form' => 'TasksEditView', + 'form_submit' => 'false', + 'fromlink' => '', + 'recordid' => '2', +) +01/30/13 11:02:32,911 [1520] INFO index - About to take action Popup +01/30/13 11:02:32,911 [1520] DEBUG index - in Popup +01/30/13 11:02:32,911 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:02:32,911 [1520] INFO index - current module is Accounts +01/30/13 11:02:32,960 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:32,960 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:32,960 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:32,961 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:32,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:32,961 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:32,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:32,961 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:32,961 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:32,972 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:32,972 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:32,972 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:32,972 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:32,972 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:32,973 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:32,973 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,974 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:32,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,974 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:32,974 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,974 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:32,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,975 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:32,975 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,975 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:32,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,976 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:32,976 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,976 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:32,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,977 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:32,977 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,977 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:32,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,978 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:32,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,978 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:32,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,979 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:32,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,979 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:32,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,980 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:32,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,980 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:32,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,981 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:32,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,981 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:32,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,982 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:32,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,982 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:32,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,983 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:32,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,983 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,984 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:32,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,985 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:32,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,985 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:32,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,986 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:32,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,986 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:32,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,987 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:32,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,987 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:32,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,987 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:32,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,988 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:32,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,988 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:32,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,989 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:32,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,989 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:32,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,990 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:32,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,990 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:32,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,991 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:32,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,991 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:32,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,992 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:32,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,992 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:32,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,993 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:32,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,993 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:32,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,994 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:32,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,994 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:32,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,994 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:32,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:32,995 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:33,008 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:02:33,008 [1520] DEBUG index - Prepared sql query parameters : [268,1,Accounts,Popup,,2013-01-30 11:02:32] +01/30/13 11:02:33,011 [1520] DEBUG index - Current user is: admin +01/30/13 11:02:33,011 [1520] DEBUG index - Current theme is: softed +01/30/13 11:02:33,011 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:02:33,011 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:02:33,013 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:02:33,013 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:33,015 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:33,015 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:33,017 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:33,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:33,018 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:02:33,018 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:02:33,018 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:02:33,018 [1520] DEBUG index - skipping headers +01/30/13 11:02:33,018 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:02:33,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:33,052 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:33,053 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:33,053 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,053 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,055 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,055 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:02:33,056 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:33,056 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,056 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:33,056 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:33,056 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:02:33,065 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:33,066 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:33,066 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,specific_account_address,,,,,) method ... +01/30/13 11:02:33,066 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:02:33,068 [1520] DEBUG account_list - Entering getRelCheckquery(Accounts,,2) method ... +01/30/13 11:02:33,068 [1520] DEBUG account_list - Exiting getRelCheckquery method ... +01/30/13 11:02:33,069 [1520] DEBUG account_list - Entering getListQuery(Accounts, and vtiger_account.accountid!=2) method ... +01/30/13 11:02:33,069 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,069 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,070 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,070 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,072 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,072 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,072 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,072 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,072 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,073 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,073 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,&recordid=2,,,,) method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,074 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,075 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,075 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:33,075 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:33,075 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:02:33,075 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:02:33,075 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:33,075 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:02:33,075 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:02:33,075 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:02:33,076 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:02:33,076 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:02:33,076 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and vtiger_account.accountid!=2 +01/30/13 11:02:33,081 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 and vtiger_account.accountid!=2 LIMIT 0,20 +01/30/13 11:02:33,087 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:02:33,087 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,087 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,087 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:02:33,087 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:02:33,091 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:02:33,091 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&recordid=2&popuptype=specific_account_address,ASC,) method ... +01/30/13 11:02:33,091 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,091 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,091 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,091 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:02:33,092 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,092 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:02:33,093 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,093 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,093 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,093 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,093 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:02:33,093 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:02:33,094 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,Array) method ... +01/30/13 11:02:33,094 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,094 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,095 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:02:33,095 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id] +01/30/13 11:02:33,098 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,4,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,099 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,099 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,099 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,100 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,101 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,101 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,101 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,101 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,101 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:02:33,103 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,103 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:02:33,106 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,106 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:02:33,109 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,109 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:02:33,111 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,111 [1520] DEBUG account_list - Prepared sql query parameters : [4] +01/30/13 11:02:33,112 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,112 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,114 [1520] INFO VT - PearDatabase ->There is no entry for this entity 4 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,114 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:02:33,114 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,114 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,114 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,114 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,115 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,116 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,117 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,118 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,119 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,120 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,121 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,122 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering popup_from_html(75440,1) method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering br2nl(75440) method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,123 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,124 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,125 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,125 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,125 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,125 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,126 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,4,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,126 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,126 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,126 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,127 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,128 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,4,0,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,128 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,128 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,128 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,129 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,129 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,129 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,129 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,130 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,130 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,130 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,130 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,130 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,130 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,133 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,134 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,135 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,136 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,6,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,136 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,137 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,137 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,137 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,137 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,138 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,138 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,139 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,139 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,139 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:02:33,142 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,143 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:02:33,147 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,147 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:02:33,149 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,149 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:02:33,153 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,153 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:02:33,155 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,155 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,157 [1520] INFO VT - PearDatabase ->There is no entry for this entity 6 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,157 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:02:33,157 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,157 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,157 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,157 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,157 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,158 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,159 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,160 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,161 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,162 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,163 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,164 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,165 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Entering popup_from_html(83918,1) method ... +01/30/13 11:02:33,166 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Entering br2nl(83918) method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,167 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,168 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,169 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,6,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,169 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,169 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,170 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,170 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,170 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,171 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,171 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,171 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,171 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,172 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,6,1,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,172 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,172 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,172 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,173 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,173 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,174 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,174 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,174 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,176 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,176 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,178 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,179 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,8,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,179 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,179 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,179 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,180 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,180 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,180 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,180 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,180 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,181 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,181 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,181 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,181 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,181 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,181 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,181 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:02:33,185 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,185 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:02:33,188 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,188 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:02:33,190 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,190 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:02:33,192 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,192 [1520] DEBUG account_list - Prepared sql query parameters : [8] +01/30/13 11:02:33,194 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,194 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,195 [1520] INFO VT - PearDatabase ->There is no entry for this entity 8 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,195 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:02:33,195 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,195 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,195 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,195 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,196 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,197 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,198 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,199 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,200 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,201 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,202 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,203 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,204 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Entering popup_from_html(82589,1) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Entering br2nl(82589) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,205 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,206 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,207 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,8,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,207 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,207 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,208 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,208 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,208 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,209 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,209 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,209 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,209 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,209 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,8,2,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,210 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,210 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,210 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,211 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,211 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,211 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,212 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,214 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,214 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,216 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,217 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,10,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,217 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,217 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,217 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,218 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,218 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,218 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,218 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,218 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,219 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,219 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,219 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,219 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,219 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,219 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,219 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:02:33,221 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,222 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:02:33,226 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,226 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:02:33,228 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,228 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:02:33,230 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,230 [1520] DEBUG account_list - Prepared sql query parameters : [10] +01/30/13 11:02:33,232 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,232 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,233 [1520] INFO VT - PearDatabase ->There is no entry for this entity 10 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,233 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:02:33,233 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,233 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,233 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,234 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,235 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,236 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,237 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,238 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,239 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,240 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,241 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering popup_from_html(57611,1) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Entering br2nl(57611) method ... +01/30/13 11:02:33,242 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,243 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,244 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,10,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,245 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,245 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,245 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,246 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,247 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,10,3,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,247 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,247 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,247 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,248 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,248 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,248 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,249 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,249 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,251 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,251 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,253 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,254 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,12,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,254 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,254 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,254 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,255 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,256 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,256 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,256 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,256 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,256 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:02:33,259 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,259 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:02:33,262 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,262 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:02:33,264 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,264 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:02:33,266 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,266 [1520] DEBUG account_list - Prepared sql query parameters : [12] +01/30/13 11:02:33,268 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,268 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,269 [1520] INFO VT - PearDatabase ->There is no entry for this entity 12 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,269 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:02:33,269 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,269 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,269 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,269 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,270 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,271 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,272 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,273 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,274 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,275 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering popup_from_html(123 Anywhere Street,1) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering br2nl(123 Anywhere Street) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,276 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,277 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Entering popup_from_html(95572,1) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Entering br2nl(95572) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,278 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,279 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,280 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,280 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,280 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,280 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,12,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,280 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,281 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,281 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,281 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,281 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,282 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,282 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,282 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,282 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,282 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,12,4,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,283 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,283 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,283 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,283 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,284 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,284 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,284 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,284 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,287 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,287 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,289 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,289 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,14,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,290 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,290 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,290 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,290 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,290 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,291 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,291 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,292 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,292 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:02:33,295 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,295 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:02:33,300 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,300 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:02:33,302 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,302 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:02:33,304 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,304 [1520] DEBUG account_list - Prepared sql query parameters : [14] +01/30/13 11:02:33,306 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,306 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,308 [1520] INFO VT - PearDatabase ->There is no entry for this entity 14 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,308 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,308 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,309 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,310 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,311 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,312 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,313 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,314 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,315 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,316 [1520] DEBUG account_list - Entering popup_from_html(45634,1) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Entering br2nl(45634) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,317 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,318 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,319 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,14,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,319 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,319 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,319 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,320 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,321 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,14,5,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,321 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,321 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,321 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,322 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,322 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,322 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,322 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,322 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,323 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,323 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,323 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,323 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,323 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,325 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,326 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,328 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,328 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,16,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,329 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,329 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,329 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,330 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,330 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,331 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,331 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,331 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:02:33,352 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,352 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:02:33,355 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,355 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:02:33,357 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,357 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:02:33,359 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,359 [1520] DEBUG account_list - Prepared sql query parameters : [16] +01/30/13 11:02:33,361 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,361 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,363 [1520] INFO VT - PearDatabase ->There is no entry for this entity 16 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,363 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:02:33,363 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,363 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,363 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,363 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,364 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,365 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,366 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,367 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,368 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,369 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Entering popup_from_html(1715 Scott Dr,1) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Entering br2nl(1715 Scott Dr) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,370 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,371 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Entering popup_from_html(22365,1) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Entering br2nl(22365) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,372 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,373 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,16,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,374 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,375 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,375 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,375 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,375 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,16,6,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,376 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,377 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,377 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,377 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,377 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,378 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,378 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,378 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,378 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,378 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,378 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,378 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,381 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,381 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,383 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,384 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,18,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,384 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,384 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,384 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,385 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,385 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,386 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,386 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,386 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,386 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:02:33,392 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,392 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:02:33,395 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,395 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:02:33,398 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,398 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:02:33,400 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,400 [1520] DEBUG account_list - Prepared sql query parameters : [18] +01/30/13 11:02:33,402 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,402 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,403 [1520] INFO VT - PearDatabase ->There is no entry for this entity 18 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,403 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:02:33,403 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,403 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,403 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,404 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,405 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,406 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,407 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,408 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,409 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Entering popup_from_html(345 Sugar Blvd.,1) method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Entering br2nl(345 Sugar Blvd.) method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,410 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering popup_from_html(San Mateo,1) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering br2nl(San Mateo) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,411 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering popup_from_html(57455,1) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering br2nl(57455) method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,412 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,413 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,18,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,414 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,415 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,415 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,415 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,415 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,18,7,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,416 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,417 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,417 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,417 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,417 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,418 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,418 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,418 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,418 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,418 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,418 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,418 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,418 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,426 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,426 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,428 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,429 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,20,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,429 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,429 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,429 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,430 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:02:33,431 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:02:33,431 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,431 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,431 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:02:33,431 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:02:33,431 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:02:33,433 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:02:33,433 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:02:33,436 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:02:33,436 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:02:33,438 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:02:33,438 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:02:33,440 [1520] DEBUG account_list - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:02:33,440 [1520] DEBUG account_list - Prepared sql query parameters : [20] +01/30/13 11:02:33,442 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,443 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,444 [1520] INFO VT - PearDatabase ->There is no entry for this entity 20 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:02:33,444 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:02:33,444 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,444 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_street) method ... +01/30/13 11:02:33,444 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,444 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_city) method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_code) method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,445 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_pobox) method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_country) method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,446 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,bill_state) method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_street) method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,447 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_city) method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_code) method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,448 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_pobox) method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_country) method ... +01/30/13 11:02:33,449 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,ship_state) method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,450 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering popup_from_html(999 Baker Way,1) method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering br2nl(999 Baker Way) method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,451 [1520] DEBUG account_list - Entering popup_from_html(Sunnyvale,1) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering br2nl(Sunnyvale) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering popup_from_html(CA,1) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering br2nl(CA) method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,452 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Entering popup_from_html(30110,1) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Entering br2nl(30110) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,453 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering popup_from_html(USA,1) method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering br2nl(USA) method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering popup_from_html(,1) method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Entering br2nl() method ... +01/30/13 11:02:33,454 [1520] DEBUG account_list - Exiting br2nl method ... +01/30/13 11:02:33,455 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,455 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,20,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,455 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,455 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,455 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,456 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,457 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,20,8,search,specific_account_address,TasksEditView,) method ... +01/30/13 11:02:33,457 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,457 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,457 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:02:33,458 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:02:33,459 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:02:33,459 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:02:33,459 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:33,459 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:02:33,461 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:02:33,461 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:02:33,463 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:02:33,463 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:02:33,463 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:02:33,463 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:02:33,464 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:33,464 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:02:51,221 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:02:51,355 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:02:51,355 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:02:51,355 [1520] DEBUG index - ****Starting for new session +01/30/13 11:02:51,356 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:02:51,356 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:02:51,356 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:02:51,356 [1520] DEBUG index - in CalendarAjax +01/30/13 11:02:51,356 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:02:51,356 [1520] INFO index - current module is Calendar +01/30/13 11:02:51,405 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:51,406 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:51,406 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:51,406 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:51,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:51,406 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:51,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:51,407 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:51,407 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:51,416 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:51,416 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:51,416 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:51,416 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:51,416 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:51,417 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:51,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,417 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:51,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,418 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:51,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,418 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:51,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,419 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:51,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,419 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:51,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,420 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:51,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,420 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:51,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,421 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:51,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,421 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:51,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,422 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:51,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,422 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:51,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,423 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:51,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,423 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:51,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,424 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:51,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,424 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:51,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,425 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:51,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,425 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:51,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,425 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:51,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,426 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:51,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,426 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:51,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,427 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:51,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,427 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,428 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:51,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,429 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:51,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,429 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:51,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,430 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:51,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,430 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:51,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,431 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:51,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,431 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:51,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,432 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:51,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,432 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:51,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,433 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:51,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,433 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:51,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,434 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:51,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,434 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:51,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,435 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:51,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,435 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:51,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,436 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:51,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,436 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:51,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,437 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:51,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,437 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:51,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,437 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:51,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,438 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:51,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,438 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:51,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:51,439 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:51,439 [1520] DEBUG index - Current user is: admin +01/30/13 11:02:51,439 [1520] DEBUG index - Current theme is: softed +01/30/13 11:02:51,439 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:02:51,440 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:02:51,441 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:02:51,441 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:51,443 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:51,443 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:51,445 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:51,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:51,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:51,446 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:02:51,446 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:02:51,446 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:02:51,446 [1520] DEBUG index - skipping headers +01/30/13 11:02:51,447 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:02:51,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:51,452 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:51,452 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:02:51,452 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:02:51,452 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:02:51,457 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:03')) +01/30/13 11:02:51,460 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:03:31,561 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:03:31,689 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:03:31,690 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:03:31,690 [1520] DEBUG index - ****Starting for new session +01/30/13 11:03:31,690 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:03:31,690 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:03:31,690 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:03:31,691 [1520] DEBUG index - in CalendarAjax +01/30/13 11:03:31,691 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:03:31,691 [1520] INFO index - current module is Calendar +01/30/13 11:03:31,741 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:03:31,741 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:03:31,741 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:03:31,741 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:03:31,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:03:31,741 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:03:31,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:03:31,742 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:03:31,742 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:03:31,750 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:03:31,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:03:31,751 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:03:31,751 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:03:31,751 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:03:31,752 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:03:31,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,752 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:03:31,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,753 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:03:31,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,753 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:03:31,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,754 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:03:31,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,754 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:03:31,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,755 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:03:31,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,755 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:03:31,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,756 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:03:31,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,756 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:03:31,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,756 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:03:31,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,757 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:03:31,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,757 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:03:31,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,758 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:03:31,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,758 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:03:31,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,759 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:03:31,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,759 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:03:31,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,760 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:03:31,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,760 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:03:31,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,761 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:03:31,761 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,761 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:03:31,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,762 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:03:31,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,762 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,763 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:03:31,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,764 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:03:31,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,764 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:03:31,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,765 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:03:31,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,765 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:03:31,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,766 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:03:31,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,766 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:03:31,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,767 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:03:31,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,767 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:03:31,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,768 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:03:31,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,768 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:03:31,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,768 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:03:31,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,769 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:03:31,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,769 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:03:31,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,770 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:03:31,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,770 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:03:31,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,771 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:03:31,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,771 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:03:31,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,772 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:03:31,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,772 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:03:31,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,773 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:03:31,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,773 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:03:31,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:03:31,774 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:03:31,774 [1520] DEBUG index - Current user is: admin +01/30/13 11:03:31,774 [1520] DEBUG index - Current theme is: softed +01/30/13 11:03:31,774 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:03:31,774 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:03:31,776 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:03:31,776 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:03:31,778 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:03:31,778 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:03:31,780 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:03:31,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:03:31,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:03:31,781 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:03:31,781 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:03:31,781 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:03:31,781 [1520] DEBUG index - skipping headers +01/30/13 11:03:31,782 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:03:31,783 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:03:31,787 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:03:31,788 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:03:31,788 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:03:31,788 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:03:31,792 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:04')) +01/30/13 11:03:31,795 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:04:11,897 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:04:12,026 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:04:12,026 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:04:12,026 [1520] DEBUG index - ****Starting for new session +01/30/13 11:04:12,026 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:04:12,027 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:04:12,027 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:04:12,027 [1520] DEBUG index - in CalendarAjax +01/30/13 11:04:12,027 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:04:12,027 [1520] INFO index - current module is Calendar +01/30/13 11:04:12,080 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:04:12,080 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:04:12,080 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:04:12,080 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:12,080 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:12,080 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:12,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:12,081 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:04:12,081 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:04:12,089 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:12,089 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:12,089 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:04:12,089 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:04:12,090 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:04:12,090 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:04:12,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,091 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:04:12,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,091 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:04:12,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,092 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:04:12,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,092 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:04:12,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,093 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:04:12,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,093 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:04:12,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,094 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:04:12,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,094 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:04:12,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,095 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:04:12,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,095 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:04:12,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,096 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:04:12,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,096 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:04:12,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,096 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:04:12,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,097 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:04:12,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,097 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:04:12,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,098 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:04:12,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,098 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:04:12,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,099 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:04:12,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,099 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:04:12,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,100 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:04:12,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,100 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,101 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:04:12,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,102 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:04:12,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,102 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:04:12,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,103 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:04:12,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,103 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:04:12,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,104 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:04:12,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,104 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:04:12,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,105 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:04:12,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,105 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:04:12,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,106 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:04:12,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,106 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:04:12,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,107 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:04:12,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,107 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:04:12,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,108 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:04:12,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,108 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:04:12,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,108 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:04:12,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,109 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:04:12,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,109 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:04:12,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,110 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:04:12,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,110 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:04:12,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,111 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:04:12,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,111 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:04:12,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,112 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:04:12,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:12,112 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:04:12,113 [1520] DEBUG index - Current user is: admin +01/30/13 11:04:12,113 [1520] DEBUG index - Current theme is: softed +01/30/13 11:04:12,113 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:04:12,113 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:04:12,114 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:04:12,115 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:04:12,116 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:04:12,117 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:04:12,118 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:04:12,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:04:12,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:04:12,119 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:04:12,119 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:04:12,119 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:04:12,119 [1520] DEBUG index - skipping headers +01/30/13 11:04:12,120 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:04:12,121 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:04:12,125 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:04:12,125 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:04:12,126 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:04:12,126 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:04:12,130 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:05')) +01/30/13 11:04:12,133 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:04:52,231 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:04:52,360 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:04:52,360 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:04:52,360 [1520] DEBUG index - ****Starting for new session +01/30/13 11:04:52,361 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:04:52,361 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:04:52,361 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:04:52,361 [1520] DEBUG index - in CalendarAjax +01/30/13 11:04:52,361 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:04:52,361 [1520] INFO index - current module is Calendar +01/30/13 11:04:52,396 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:04:52,397 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:04:52,397 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:04:52,397 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:52,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:52,397 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:52,397 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:52,398 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:04:52,398 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:04:52,406 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:04:52,406 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:04:52,406 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:04:52,406 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:04:52,407 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:04:52,407 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:04:52,407 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,408 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:04:52,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,408 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:04:52,408 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,409 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:04:52,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,409 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:04:52,409 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,409 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:04:52,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,410 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:04:52,410 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,410 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:04:52,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,411 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:04:52,411 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,411 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:04:52,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,412 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:04:52,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,412 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:04:52,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,413 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:04:52,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,413 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:04:52,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,414 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:04:52,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,414 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:04:52,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,415 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:04:52,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,415 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:04:52,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,415 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:04:52,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,416 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:04:52,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,416 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:04:52,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,417 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:04:52,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,417 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,418 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:04:52,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,419 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:04:52,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,419 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:04:52,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,420 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:04:52,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,420 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:04:52,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,421 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:04:52,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,421 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:04:52,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,422 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:04:52,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,422 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:04:52,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,423 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:04:52,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,423 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:04:52,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,424 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:04:52,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,424 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:04:52,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,424 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:04:52,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,425 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:04:52,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,425 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:04:52,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,426 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:04:52,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,426 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:04:52,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,427 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:04:52,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,427 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:04:52,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,428 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:04:52,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,428 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:04:52,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:04:52,429 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:04:52,429 [1520] DEBUG index - Current user is: admin +01/30/13 11:04:52,429 [1520] DEBUG index - Current theme is: softed +01/30/13 11:04:52,429 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:04:52,429 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:04:52,431 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:04:52,431 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:04:52,433 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:04:52,434 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:04:52,435 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:04:52,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:04:52,436 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:04:52,436 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:04:52,436 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:04:52,436 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:04:52,436 [1520] DEBUG index - skipping headers +01/30/13 11:04:52,437 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:04:52,438 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:04:52,442 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:04:52,443 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:04:52,443 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:04:52,443 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:04:52,447 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:05')) +01/30/13 11:04:52,449 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:05:32,548 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:05:32,673 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:05:32,673 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:05:32,674 [1520] DEBUG index - ****Starting for new session +01/30/13 11:05:32,674 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:05:32,674 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:05:32,675 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:05:32,675 [1520] DEBUG index - in CalendarAjax +01/30/13 11:05:32,675 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:05:32,675 [1520] INFO index - current module is Calendar +01/30/13 11:05:32,708 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:05:32,708 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:05:32,708 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:05:32,708 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:05:32,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:05:32,709 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:05:32,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:05:32,709 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:05:32,709 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:05:32,718 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:05:32,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:05:32,718 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:05:32,718 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:05:32,718 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:05:32,719 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:05:32,719 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,719 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:05:32,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,720 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:05:32,720 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,720 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:05:32,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,721 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:05:32,721 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,721 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:05:32,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,722 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:05:32,722 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,722 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:05:32,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,723 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:05:32,723 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,723 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:05:32,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,724 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:05:32,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,724 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:05:32,724 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,725 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:05:32,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,725 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:05:32,725 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,726 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:05:32,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,726 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:05:32,726 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,726 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:05:32,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,727 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:05:32,727 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,727 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:05:32,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,728 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:05:32,728 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,728 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:05:32,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,729 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:05:32,729 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,729 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,730 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:05:32,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,731 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:05:32,731 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,731 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:05:32,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,732 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:05:32,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,732 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:05:32,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,733 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:05:32,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,733 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:05:32,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,734 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:05:32,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,734 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:05:32,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,735 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:05:32,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,735 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:05:32,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,735 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:05:32,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,736 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:05:32,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,736 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:05:32,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,737 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:05:32,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,737 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:05:32,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,738 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:05:32,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,738 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:05:32,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,739 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:05:32,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,739 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:05:32,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,740 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:05:32,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,740 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:05:32,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:05:32,741 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:05:32,741 [1520] DEBUG index - Current user is: admin +01/30/13 11:05:32,741 [1520] DEBUG index - Current theme is: softed +01/30/13 11:05:32,741 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:05:32,741 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:05:32,743 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:05:32,743 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:05:32,745 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:05:32,745 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:05:32,747 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:05:32,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:05:32,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:05:32,748 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:05:32,748 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:05:32,748 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:05:32,748 [1520] DEBUG index - skipping headers +01/30/13 11:05:32,749 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:05:32,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:05:32,754 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:05:32,754 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:05:32,754 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:05:32,754 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:05:32,758 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:06')) +01/30/13 11:05:32,762 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:06:12,853 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:06:13,277 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:06:13,277 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:06:13,277 [1520] DEBUG index - ****Starting for new session +01/30/13 11:06:13,278 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:06:13,278 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:06:13,278 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:06:13,278 [1520] DEBUG index - in CalendarAjax +01/30/13 11:06:13,278 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:06:13,279 [1520] INFO index - current module is Calendar +01/30/13 11:06:13,311 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:06:13,311 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:06:13,311 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:06:13,311 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:13,312 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:13,312 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:13,312 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:13,312 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:06:13,312 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:06:13,321 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:13,321 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:13,321 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:06:13,321 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:06:13,321 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:06:13,322 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:06:13,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,322 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:06:13,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,323 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:06:13,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,324 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:06:13,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,324 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:06:13,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,324 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:06:13,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,325 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:06:13,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,325 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:06:13,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,326 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:06:13,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,326 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:06:13,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,327 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:06:13,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,327 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:06:13,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,328 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:06:13,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,328 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:06:13,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,329 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:06:13,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,329 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:06:13,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,330 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:06:13,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,330 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:06:13,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,331 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:06:13,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,331 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:06:13,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,332 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:06:13,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,332 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,333 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:06:13,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,334 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:06:13,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,334 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:06:13,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,335 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:06:13,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,335 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:06:13,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,336 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:06:13,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,336 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:06:13,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,337 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:06:13,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,337 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:06:13,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,338 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:06:13,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,338 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:06:13,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,339 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:06:13,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,339 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:06:13,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,340 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:06:13,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,340 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:06:13,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,341 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:06:13,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,341 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:06:13,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,342 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:06:13,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,342 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:06:13,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,343 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:06:13,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,343 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:06:13,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,344 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:06:13,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,344 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:06:13,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:13,345 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:06:13,345 [1520] DEBUG index - Current user is: admin +01/30/13 11:06:13,345 [1520] DEBUG index - Current theme is: softed +01/30/13 11:06:13,345 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:06:13,345 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:06:13,347 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:06:13,348 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:06:13,350 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:06:13,350 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:06:13,352 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:06:13,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:06:13,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:06:13,353 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:06:13,353 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:06:13,353 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:06:13,353 [1520] DEBUG index - skipping headers +01/30/13 11:06:13,354 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:06:13,355 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:06:13,360 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:06:13,360 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:06:13,360 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:06:13,360 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:06:13,364 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:07')) +01/30/13 11:06:13,370 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:06:53,485 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:06:53,616 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:06:53,616 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:06:53,617 [1520] DEBUG index - ****Starting for new session +01/30/13 11:06:53,617 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:06:53,617 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:06:53,617 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:06:53,618 [1520] DEBUG index - in CalendarAjax +01/30/13 11:06:53,618 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:06:53,618 [1520] INFO index - current module is Calendar +01/30/13 11:06:53,653 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:06:53,654 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:06:53,654 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:06:53,654 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:53,654 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:53,654 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:53,654 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:53,655 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:06:53,655 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:06:53,663 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:06:53,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:06:53,663 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:06:53,663 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:06:53,664 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:06:53,664 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:06:53,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,665 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:06:53,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,665 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:06:53,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,666 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:06:53,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,666 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:06:53,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,667 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:06:53,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,667 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:06:53,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,668 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:06:53,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,668 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:06:53,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,669 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:06:53,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,669 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:06:53,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,670 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:06:53,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,670 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:06:53,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,671 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:06:53,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,671 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:06:53,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,672 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:06:53,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,672 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:06:53,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,673 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:06:53,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,673 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:06:53,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,674 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:06:53,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,674 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:06:53,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,675 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:06:53,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,675 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:06:53,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,675 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:06:53,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,676 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:06:53,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,676 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:06:53,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,677 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:06:53,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,677 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:06:53,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,678 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:06:53,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,678 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:06:53,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,678 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:06:53,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,679 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:06:53,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,679 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:06:53,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,680 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:06:53,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,680 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:06:53,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,681 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:06:53,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,681 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:06:53,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,682 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:06:53,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,682 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:06:53,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,683 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:06:53,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,683 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:06:53,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,684 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:06:53,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,684 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:06:53,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,685 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:06:53,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,685 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:06:53,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,686 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:06:53,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,686 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:06:53,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:06:53,687 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:06:53,687 [1520] DEBUG index - Current user is: admin +01/30/13 11:06:53,687 [1520] DEBUG index - Current theme is: softed +01/30/13 11:06:53,687 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:06:53,687 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:06:53,689 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:06:53,689 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:06:53,691 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:06:53,691 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:06:53,693 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:06:53,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:06:53,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:06:53,694 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:06:53,694 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:06:53,694 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:06:53,694 [1520] DEBUG index - skipping headers +01/30/13 11:06:53,695 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:06:53,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:06:53,700 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:06:53,700 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:06:53,700 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:06:53,700 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:06:53,704 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:07')) +01/30/13 11:06:53,708 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:07:33,815 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:07:33,944 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:07:33,944 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:07:33,944 [1520] DEBUG index - ****Starting for new session +01/30/13 11:07:33,945 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:07:33,945 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:07:33,945 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:07:33,945 [1520] DEBUG index - in CalendarAjax +01/30/13 11:07:33,945 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:07:33,945 [1520] INFO index - current module is Calendar +01/30/13 11:07:33,979 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:07:33,979 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:07:33,979 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:07:33,979 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:07:33,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:07:33,980 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:07:33,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:07:33,980 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:07:33,980 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:07:33,988 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:07:33,988 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:07:33,988 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:07:33,988 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:07:33,989 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:07:33,989 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:07:33,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,990 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:07:33,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,990 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:07:33,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,991 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:07:33,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,991 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:07:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,992 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:07:33,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,992 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:07:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,993 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:07:33,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,993 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:07:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,994 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:07:33,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,994 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:07:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:07:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,995 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:07:33,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,996 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:07:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,996 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:07:33,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,996 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:07:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,997 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:07:33,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,997 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:07:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,998 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:07:33,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,998 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:07:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,999 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:07:33,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,999 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:07:33,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:33,1000 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:07:34,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,000 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:07:34,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,000 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:07:34,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,001 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:07:34,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,001 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:07:34,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,002 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:07:34,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,002 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:07:34,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,003 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:07:34,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,003 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:07:34,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,004 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:07:34,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,004 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:07:34,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,005 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:07:34,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,005 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:07:34,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,006 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:07:34,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,006 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:07:34,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,007 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:07:34,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,007 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:07:34,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,008 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:07:34,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,008 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:07:34,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,008 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:07:34,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,009 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:07:34,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,009 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:07:34,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,010 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:07:34,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,010 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:07:34,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,011 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:07:34,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:07:34,011 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:07:34,012 [1520] DEBUG index - Current user is: admin +01/30/13 11:07:34,012 [1520] DEBUG index - Current theme is: softed +01/30/13 11:07:34,012 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:07:34,012 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:07:34,014 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:07:34,014 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:07:34,016 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:07:34,016 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:07:34,017 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:07:34,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:07:34,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:07:34,018 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:07:34,018 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:07:34,018 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:07:34,018 [1520] DEBUG index - skipping headers +01/30/13 11:07:34,019 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:07:34,020 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:07:34,024 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:07:34,025 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:07:34,025 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:07:34,025 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:07:34,029 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:08')) +01/30/13 11:07:34,032 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:08:14,134 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:08:14,260 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:08:14,260 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:08:14,261 [1520] DEBUG index - ****Starting for new session +01/30/13 11:08:14,261 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:08:14,261 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:08:14,261 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:08:14,261 [1520] DEBUG index - in CalendarAjax +01/30/13 11:08:14,262 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:08:14,262 [1520] INFO index - current module is Calendar +01/30/13 11:08:14,294 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:08:14,294 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:08:14,294 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:08:14,294 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:14,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:14,295 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:14,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:14,295 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:08:14,295 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:08:14,305 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:14,306 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:14,306 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:08:14,306 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:08:14,306 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:08:14,307 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:08:14,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,307 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:08:14,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,308 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:08:14,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,308 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:08:14,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,309 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:08:14,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,309 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:08:14,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,310 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:08:14,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,310 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:08:14,310 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,311 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:08:14,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,311 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:08:14,311 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,312 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:08:14,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,312 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:08:14,312 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,312 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:08:14,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,313 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:08:14,313 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,313 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:08:14,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,314 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:08:14,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,314 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:08:14,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,315 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:08:14,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,315 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:08:14,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,316 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:08:14,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,316 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:08:14,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,317 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:08:14,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,317 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:08:14,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,318 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:08:14,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,318 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:08:14,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,318 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:08:14,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,319 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:08:14,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,319 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:08:14,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,320 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:08:14,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,320 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:08:14,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,321 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:08:14,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,321 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:08:14,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,321 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:08:14,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,322 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:08:14,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,322 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:08:14,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,323 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:08:14,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,323 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:08:14,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,324 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:08:14,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,324 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:08:14,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,325 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:08:14,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,325 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:08:14,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,326 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:08:14,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,326 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:08:14,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,327 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:08:14,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,327 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:08:14,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,328 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:08:14,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,328 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:08:14,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:14,328 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:08:14,329 [1520] DEBUG index - Current user is: admin +01/30/13 11:08:14,329 [1520] DEBUG index - Current theme is: softed +01/30/13 11:08:14,329 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:08:14,329 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:08:14,331 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:08:14,331 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:08:14,333 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:08:14,333 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:08:14,335 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:08:14,335 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:08:14,335 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:08:14,336 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:08:14,336 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:08:14,336 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:08:14,336 [1520] DEBUG index - skipping headers +01/30/13 11:08:14,337 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:08:14,337 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:08:14,342 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:08:14,342 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:08:14,343 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:08:14,343 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:08:14,347 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:09')) +01/30/13 11:08:14,350 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:08:54,455 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:08:54,589 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:08:54,590 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:08:54,590 [1520] DEBUG index - ****Starting for new session +01/30/13 11:08:54,590 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:08:54,590 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:08:54,591 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:08:54,591 [1520] DEBUG index - in CalendarAjax +01/30/13 11:08:54,591 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:08:54,591 [1520] INFO index - current module is Calendar +01/30/13 11:08:54,627 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:08:54,627 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:08:54,627 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:08:54,627 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:54,627 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:54,628 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:54,628 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:54,628 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:08:54,628 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:08:54,639 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:08:54,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:08:54,639 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:08:54,639 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:08:54,639 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:08:54,640 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:08:54,640 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,640 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:08:54,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,641 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:08:54,641 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,641 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:08:54,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,642 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:08:54,642 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,642 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:08:54,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,643 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:08:54,643 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,643 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:08:54,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,644 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:08:54,644 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,644 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:08:54,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,645 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:08:54,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,645 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:08:54,645 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,646 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:08:54,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,646 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:08:54,646 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,646 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:08:54,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,647 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:08:54,647 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,647 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:08:54,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,648 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:08:54,648 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,648 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:08:54,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,649 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:08:54,649 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,649 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:08:54,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,650 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:08:54,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,650 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:08:54,650 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,651 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:08:54,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,651 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:08:54,651 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,651 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:08:54,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,652 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:08:54,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,652 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:08:54,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,653 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:08:54,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,653 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:08:54,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,654 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:08:54,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,654 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:08:54,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,654 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:08:54,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,655 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:08:54,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,656 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:08:54,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,656 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:08:54,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,656 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:08:54,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,657 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:08:54,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,657 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:08:54,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,658 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:08:54,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,658 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:08:54,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,659 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:08:54,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,659 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:08:54,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,660 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:08:54,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,660 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:08:54,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,661 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:08:54,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,661 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:08:54,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:08:54,662 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:08:54,662 [1520] DEBUG index - Current user is: admin +01/30/13 11:08:54,662 [1520] DEBUG index - Current theme is: softed +01/30/13 11:08:54,662 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:08:54,662 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:08:54,664 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:08:54,664 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:08:54,666 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:08:54,666 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:08:54,668 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:08:54,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:08:54,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:08:54,669 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:08:54,669 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:08:54,669 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:08:54,669 [1520] DEBUG index - skipping headers +01/30/13 11:08:54,670 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:08:54,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:08:54,675 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:08:54,675 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:08:54,675 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:08:54,675 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:08:54,680 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:09')) +01/30/13 11:08:54,683 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:09:34,786 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:09:35,103 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:09:35,103 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:09:35,103 [1520] DEBUG index - ****Starting for new session +01/30/13 11:09:35,103 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:09:35,104 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:09:35,104 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:09:35,104 [1520] DEBUG index - in CalendarAjax +01/30/13 11:09:35,104 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:09:35,104 [1520] INFO index - current module is Calendar +01/30/13 11:09:35,137 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:09:35,137 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:09:35,137 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:09:35,137 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:09:35,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:09:35,138 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:09:35,138 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:09:35,138 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:09:35,138 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:09:35,146 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:09:35,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:09:35,147 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:09:35,147 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:09:35,147 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:09:35,148 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:09:35,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,148 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:09:35,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,149 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:09:35,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,149 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:09:35,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,150 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:09:35,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,150 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:09:35,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,151 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:09:35,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,151 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:09:35,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,152 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:09:35,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,152 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:09:35,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,153 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:09:35,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,153 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:09:35,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,154 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:09:35,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,154 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:09:35,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,155 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:09:35,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,155 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:09:35,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,156 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:09:35,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,156 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:09:35,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,157 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:09:35,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,157 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:09:35,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,158 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:09:35,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,158 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:09:35,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,158 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:09:35,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,159 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:09:35,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,159 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:09:35,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,160 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:09:35,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,160 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:09:35,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,160 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:09:35,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,161 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:09:35,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,161 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:09:35,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,162 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:09:35,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,162 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:09:35,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,163 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:09:35,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,163 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:09:35,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,164 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:09:35,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,164 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:09:35,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,165 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:09:35,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,165 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:09:35,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,166 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:09:35,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,166 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:09:35,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,167 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:09:35,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,167 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:09:35,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,167 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:09:35,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,168 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:09:35,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,168 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:09:35,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,169 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:09:35,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,169 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:09:35,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:09:35,170 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:09:35,170 [1520] DEBUG index - Current user is: admin +01/30/13 11:09:35,170 [1520] DEBUG index - Current theme is: softed +01/30/13 11:09:35,170 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:09:35,170 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:09:35,172 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:09:35,172 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:09:35,174 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:09:35,174 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:09:35,176 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:09:35,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:09:35,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:09:35,177 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:09:35,177 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:09:35,177 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:09:35,177 [1520] DEBUG index - skipping headers +01/30/13 11:09:35,178 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:09:35,178 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:09:35,183 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:09:35,183 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:09:35,183 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:09:35,184 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:09:35,188 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:10')) +01/30/13 11:09:35,191 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:10:15,286 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:10:15,408 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:10:15,408 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:10:15,408 [1520] DEBUG index - ****Starting for new session +01/30/13 11:10:15,409 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:10:15,409 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:10:15,409 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:10:15,409 [1520] DEBUG index - in CalendarAjax +01/30/13 11:10:15,409 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:10:15,409 [1520] INFO index - current module is Calendar +01/30/13 11:10:15,443 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:10:15,443 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:10:15,443 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:10:15,443 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:15,444 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:15,444 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:15,444 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:15,444 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:10:15,444 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:10:15,456 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:15,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:15,456 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:10:15,457 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:10:15,457 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:10:15,457 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:10:15,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,458 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:10:15,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,458 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:10:15,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,459 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:10:15,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,459 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:10:15,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,460 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:10:15,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,460 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:10:15,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,461 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:10:15,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,461 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:10:15,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,462 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:10:15,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,462 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:10:15,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,463 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:10:15,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,463 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:10:15,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,464 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:10:15,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,464 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:10:15,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,465 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:10:15,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,465 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:10:15,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,465 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:10:15,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,466 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:10:15,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,466 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:10:15,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,467 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:10:15,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,467 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,468 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:10:15,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,469 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:10:15,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,469 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:10:15,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,470 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:10:15,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,470 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:10:15,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,471 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:10:15,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,471 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:10:15,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,472 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:10:15,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,472 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:10:15,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,473 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:10:15,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,473 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:10:15,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,474 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:10:15,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,474 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:10:15,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,474 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:10:15,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,475 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:10:15,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,475 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:10:15,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,476 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:10:15,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,476 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:10:15,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,477 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:10:15,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,477 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:10:15,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,478 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:10:15,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,478 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:10:15,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,479 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:10:15,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:15,479 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:10:15,480 [1520] DEBUG index - Current user is: admin +01/30/13 11:10:15,480 [1520] DEBUG index - Current theme is: softed +01/30/13 11:10:15,480 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:10:15,480 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:10:15,482 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:10:15,482 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:10:15,484 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:10:15,484 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:10:15,485 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:10:15,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:10:15,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:10:15,486 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:10:15,486 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:10:15,486 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:10:15,487 [1520] DEBUG index - skipping headers +01/30/13 11:10:15,487 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:10:15,488 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:10:15,492 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:10:15,493 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:10:15,493 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:10:15,493 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:10:15,497 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:11')) +01/30/13 11:10:15,500 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:10:55,586 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:10:55,711 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:10:55,711 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:10:55,711 [1520] DEBUG index - ****Starting for new session +01/30/13 11:10:55,712 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:10:55,712 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:10:55,712 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:10:55,712 [1520] DEBUG index - in CalendarAjax +01/30/13 11:10:55,713 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:10:55,713 [1520] INFO index - current module is Calendar +01/30/13 11:10:55,750 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:10:55,750 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:10:55,750 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:10:55,751 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:55,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:55,751 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:55,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:55,751 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:10:55,751 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:10:55,760 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:10:55,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:10:55,760 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:10:55,760 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:10:55,761 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:10:55,761 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:10:55,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,762 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:10:55,762 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,762 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:10:55,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,763 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:10:55,763 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,763 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:10:55,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,764 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:10:55,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,764 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:10:55,764 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,765 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:10:55,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,765 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:10:55,765 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,766 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:10:55,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,766 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:10:55,766 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,766 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:10:55,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,767 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:10:55,767 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,767 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:10:55,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,768 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:10:55,768 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,768 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:10:55,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,769 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:10:55,769 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,769 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:10:55,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,770 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:10:55,770 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,770 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:10:55,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,771 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:10:55,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,771 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:10:55,771 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,772 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:10:55,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,772 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:10:55,772 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,772 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:10:55,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,773 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:10:55,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,773 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:10:55,773 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,774 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:10:55,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,774 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:10:55,774 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,774 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:10:55,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,775 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:10:55,775 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,775 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:10:55,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,776 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:10:55,776 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,776 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:10:55,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,777 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:10:55,777 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,777 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:10:55,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,778 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:10:55,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,778 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:10:55,778 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,779 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:10:55,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,779 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:10:55,779 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,780 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:10:55,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,780 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:10:55,780 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,780 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:10:55,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,781 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:10:55,781 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,781 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:10:55,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,782 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:10:55,782 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,782 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:10:55,783 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:10:55,783 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:10:55,783 [1520] DEBUG index - Current user is: admin +01/30/13 11:10:55,783 [1520] DEBUG index - Current theme is: softed +01/30/13 11:10:55,783 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:10:55,783 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:10:55,785 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:10:55,785 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:10:55,787 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:10:55,787 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:10:55,789 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:10:55,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:10:55,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:10:55,790 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:10:55,790 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:10:55,790 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:10:55,790 [1520] DEBUG index - skipping headers +01/30/13 11:10:55,791 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:10:55,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:10:55,796 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:10:55,796 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:10:55,796 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:10:55,796 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:10:55,801 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:11')) +01/30/13 11:10:55,805 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:11:35,924 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:11:36,052 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:11:36,052 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:11:36,053 [1520] DEBUG index - ****Starting for new session +01/30/13 11:11:36,053 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:11:36,053 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:11:36,053 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:11:36,053 [1520] DEBUG index - in CalendarAjax +01/30/13 11:11:36,054 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:11:36,054 [1520] INFO index - current module is Calendar +01/30/13 11:11:36,091 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:11:36,091 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:11:36,091 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:11:36,091 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:11:36,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:11:36,092 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:11:36,092 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:11:36,092 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:11:36,092 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:11:36,102 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:11:36,102 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:11:36,102 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:11:36,102 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:11:36,103 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:11:36,103 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:11:36,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,104 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:11:36,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,104 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:11:36,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,105 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:11:36,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,105 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:11:36,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,106 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:11:36,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,106 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:11:36,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,107 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:11:36,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,107 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:11:36,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,107 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:11:36,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,108 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:11:36,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,108 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:11:36,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,109 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:11:36,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,109 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:11:36,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,110 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:11:36,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,110 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:11:36,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,111 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:11:36,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,111 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:11:36,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,112 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:11:36,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,112 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:11:36,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,113 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:11:36,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,113 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:11:36,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,114 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:11:36,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,114 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:11:36,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,114 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:11:36,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,115 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:11:36,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,115 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:11:36,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,116 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:11:36,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,116 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:11:36,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,117 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:11:36,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,117 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:11:36,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,117 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:11:36,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,118 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:11:36,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,118 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:11:36,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,119 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:11:36,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,119 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:11:36,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,120 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:11:36,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,120 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:11:36,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,121 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:11:36,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,121 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:11:36,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,122 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:11:36,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,122 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:11:36,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,123 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:11:36,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,123 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:11:36,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,123 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:11:36,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,124 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:11:36,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,124 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:11:36,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:11:36,125 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:11:36,125 [1520] DEBUG index - Current user is: admin +01/30/13 11:11:36,125 [1520] DEBUG index - Current theme is: softed +01/30/13 11:11:36,125 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:11:36,125 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:11:36,127 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:11:36,127 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:11:36,129 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:11:36,129 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:11:36,131 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:11:36,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:11:36,132 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:11:36,132 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:11:36,132 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:11:36,132 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:11:36,132 [1520] DEBUG index - skipping headers +01/30/13 11:11:36,133 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:11:36,133 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:11:36,138 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:11:36,138 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:11:36,138 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:11:36,138 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:11:36,142 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:12')) +01/30/13 11:11:36,145 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:12:16,239 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:12:16,362 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:12:16,362 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:12:16,362 [1520] DEBUG index - ****Starting for new session +01/30/13 11:12:16,363 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:12:16,363 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:12:16,363 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:12:16,363 [1520] DEBUG index - in CalendarAjax +01/30/13 11:12:16,363 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:12:16,363 [1520] INFO index - current module is Calendar +01/30/13 11:12:16,402 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:12:16,402 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:12:16,402 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:12:16,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:16,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:16,402 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:16,402 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:16,403 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:12:16,403 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:12:16,410 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:16,411 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:16,411 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:12:16,411 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:12:16,411 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:12:16,412 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:12:16,412 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,412 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:12:16,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,413 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:12:16,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,413 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:12:16,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,414 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:12:16,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,414 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:12:16,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,415 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:12:16,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,415 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:12:16,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,416 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:12:16,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,416 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:12:16,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,417 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:12:16,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,417 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:12:16,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,417 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:12:16,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,418 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:12:16,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,418 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:12:16,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,419 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:12:16,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,419 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:12:16,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,420 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:12:16,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,420 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:12:16,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,421 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:12:16,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,421 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:12:16,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,422 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:12:16,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,422 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:12:16,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,423 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:12:16,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,423 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:12:16,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,423 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:12:16,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,424 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:12:16,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,424 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:12:16,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,425 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:12:16,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,425 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:12:16,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,425 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:12:16,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,426 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:12:16,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,426 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:12:16,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,427 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:12:16,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,427 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:12:16,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,428 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:12:16,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,428 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:12:16,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,429 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:12:16,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,429 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:12:16,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,430 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:12:16,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,430 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:12:16,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,431 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:12:16,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,431 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:12:16,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,431 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:12:16,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,432 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:12:16,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,432 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:12:16,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,433 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:12:16,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:16,433 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:12:16,434 [1520] DEBUG index - Current user is: admin +01/30/13 11:12:16,434 [1520] DEBUG index - Current theme is: softed +01/30/13 11:12:16,434 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:12:16,434 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:12:16,436 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:12:16,436 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:12:16,438 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:12:16,438 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:12:16,439 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:12:16,440 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:12:16,440 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:12:16,440 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:12:16,440 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:12:16,441 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:12:16,441 [1520] DEBUG index - skipping headers +01/30/13 11:12:16,442 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:12:16,442 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:12:16,446 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:12:16,447 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:12:16,447 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:12:16,447 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:12:16,452 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:13')) +01/30/13 11:12:16,455 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:12:56,548 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:12:56,923 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:12:56,923 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:12:56,923 [1520] DEBUG index - ****Starting for new session +01/30/13 11:12:56,924 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:12:56,924 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:12:56,924 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:12:56,924 [1520] DEBUG index - in CalendarAjax +01/30/13 11:12:56,924 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:12:56,924 [1520] INFO index - current module is Calendar +01/30/13 11:12:56,965 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:12:56,965 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:12:56,965 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:12:56,965 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:56,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:56,966 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:56,966 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:56,966 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:12:56,966 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:12:56,976 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:12:56,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:12:56,977 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:12:56,977 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:12:56,977 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:12:56,978 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:12:56,978 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,978 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:12:56,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,979 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:12:56,979 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,979 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:12:56,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,980 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:12:56,980 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,980 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:12:56,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,981 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:12:56,981 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,981 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:12:56,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,982 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:12:56,982 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,982 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:12:56,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,983 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:12:56,983 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,983 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:12:56,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,984 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:12:56,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,984 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:12:56,984 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,985 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:12:56,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,985 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:12:56,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,986 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:12:56,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,986 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:12:56,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,987 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:12:56,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,987 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:12:56,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,988 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:12:56,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,988 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:12:56,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,989 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:12:56,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,989 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:12:56,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,989 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:12:56,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,990 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:12:56,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,990 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:12:56,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,991 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:12:56,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,991 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:12:56,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,992 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:12:56,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,992 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:12:56,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,993 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:12:56,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,993 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:12:56,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,994 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:12:56,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,994 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:12:56,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,995 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:12:56,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,995 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:12:56,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,996 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:12:56,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,996 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:12:56,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,997 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:12:56,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,997 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:12:56,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,998 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:12:56,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,998 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:12:56,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,999 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:12:56,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,999 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:12:56,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:56,1000 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:12:57,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:57,000 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:12:57,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:12:57,001 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:12:57,001 [1520] DEBUG index - Current user is: admin +01/30/13 11:12:57,001 [1520] DEBUG index - Current theme is: softed +01/30/13 11:12:57,001 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:12:57,001 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:12:57,003 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:12:57,003 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:12:57,005 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:12:57,005 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:12:57,007 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:12:57,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:12:57,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:12:57,008 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:12:57,008 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:12:57,008 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:12:57,008 [1520] DEBUG index - skipping headers +01/30/13 11:12:57,009 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:12:57,009 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:12:57,014 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:12:57,014 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:12:57,014 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:12:57,014 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:12:57,019 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:13')) +01/30/13 11:12:57,021 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:13:37,108 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:13:37,230 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:13:37,230 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:13:37,230 [1520] DEBUG index - ****Starting for new session +01/30/13 11:13:37,231 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:13:37,231 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:13:37,231 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:13:37,231 [1520] DEBUG index - in CalendarAjax +01/30/13 11:13:37,232 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:13:37,232 [1520] INFO index - current module is Calendar +01/30/13 11:13:37,273 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:13:37,273 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:13:37,273 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:13:37,273 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:13:37,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:13:37,273 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:13:37,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:13:37,274 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:13:37,274 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:13:37,283 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:13:37,283 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:13:37,283 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:13:37,283 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:13:37,283 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:13:37,284 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:13:37,284 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,284 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:13:37,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,285 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:13:37,285 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,286 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:13:37,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,286 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:13:37,286 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,287 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:13:37,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,287 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:13:37,287 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,288 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:13:37,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,288 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:13:37,288 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,289 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:13:37,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,289 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:13:37,289 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,290 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:13:37,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,290 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:13:37,290 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,291 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:13:37,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,291 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:13:37,291 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,291 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:13:37,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,292 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:13:37,292 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,292 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:13:37,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,293 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:13:37,293 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,293 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:13:37,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,294 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:13:37,294 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,294 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:13:37,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,295 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:13:37,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,295 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:13:37,295 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,296 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:13:37,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,296 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:13:37,296 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,297 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:13:37,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,297 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:13:37,297 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,298 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:13:37,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,298 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:13:37,298 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,299 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:13:37,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,299 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:13:37,299 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,300 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:13:37,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,300 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:13:37,300 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,300 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:13:37,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,301 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:13:37,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,301 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:13:37,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,302 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:13:37,302 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,302 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:13:37,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,303 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:13:37,303 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,303 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:13:37,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,304 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:13:37,304 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,304 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:13:37,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,305 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:13:37,305 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,305 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:13:37,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,306 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:13:37,306 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,306 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:13:37,307 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:13:37,307 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:13:37,307 [1520] DEBUG index - Current user is: admin +01/30/13 11:13:37,307 [1520] DEBUG index - Current theme is: softed +01/30/13 11:13:37,307 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:13:37,307 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:13:37,309 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:13:37,309 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:13:37,311 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:13:37,311 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:13:37,313 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:13:37,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:13:37,314 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:13:37,314 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:13:37,314 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:13:37,314 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:13:37,314 [1520] DEBUG index - skipping headers +01/30/13 11:13:37,315 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:13:37,315 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:13:37,320 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:13:37,320 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:13:37,320 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:13:37,320 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:13:37,326 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:14')) +01/30/13 11:13:37,329 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:14:17,423 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:14:17,546 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:14:17,546 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:14:17,546 [1520] DEBUG index - ****Starting for new session +01/30/13 11:14:17,547 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:14:17,547 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:14:17,547 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:14:17,547 [1520] DEBUG index - in CalendarAjax +01/30/13 11:14:17,547 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:14:17,547 [1520] INFO index - current module is Calendar +01/30/13 11:14:17,589 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:14:17,589 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:14:17,589 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:14:17,589 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:17,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:17,590 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:17,590 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:17,590 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:14:17,590 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:14:17,599 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:17,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:17,599 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:14:17,600 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:14:17,600 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:14:17,600 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:14:17,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,601 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:14:17,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,601 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:14:17,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,602 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:14:17,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,602 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:14:17,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,603 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:14:17,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,603 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:14:17,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,604 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:14:17,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,604 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:14:17,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,605 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:14:17,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,605 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:14:17,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,606 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:14:17,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,606 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:14:17,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,607 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:14:17,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,607 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:14:17,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,608 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:14:17,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,608 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:14:17,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,609 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:14:17,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,609 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:14:17,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,610 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:14:17,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,610 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:14:17,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,611 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:14:17,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,611 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:14:17,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,612 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:14:17,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,612 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:14:17,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,613 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:14:17,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,613 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:14:17,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,614 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:14:17,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,614 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:14:17,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,615 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:14:17,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,615 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:14:17,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,616 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:14:17,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,616 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:14:17,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,616 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:14:17,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,617 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:14:17,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,617 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:14:17,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,618 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:14:17,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,618 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:14:17,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,619 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:14:17,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,619 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:14:17,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,620 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:14:17,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,620 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:14:17,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,621 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:14:17,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,621 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:14:17,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,622 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:14:17,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,623 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:14:17,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,623 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:14:17,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:17,624 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:14:17,624 [1520] DEBUG index - Current user is: admin +01/30/13 11:14:17,624 [1520] DEBUG index - Current theme is: softed +01/30/13 11:14:17,624 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:14:17,624 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:14:17,626 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:14:17,626 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:14:17,628 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:14:17,628 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:14:17,629 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:14:17,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:14:17,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:14:17,630 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:14:17,630 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:14:17,631 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:14:17,631 [1520] DEBUG index - skipping headers +01/30/13 11:14:17,632 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:14:17,632 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:14:17,636 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:14:17,637 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:14:17,637 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:14:17,637 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:14:17,642 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:15')) +01/30/13 11:14:17,646 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:14:57,735 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:14:57,863 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:14:57,864 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:14:57,864 [1520] DEBUG index - ****Starting for new session +01/30/13 11:14:57,864 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:14:57,864 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:14:57,865 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:14:57,865 [1520] DEBUG index - in CalendarAjax +01/30/13 11:14:57,865 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:14:57,865 [1520] INFO index - current module is Calendar +01/30/13 11:14:57,907 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:14:57,907 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:14:57,907 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:14:57,907 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:57,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:57,908 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:57,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:57,908 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:14:57,908 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:14:57,916 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:14:57,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:14:57,917 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:14:57,917 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:14:57,917 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:14:57,918 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:14:57,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,918 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:14:57,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,919 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:14:57,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,919 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:14:57,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,920 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:14:57,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,920 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:14:57,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,921 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:14:57,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,921 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:14:57,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,922 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:14:57,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,922 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:14:57,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,923 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:14:57,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,923 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:14:57,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,924 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:14:57,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,924 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:14:57,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,925 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:14:57,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,925 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:14:57,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,926 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:14:57,926 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,926 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:14:57,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,927 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:14:57,927 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,927 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:14:57,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,928 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:14:57,928 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,929 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:14:57,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,929 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:14:57,929 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,930 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:14:57,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,930 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:14:57,930 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,930 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:14:57,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,931 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:14:57,931 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,931 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:14:57,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,932 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:14:57,932 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,932 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:14:57,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,933 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:14:57,933 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,933 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:14:57,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,934 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:14:57,934 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,934 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:14:57,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,935 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:14:57,935 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,936 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:14:57,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,936 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:14:57,936 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,937 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:14:57,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,937 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:14:57,937 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,938 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:14:57,938 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,938 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:14:57,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,939 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:14:57,939 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,939 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:14:57,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,940 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:14:57,940 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,940 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:14:57,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,941 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:14:57,941 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,941 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:14:57,942 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:14:57,942 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:14:57,942 [1520] DEBUG index - Current user is: admin +01/30/13 11:14:57,942 [1520] DEBUG index - Current theme is: softed +01/30/13 11:14:57,942 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:14:57,942 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:14:57,944 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:14:57,944 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:14:57,946 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:14:57,946 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:14:57,948 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:14:57,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:14:57,949 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:14:57,949 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:14:57,949 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:14:57,949 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:14:57,949 [1520] DEBUG index - skipping headers +01/30/13 11:14:57,950 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:14:57,950 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:14:57,955 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:14:57,955 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:14:57,956 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:14:57,956 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:14:57,960 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:15')) +01/30/13 11:14:57,964 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:15:38,074 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:15:38,196 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:15:38,196 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:15:38,197 [1520] DEBUG index - ****Starting for new session +01/30/13 11:15:38,197 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:15:38,197 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:15:38,197 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:15:38,198 [1520] DEBUG index - in CalendarAjax +01/30/13 11:15:38,198 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:15:38,198 [1520] INFO index - current module is Calendar +01/30/13 11:15:38,239 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:15:38,239 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:15:38,239 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:15:38,239 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:15:38,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:15:38,240 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:15:38,240 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:15:38,240 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:15:38,240 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:15:38,248 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:15:38,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:15:38,249 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:15:38,249 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:15:38,249 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:15:38,250 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:15:38,250 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,250 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:15:38,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,251 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:15:38,251 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,251 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:15:38,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,252 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:15:38,252 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,252 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:15:38,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,253 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:15:38,253 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,253 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:15:38,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,254 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:15:38,254 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,254 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:15:38,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,255 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:15:38,255 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,255 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:15:38,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,256 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:15:38,256 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,256 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:15:38,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,257 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:15:38,257 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,257 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:15:38,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,258 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:15:38,258 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,258 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:15:38,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,259 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:15:38,259 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,259 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:15:38,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,260 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:15:38,260 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,260 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,261 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:15:38,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,262 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:15:38,262 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,262 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:15:38,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,263 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:15:38,263 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,263 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:15:38,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,264 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:15:38,264 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,264 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:15:38,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,265 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:15:38,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,266 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:15:38,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,266 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:15:38,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,267 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:15:38,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,267 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:15:38,267 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,268 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:15:38,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,268 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:15:38,268 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,269 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:15:38,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,269 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:15:38,269 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,270 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:15:38,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,270 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:15:38,270 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,270 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:15:38,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,271 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:15:38,271 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,272 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:15:38,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,272 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:15:38,272 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,273 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:15:38,273 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:15:38,273 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:15:38,273 [1520] DEBUG index - Current user is: admin +01/30/13 11:15:38,273 [1520] DEBUG index - Current theme is: softed +01/30/13 11:15:38,274 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:15:38,274 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:15:38,275 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:15:38,275 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:15:38,277 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:15:38,277 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:15:38,279 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:15:38,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:15:38,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:15:38,280 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:15:38,280 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:15:38,280 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:15:38,280 [1520] DEBUG index - skipping headers +01/30/13 11:15:38,281 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:15:38,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:15:38,286 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:15:38,286 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:15:38,286 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:15:38,287 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:15:38,291 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:16')) +01/30/13 11:15:38,294 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:16:18,383 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:16:18,747 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:16:18,747 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:16:18,747 [1520] DEBUG index - ****Starting for new session +01/30/13 11:16:18,748 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:16:18,748 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:16:18,748 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:16:18,748 [1520] DEBUG index - in CalendarAjax +01/30/13 11:16:18,748 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:16:18,748 [1520] INFO index - current module is Calendar +01/30/13 11:16:18,790 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:16:18,790 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:16:18,790 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:16:18,790 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:18,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:18,791 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:18,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:18,791 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:16:18,791 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:16:18,801 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:18,801 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:18,801 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:16:18,801 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:16:18,801 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:16:18,802 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:16:18,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,802 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:16:18,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,803 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:16:18,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,804 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:16:18,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,804 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:16:18,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,805 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:16:18,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,805 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:16:18,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,806 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:16:18,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,806 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:16:18,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,807 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:16:18,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,807 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:16:18,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,808 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:16:18,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,808 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:16:18,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,809 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:16:18,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,809 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:16:18,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,810 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:16:18,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,810 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:16:18,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,811 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:16:18,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,811 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:16:18,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,812 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:16:18,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,812 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:16:18,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,813 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:16:18,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,813 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:16:18,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,814 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:16:18,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,814 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:16:18,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,814 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:16:18,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,815 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:16:18,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,815 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:16:18,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,816 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:16:18,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,816 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:16:18,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,817 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:16:18,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,817 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:16:18,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,818 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:16:18,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,818 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:16:18,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,819 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:16:18,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,819 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:16:18,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,820 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:16:18,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,820 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:16:18,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,821 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:16:18,821 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,821 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:16:18,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,822 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:16:18,822 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,822 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:16:18,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,823 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:16:18,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,823 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:16:18,823 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,824 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:16:18,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,824 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:16:18,824 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,825 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:16:18,825 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:18,825 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:16:18,825 [1520] DEBUG index - Current user is: admin +01/30/13 11:16:18,825 [1520] DEBUG index - Current theme is: softed +01/30/13 11:16:18,826 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:16:18,826 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:16:18,827 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:16:18,827 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:16:18,829 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:16:18,829 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:16:18,831 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:16:18,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:16:18,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:16:18,832 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:16:18,832 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:16:18,832 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:16:18,832 [1520] DEBUG index - skipping headers +01/30/13 11:16:18,833 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:16:18,834 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:16:18,838 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:16:18,839 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:16:18,839 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:16:18,839 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:16:18,843 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:17')) +01/30/13 11:16:18,846 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:16:58,937 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:16:59,060 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:16:59,060 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:16:59,060 [1520] DEBUG index - ****Starting for new session +01/30/13 11:16:59,061 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:16:59,061 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:16:59,061 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:16:59,061 [1520] DEBUG index - in CalendarAjax +01/30/13 11:16:59,061 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:16:59,061 [1520] INFO index - current module is Calendar +01/30/13 11:16:59,102 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:16:59,103 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:16:59,103 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:16:59,103 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:59,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:59,103 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:59,103 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:59,104 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:16:59,104 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:16:59,112 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:16:59,113 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:16:59,113 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:16:59,113 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:16:59,113 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:16:59,114 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:16:59,114 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,114 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:16:59,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,115 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:16:59,115 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,115 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:16:59,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,116 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:16:59,116 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,116 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:16:59,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,117 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:16:59,117 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,117 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:16:59,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,118 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:16:59,118 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,118 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:16:59,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,119 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:16:59,119 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,119 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:16:59,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,120 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:16:59,120 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,120 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:16:59,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,121 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:16:59,121 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,121 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:16:59,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,122 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:16:59,122 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,122 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:16:59,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,123 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:16:59,123 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,123 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:16:59,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,124 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:16:59,124 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,124 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:16:59,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,125 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:16:59,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,125 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:16:59,125 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,126 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:16:59,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,126 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:16:59,126 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,127 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:16:59,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,127 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:16:59,127 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,128 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:16:59,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,128 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:16:59,128 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,129 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:16:59,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,129 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:16:59,129 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,130 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:16:59,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,130 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:16:59,130 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,131 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:16:59,131 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,131 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:16:59,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,132 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:16:59,132 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,132 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:16:59,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,133 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:16:59,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,133 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:16:59,133 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,134 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:16:59,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,134 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:16:59,134 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,135 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:16:59,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,135 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:16:59,135 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,136 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:16:59,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,136 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:16:59,136 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,137 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:16:59,137 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:16:59,137 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:16:59,137 [1520] DEBUG index - Current user is: admin +01/30/13 11:16:59,137 [1520] DEBUG index - Current theme is: softed +01/30/13 11:16:59,138 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:16:59,138 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:16:59,139 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:16:59,140 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:16:59,141 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:16:59,141 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:16:59,143 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:16:59,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:16:59,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:16:59,144 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:16:59,144 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:16:59,144 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:16:59,144 [1520] DEBUG index - skipping headers +01/30/13 11:16:59,145 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:16:59,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:16:59,150 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:16:59,151 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:16:59,151 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:16:59,151 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:16:59,155 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:17')) +01/30/13 11:16:59,164 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:24:58,760 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:24:59,187 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:24:59,189 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:24:59,189 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:24:59,190 [1520] DEBUG index - ****Starting for new session +01/30/13 11:24:59,190 [1520] DEBUG index - The current user does not have a session. Going to the login page +01/30/13 11:24:59,190 [1520] DEBUG index - Entering return_module_language(,Users) method ... +01/30/13 11:24:59,191 [1520] WARN index - Unable to find the module language file for language: and module: Users +01/30/13 11:24:59,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:24:59,194 [1520] DEBUG index - Entering return_application_language(en_us) method ... +01/30/13 11:24:59,196 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:24:59,196 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:26:33,075 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:33,452 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:26:33,454 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:33,454 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:33,455 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:33,455 [1520] DEBUG index - We are authenticating user now +01/30/13 11:26:33,455 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Authenticate', + 'return_module' => 'Users', + 'return_action' => 'Login', + 'user_name' => 'admin', + 'user_password' => 'admin', +) +01/30/13 11:26:33,455 [1520] INFO index - About to take action Authenticate +01/30/13 11:26:33,455 [1520] DEBUG index - in Authenticate +01/30/13 11:26:33,456 [1520] INFO index - current page is modules/Users/Authenticate.php +01/30/13 11:26:33,456 [1520] INFO index - current module is Users +01/30/13 11:26:33,496 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:33,496 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:33,496 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:33,496 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,497 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,497 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,497 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:33,497 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:33,508 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,508 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,508 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:33,508 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:33,509 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:33,509 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:33,509 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:33,510 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:33,511 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:33,512 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:33,513 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:33,514 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:33,514 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:33,515 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:33,515 [1520] DEBUG index - skipping headers +01/30/13 11:26:33,521 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:33,521 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:33,521 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:33,521 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,521 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,521 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:33,521 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:33,522 [1520] DEBUG user - Starting user load for admin +01/30/13 11:26:33,522 [1520] DEBUG user - Using integrated/SQL authentication +01/30/13 11:26:33,522 [1520] DEBUG index - Prepared sql query being executed : SELECT crypt_type FROM vtiger_users WHERE user_name=? +01/30/13 11:26:33,522 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:26:33,526 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_users where user_name=? AND user_password=? +01/30/13 11:26:33,526 [1520] DEBUG index - Prepared sql query parameters : [admin,$1$ad000000$hzXFXvL3XVlnUE/X.1n9t/] +01/30/13 11:26:33,531 [1520] DEBUG index - query being executed : SELECT * from vtiger_users where user_name='admin' +01/30/13 11:26:33,560 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:33,560 [1520] DEBUG index - Prepared sql query parameters : [269,1,Users,Authenticate,,2013-01-30 11:26:33] +01/30/13 11:26:33,569 [1520] DEBUG index - Prepared sql query being executed : Insert into vtiger_loginhistory (user_name, user_ip, logout_time, login_time, status) values (?,?,?,?,?) +01/30/13 11:26:33,569 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4,0000-00-00 00:00:00,2013/01/30 11:26:33,Signed in] +01/30/13 11:26:33,599 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:33,599 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:33,600 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:33,600 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,600 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,600 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:33,600 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:33,601 [1520] DEBUG index - Entering into retrieve_entity_info(1, Users) method. +01/30/13 11:26:33,601 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:26:33,601 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:33,605 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_attachments where attachmentsid=? +01/30/13 11:26:33,605 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:33,608 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2role where userid=? +01/30/13 11:26:33,608 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:33,611 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid=? +01/30/13 11:26:33,611 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:33,613 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:33,614 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:33,614 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:26:33,614 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:33,635 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id=? and currency_status='Active' and deleted=0 +01/30/13 11:26:33,636 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:26:33,639 [1520] DEBUG index - Exit from retrieve_entity_info(1, Users) method. +01/30/13 11:26:33,642 [1520] DEBUG index - authenticated_user_theme is softed +01/30/13 11:26:33,642 [1520] DEBUG index - authenticated_user_language is zh_cn +01/30/13 11:26:33,642 [1520] DEBUG index - authenticated_user_id is 1 +01/30/13 11:26:33,642 [1520] DEBUG index - app_unique_key is 7fbc51092369f141c526d6d14cb13651 +01/30/13 11:26:33,643 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:26:33,713 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:33,839 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:33,839 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:33,839 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:33,839 [1520] DEBUG index - Prepared sql query being executed : select internal_mailer from vtiger_users where id=? +01/30/13 11:26:33,839 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:33,842 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:33,842 [1520] DEBUG index - +01/30/13 11:26:33,905 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:34,028 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:34,028 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:34,028 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:34,029 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:34,029 [1520] DEBUG index - array ( + 'action' => 'index', + 'module' => 'Home', +) +01/30/13 11:26:34,029 [1520] INFO index - About to take action index +01/30/13 11:26:34,029 [1520] DEBUG index - in index +01/30/13 11:26:34,029 [1520] INFO index - current page is modules/Home/index.php +01/30/13 11:26:34,029 [1520] INFO index - current module is Home +01/30/13 11:26:34,062 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:34,062 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:34,062 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:34,062 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:34,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,063 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:34,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,063 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:34,063 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:34,074 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:34,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,074 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:34,074 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:34,074 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:34,075 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:34,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,075 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:34,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,076 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:34,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,076 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:34,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,077 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:34,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,077 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:34,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,078 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:34,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,078 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:34,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,079 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:34,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,079 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:34,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,080 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:34,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,080 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:34,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,081 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:34,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,081 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:34,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,082 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:34,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,082 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:34,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,082 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:34,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,083 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:34,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,083 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:34,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,084 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:34,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,084 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:34,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,085 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:34,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,085 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,086 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:34,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,087 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:34,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,087 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:34,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,088 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:34,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,088 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:34,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,089 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:34,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,089 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:34,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,090 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:34,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,090 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:34,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,091 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:34,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,091 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:34,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,091 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:34,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,092 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:34,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,092 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:34,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,093 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:34,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,093 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:34,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,094 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:34,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,094 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:34,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,095 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:34,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,095 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:34,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,096 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:34,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,096 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:34,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:34,097 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:34,112 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:34,112 [1520] DEBUG index - Prepared sql query parameters : [270,1,Home,index,,2013-01-30 11:26:34] +01/30/13 11:26:34,115 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:34,115 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:34,115 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:34,116 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:34,117 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:34,118 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:34,119 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:34,119 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:34,121 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:34,121 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,122 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:34,122 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:34,122 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:34,122 [1520] DEBUG index - including headers +01/30/13 11:26:34,122 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:34,123 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:34,126 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:34,126 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:34,129 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:26:34,130 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:26:34,130 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,131 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:26:34,131 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,131 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:26:34,131 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,131 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:26:34,132 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,132 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:26:34,132 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,132 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:26:34,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,133 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:26:34,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,133 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:26:34,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:34,134 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:26:34,134 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:26:34,134 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:26:34,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:34,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,145 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:34,145 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:34,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:34,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,147 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:26:34,147 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:26:34,147 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:34,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,148 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:26:34,148 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:26:34,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:34,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,150 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:26:34,150 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:26:34,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,151 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:34,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,151 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:26:34,151 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:26:34,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:34,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,152 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:26:34,152 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:26:34,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:34,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,154 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:26:34,154 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:26:34,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:26:34,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,155 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:26:34,155 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:26:34,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,155 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:34,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,156 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:26:34,156 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:26:34,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:34,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,157 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:26:34,158 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:26:34,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:34,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,159 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:26:34,159 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:26:34,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,159 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:34,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,160 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:26:34,160 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:26:34,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:34,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,161 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:26:34,161 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:26:34,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:34,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,162 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:26:34,163 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:26:34,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,163 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:34,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,164 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:26:34,164 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:26:34,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,165 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:34,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,165 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:26:34,165 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:26:34,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,166 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:34,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,167 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:26:34,167 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:26:34,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:34,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,169 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:26:34,169 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:26:34,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:34,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,170 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:26:34,170 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:26:34,170 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,170 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:26:34) method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:26:34) method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:34,171 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:34,172 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:34,172 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:26:34,172 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:26:34,172 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:26:34,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,185 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:26:34,190 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:34,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:34,191 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:34,193 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:34,193 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:34,194 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:26:34,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,194 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:26:34,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,195 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:26:34,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,195 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:26:34,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:34,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,197 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:26:34,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,197 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:34,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,197 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:26:34,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,198 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:34,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,198 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,199 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,200 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:26:34,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,201 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:26:34,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,201 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:26:34,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,202 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:26:34,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,202 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:26:34,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,203 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:34,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,203 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:26:34,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,204 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:34,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,204 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:26:34,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,205 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:34,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,206 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:26:34,206 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:26:34,206 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:34,211 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:26:34,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,212 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:26:34,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,213 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:26:34,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,214 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:26:34,214 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,214 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:26:34,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,215 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:34,215 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:26:34,220 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:26:34,221 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:34,221 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:26:34,221 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:26:34,224 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:26:34,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,234 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:26:34,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:34,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,234 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:34,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:34,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,235 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:34,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:34,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,235 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:34,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:34,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,235 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:34,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:34,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,236 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:34,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:34,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,236 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:34,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:34,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,236 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:34,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:34,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,237 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:26:34,237 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:34,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,237 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:34,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:26:34,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,238 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:26:34,241 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:34,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,241 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:34,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:26:34,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,242 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:26:34,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:26:34,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,242 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:26:34,243 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:26:34,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,243 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:26:34,243 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:34,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,244 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:34,244 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:34,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,244 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:26:34,244 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:26:34,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,245 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:26:34,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:26:34,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,245 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:26:34,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:26:34,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,246 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:26:34,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:34,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,246 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:34,246 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:34,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,246 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:26:34,247 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:34,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,247 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:34,247 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:34,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,247 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:34,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:34,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,247 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:34,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:34,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,248 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:34,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:34,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,249 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:34,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:34,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,249 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:34,249 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:34,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,250 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:34,250 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:34,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,250 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:34,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:34,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,250 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:34,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:34,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,251 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:34,251 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:34,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,252 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:34,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:34,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,252 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:34,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,253 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:26:34,265 [1520] DEBUG index - query being executed : SELECT * FROM vtiger_tab +01/30/13 11:26:34,276 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,) method ... +01/30/13 11:26:34,277 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,277 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,) method ... +01/30/13 11:26:34,277 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,277 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,) method ... +01/30/13 11:26:34,278 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,278 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,) method ... +01/30/13 11:26:34,278 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,278 [1520] DEBUG index - Entering isPermitted(Documents,DetailView,) method ... +01/30/13 11:26:34,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,279 [1520] DEBUG index - Entering isPermitted(Calendar,DetailView,) method ... +01/30/13 11:26:34,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,280 [1520] DEBUG index - Entering isPermitted(HelpDesk,DetailView,) method ... +01/30/13 11:26:34,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,280 [1520] DEBUG index - Entering isPermitted(Products,DetailView,) method ... +01/30/13 11:26:34,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,281 [1520] DEBUG index - Entering isPermitted(Faq,DetailView,) method ... +01/30/13 11:26:34,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,281 [1520] DEBUG index - Entering isPermitted(Vendors,DetailView,) method ... +01/30/13 11:26:34,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,282 [1520] DEBUG index - Entering isPermitted(PriceBooks,DetailView,) method ... +01/30/13 11:26:34,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,282 [1520] DEBUG index - Entering isPermitted(Quotes,DetailView,) method ... +01/30/13 11:26:34,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,283 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,DetailView,) method ... +01/30/13 11:26:34,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,284 [1520] DEBUG index - Entering isPermitted(SalesOrder,DetailView,) method ... +01/30/13 11:26:34,284 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,284 [1520] DEBUG index - Entering isPermitted(Invoice,DetailView,) method ... +01/30/13 11:26:34,285 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,285 [1520] DEBUG index - Entering isPermitted(Campaigns,DetailView,) method ... +01/30/13 11:26:34,285 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,285 [1520] DEBUG index - Entering isPermitted(PBXManager,DetailView,) method ... +01/30/13 11:26:34,286 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,286 [1520] DEBUG index - Entering isPermitted(ServiceContracts,DetailView,) method ... +01/30/13 11:26:34,286 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,287 [1520] DEBUG index - Entering isPermitted(Services,DetailView,) method ... +01/30/13 11:26:34,287 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,287 [1520] DEBUG index - Entering isPermitted(Assets,DetailView,) method ... +01/30/13 11:26:34,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,288 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:26:34,288 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,288 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,DetailView,) method ... +01/30/13 11:26:34,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,289 [1520] DEBUG index - Entering isPermitted(ProjectTask,DetailView,) method ... +01/30/13 11:26:34,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,289 [1520] DEBUG index - Entering isPermitted(Project,DetailView,) method ... +01/30/13 11:26:34,290 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,290 [1520] DEBUG index - Entering isPermitted(SMSNotifier,DetailView,) method ... +01/30/13 11:26:34,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,291 [1520] DEBUG index - Entering isPermitted(Rss,DetailView,) method ... +01/30/13 11:26:34,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,291 [1520] DEBUG index - Entering isPermitted(Dashboard,DetailView,) method ... +01/30/13 11:26:34,292 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,292 [1520] DEBUG index - Entering isPermitted(Reports,DetailView,) method ... +01/30/13 11:26:34,292 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,292 [1520] DEBUG index - Prepared sql query being executed : select vtiger_homestuff.stuffid,stufftype,stufftitle,setype from vtiger_homestuff + left join vtiger_homedefault on vtiger_homedefault.stuffid=vtiger_homestuff.stuffid + where visible=0 and userid=? order by stuffsequence desc +01/30/13 11:26:34,293 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:34,304 [1520] DEBUG index - function getTranslatedString(My Recent FAQs) - translated to (最新常见问答) +01/30/13 11:26:34,304 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:26:34,304 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,305 [1520] DEBUG index - function getTranslatedString(Pending Activities) - translated to (即将进行的活动) +01/30/13 11:26:34,305 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:34,305 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,305 [1520] DEBUG index - function getTranslatedString(Top Purchase Orders) - translated to (最新采购订单) +01/30/13 11:26:34,306 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:26:34,306 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,306 [1520] DEBUG index - function getTranslatedString(My New Leads) - translated to (最新潜在客户) +01/30/13 11:26:34,306 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:26:34,307 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,307 [1520] DEBUG index - function getTranslatedString(Top Invoices) - translated to (最新发货单) +01/30/13 11:26:34,307 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:26:34,308 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,308 [1520] DEBUG index - function getTranslatedString(Top Sales Orders) - translated to (最新销售订单) +01/30/13 11:26:34,308 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:26:34,309 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,309 [1520] DEBUG index - function getTranslatedString(My Group Allocation) - translated to (最新部门任务) +01/30/13 11:26:34,309 [1520] DEBUG index - function getTranslatedString(Upcoming Activities) - translated to (近期活动) +01/30/13 11:26:34,309 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:34,310 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,310 [1520] DEBUG index - function getTranslatedString(Top Trouble Tickets) - translated to (最新故障单) +01/30/13 11:26:34,310 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:26:34,311 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,311 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,311 [1520] DEBUG index - function getTranslatedString(Top Quotes) - translated to (最新报价单) +01/30/13 11:26:34,311 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:26:34,312 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,312 [1520] DEBUG index - function getTranslatedString(Top Potentials) - translated to (最新销售机会) +01/30/13 11:26:34,312 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:26:34,312 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,313 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,313 [1520] DEBUG index - Entering isPermitted(Dashboard,index,) method ... +01/30/13 11:26:34,313 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,313 [1520] DEBUG index - function getTranslatedString(Top Accounts) - translated to (最新客户) +01/30/13 11:26:34,314 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:34,314 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,314 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:34,315 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:34,315 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_home_layout where userid=? +01/30/13 11:26:34,315 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:34,319 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:34,320 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:34,320 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:34,321 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:34,321 [1520] DEBUG index - Prepared sql query being executed : SELECT tag,tag_id,COUNT(object_id) AS quantity + FROM vtiger_freetags INNER JOIN vtiger_freetagged_objects + ON (vtiger_freetags.id = tag_id) + WHERE 1=1 + AND tagger_id = ? + GROUP BY tag + ORDER BY quantity DESC LIMIT 0, 100 +01/30/13 11:26:34,321 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:34,328 [1520] DEBUG index - Prepared sql query being executed : SELECT login_time, logout_time FROM vtiger_loginhistory WHERE user_name=? ORDER BY login_id DESC LIMIT 2 +01/30/13 11:26:34,328 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:26:34,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,336 [1520] DEBUG index - function getTranslatedString(LBL_REPORTCHARTS) - translated to (报表) +01/30/13 11:26:34,336 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,336 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,336 [1520] DEBUG index - function getTranslatedString(LBL_DEFAULT_WIDGET) - translated to (默认组件) +01/30/13 11:26:34,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:34,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,337 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:34,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:34,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,337 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:34,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:34,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,337 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:34,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:34,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,338 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:34,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:34,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,338 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:34,338 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:34,338 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,338 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:34,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:34,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,339 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:34,339 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:34,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,339 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:34,339 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:34,339 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,340 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:34,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:34,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,340 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:34,340 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:34,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,340 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:26:34,340 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:34,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,340 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:34,340 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:34,340 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,341 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:34,341 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:34,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,341 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:34,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:34,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,341 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:34,341 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:34,341 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,341 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:34,341 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:34,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,342 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:34,342 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:34,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,342 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:34,342 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:34,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,342 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:34,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:34,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,342 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:34,343 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:34,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,343 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:34,343 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:34,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,343 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:34,343 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:34,343 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,343 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:26:34,343 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:34,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,344 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:34,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:34,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,344 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:34,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,344 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_NAME) - translated to (报表名称) +01/30/13 11:26:34,344 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,344 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,344 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_TYPE) - translated to (报表类型) +01/30/13 11:26:34,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,347 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,348 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,348 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,348 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,349 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,350 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,350 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,350 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,351 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,351 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,352 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,352 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,352 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,353 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,353 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,354 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,354 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,355 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,355 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,356 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,356 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,357 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,357 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,357 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,358 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,358 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,358 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,359 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,359 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,360 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,360 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,361 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,361 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,361 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,363 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,363 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,363 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,365 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,365 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,365 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,367 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,367 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,368 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,369 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,369 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,370 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,371 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,371 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,371 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,371 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,372 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,373 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,373 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,373 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,373 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,374 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,375 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,375 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:26:34,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,376 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,376 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,376 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,376 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,377 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,377 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,377 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,377 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,378 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,378 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,378 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,379 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,379 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,379 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,379 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:34,379 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:34,379 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:26:34,379 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:26:34,380 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:34,380 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,129 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:35,131 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:35,142 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:35,227 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:35,265 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:35,265 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:35,266 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:35,266 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:35,266 [1520] DEBUG index - array ( + 'module' => 'Dashboard', + 'action' => 'DashboardAjax', + 'file' => 'HomepageDB', +) +01/30/13 11:26:35,266 [1520] INFO index - About to take action DashboardAjax +01/30/13 11:26:35,266 [1520] DEBUG index - in DashboardAjax +01/30/13 11:26:35,267 [1520] INFO index - current page is modules/Dashboard/DashboardAjax.php +01/30/13 11:26:35,267 [1520] INFO index - current module is Dashboard +01/30/13 11:26:35,303 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:35,303 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:35,303 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:35,303 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,304 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,304 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:35,304 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:35,312 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,313 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,313 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:35,313 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:35,313 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:35,314 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:35,314 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,314 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:35,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,315 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:35,315 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,315 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:35,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,316 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:35,316 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,316 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:35,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,317 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:35,317 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,317 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:35,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,318 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:35,318 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,318 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:35,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,319 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:35,319 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,319 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:35,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,320 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:35,320 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,320 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:35,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,321 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:35,321 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,321 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:35,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,322 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:35,322 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,322 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:35,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,323 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:35,323 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,323 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:35,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,324 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:35,324 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,324 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,325 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:35,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,326 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:35,326 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,326 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:35,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,327 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:35,327 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,327 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:35,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,328 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:35,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,328 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:35,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,329 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:35,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,329 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:35,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,330 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:35,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,330 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:35,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,331 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:35,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,331 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:35,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,332 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:35,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,332 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:35,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,332 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:35,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,333 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:35,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,333 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:35,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,334 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:35,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,334 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:35,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,335 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:35,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,335 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:35,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,336 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:35,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,336 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:35,358 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:35,358 [1520] DEBUG index - Prepared sql query parameters : [271,1,Dashboard,DashboardAjax,,2013-01-30 11:26:35] +01/30/13 11:26:35,361 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:35,361 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:35,362 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:35,362 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:35,363 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:35,364 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:35,366 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:35,366 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:35,367 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:35,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:26:35,368 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Dashboard +01/30/13 11:26:35,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,369 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:35,369 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:35,369 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:35,369 [1520] DEBUG index - skipping headers +01/30/13 11:26:35,370 [1520] DEBUG index - Entering isPermitted(Dashboard,HomepageDB,) method ... +01/30/13 11:26:35,371 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,381 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_leaddetails le on le.leadid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (le.converted = 0 OR le.converted IS NULL) +01/30/13 11:26:35,384 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_troubletickets tt ON tt.ticketid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (tt.status != 'Closed' OR tt.status IS NULL) +01/30/13 11:26:35,388 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_potential pot ON pot.potentialid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (pot.sales_stage NOT IN ('成功结案','失败结案') OR pot.sales_stage IS NULL) +01/30/13 11:26:35,391 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_activity act ON act.activityid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND act.activitytype != 'Emails' AND + ((act.status!='Completed' AND act.status!='Deferred') OR act.status IS NULL) + AND ((act.eventstatus!='Held' AND act.eventstatus!='Not Held') OR act.eventstatus IS NULL) +01/30/13 11:26:35,395 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:35,395 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,396 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:26:35,396 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,396 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:26:35,397 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,397 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:26:35,397 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,397 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:26:35,398 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,398 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:26:35,398 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,398 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:26:35,399 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,399 [1520] DEBUG index - query being executed : SELECT setype, count(setype) setype_count FROM vtiger_crmentity se WHERE + se.deleted = 0 AND se.smownerid=1 AND se.setype in ('Accounts','Contacts','Quotes','SalesOrder','PurchaseOrder','Invoice','Campaigns') GROUP BY se.setype +01/30/13 11:26:35,403 [1520] DEBUG index - query being executed : SELECT cvid,entitytype FROM vtiger_customview WHERE viewname='All' AND entitytype in ('Leads','HelpDesk','Potentials','Calendar','Accounts','Campaigns','Contacts','Invoice','PurchaseOrder','Quotes','SalesOrder') +01/30/13 11:26:35,408 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,408 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,410 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,410 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,412 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,413 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,415 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,415 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,417 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,418 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,420 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,420 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,422 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,422 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,424 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,424 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,426 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,426 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,428 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,428 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,430 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,430 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,441 [1520] DEBUG index - Entering calculate_font_name(zh_cn) method ... +01/30/13 11:26:35,441 [1520] DEBUG index - Exiting calculate_font_name method ... +01/30/13 11:26:35,452 [1520] DEBUG index - Entering get_tickspacing(15) method ... +01/30/13 11:26:35,452 [1520] DEBUG index - Exiting get_tickspacing method ... +01/30/13 11:26:35,508 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:35,508 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:35,509 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:35,509 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:35,509 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":1,"widgetType":"Default"},{"widgetId":3,"widgetType":"Default"},{"widgetId":4,"widgetType":"Default"},{"widgetId":5,"widgetType":"Default"},{"widgetId":6,"widgetType":"Default"},{"widgetId":7,"widgetType":"Default"},{"widgetId":8,"widgetType":"Default"},{"widgetId":9,"widgetType":"Default"},{"widgetId":10,"widgetType":"Default"},{"widgetId":11,"widgetType":"Default"},{"widgetId":12,"widgetType":"Default"},{"widgetId":13,"widgetType":"Default"}]', +) +01/30/13 11:26:35,509 [1520] INFO index - About to take action HomeAjax +01/30/13 11:26:35,509 [1520] DEBUG index - in HomeAjax +01/30/13 11:26:35,510 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:26:35,510 [1520] INFO index - current module is Home +01/30/13 11:26:35,549 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:35,550 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:35,550 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:35,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,551 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:35,551 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:35,559 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:35,559 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,559 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:35,559 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:35,560 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:35,561 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:35,561 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,561 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:35,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,562 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:35,562 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,562 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:35,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,563 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:35,563 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,563 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:35,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,564 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:35,564 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,564 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:35,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,565 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:35,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,565 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:35,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,566 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:35,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,566 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:35,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,567 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:35,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,567 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:35,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,568 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:35,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,568 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:35,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,569 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:35,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,569 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:35,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,570 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:35,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,570 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:35,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,571 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:35,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,571 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:35,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,572 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:35,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,572 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:35,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,573 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:35,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,573 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:35,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,574 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:35,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,574 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:35,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,575 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:35,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,575 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:35,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,576 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:35,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,576 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:35,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,577 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:35,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,577 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:35,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,578 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:35,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,578 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:35,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,579 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:35,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,579 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:35,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,580 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:35,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,580 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:35,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,581 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:35,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,581 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:35,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,582 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:35,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,582 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:35,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,583 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:35,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,583 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:35,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,584 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:35,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,584 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:35,603 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:35,603 [1520] DEBUG index - Prepared sql query parameters : [272,1,Home,HomeAjax,,2013-01-30 11:26:35] +01/30/13 11:26:35,610 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:35,610 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:35,610 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:35,610 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:35,612 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:35,612 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:35,614 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:35,614 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:35,616 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:35,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:35,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,616 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:35,616 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:35,617 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:35,617 [1520] DEBUG index - skipping headers +01/30/13 11:26:35,632 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:35,632 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:35,637 [1520] DEBUG top accounts_list - Entering getTopAccounts() method ... +01/30/13 11:26:35,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:35,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,641 [1520] DEBUG index - query being executed : select vtiger_potential.potentialname,vtiger_account.accountid, vtiger_account.accountname, vtiger_account.tickersymbol, sum(vtiger_potential.amount) as amount from vtiger_potential inner join vtiger_crmentity on (vtiger_potential.potentialid=vtiger_crmentity.crmid) inner join vtiger_account on (vtiger_potential.related_to=vtiger_account.accountid) WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid>0 AND vtiger_crmentity.smownerid='1' and vtiger_potential.sales_stage not in ('Closed Won', 'Closed Lost','成功结案','失败结案') group by vtiger_account.accountid, vtiger_account.tickersymbol order by amount desc LIMIT 0,5 +01/30/13 11:26:35,647 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:26:35,647 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:26:35,647 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,647 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,647 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:26:35,647 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:26:35,651 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,651 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,652 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,653 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,654 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,654 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,654 [1520] DEBUG top accounts_list - Exiting getTopAccounts method ... +01/30/13 11:26:35,661 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:35,661 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:26:35,665 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:26:35,666 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,667 [1520] DEBUG top opportunity_list - Entering getTopPotentials() method ... +01/30/13 11:26:35,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:35,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:35,668 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:26:35,668 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:35,668 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,669 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:35,669 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,669 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:35,669 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:26:35,675 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:35,675 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,675 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:35,676 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:35,676 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,676 [1520] DEBUG index - query being executed : SELECT vtiger_crmentity.crmid, vtiger_potential.potentialname, + vtiger_potential.amount, potentialid + FROM vtiger_potential + IGNORE INDEX(PRIMARY) INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid > 0 AND vtiger_potential.sales_stage not in ('Closed Won','Closed Lost','成功结案','失败结案') AND vtiger_crmentity.smownerid='1' AND vtiger_potential.amount > 0 ORDER BY amount DESC LIMIT 5 +01/30/13 11:26:35,680 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,680 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,681 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,682 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:26:35,683 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:35,683 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:35,688 [1520] DEBUG top opportunity_list - Exiting getTopPotentials method ... +01/30/13 11:26:35,690 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:35,690 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:35,692 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:26:35,693 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:35,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:35,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,698 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:35,698 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:26:35,701 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:35,701 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:35,701 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,701 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,702 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,702 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,702 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:35,702 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:35,709 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,709 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:35,710 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,710 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,710 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:26:35,710 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:35,714 [1520] DEBUG index - Entering getCvIdOfAll(Quotes) +01/30/13 11:26:35,714 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:26:35,714 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:26:35,716 [1520] DEBUG index - Exiting getCvIdOfAll(Quotes) +01/30/13 11:26:35,717 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,717 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,717 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:35,717 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:35,719 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,719 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:35,719 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:35,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:35,721 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:26:35,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,721 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:35,721 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,722 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:26:35,723 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:35,723 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:35,723 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:26:35,730 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:35,731 [1520] DEBUG index - Prepared sql query parameters : [20,49,51,53,54] +01/30/13 11:26:35,744 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:26:35,749 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:35,750 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:26:35,752 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:35,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,754 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,755 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,756 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:35,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:35,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:35,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:35,760 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:35,761 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:35,761 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:26:35,764 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:35,764 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:35,764 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:26:35,769 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:35,769 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:35,828 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,829 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:26:35,832 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,832 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:26:35,834 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,834 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:26:35,837 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:35,837 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:26:35,839 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:35,839 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:26:35,887 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,887 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:26:35,889 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,889 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:26:35,891 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,892 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:26:35,894 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,894 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:26:35,896 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,896 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:26:35,898 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,898 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:26:35,900 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,900 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:26:35,902 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,902 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:26:35,905 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:35,905 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:26:35,907 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:35,907 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:26:35,942 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,942 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:26:35,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,944 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:26:35,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,946 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:26:35,948 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,948 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:26:35,949 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:26:35,949 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:35,951 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,952 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:26:35,953 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:35,953 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:26:35,956 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:35,957 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:26:35,990 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,990 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:26:35,992 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,992 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:26:35,994 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,994 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:26:35,996 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,996 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:26:35,998 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:35,998 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:26:35,1000 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,000 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:26:36,002 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,002 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:26:36,004 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,004 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:26:36,006 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,006 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:26:36,008 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,008 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:26:36,010 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,010 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:26:36,012 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:36,012 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:26:36,017 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:36,021 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:36,021 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:36,024 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:36,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:36,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,028 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:36,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:36,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,028 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:26:36,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:36,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,029 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:36,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:36,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,030 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:26:36,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:36,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,031 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:36,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:36,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,032 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:26:36,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,032 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:36,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,033 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:26:36,033 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:36,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,034 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:36,034 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:36,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,034 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:36,035 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:36,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,036 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:36,036 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:36,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,036 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:26:36,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:36,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,038 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:36,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:36,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,038 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:26:36,038 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:36,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,039 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:36,039 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:36,040 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,040 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:26:36,040 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:36,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,041 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:36,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:36,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,042 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:26:36,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:36,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,043 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:36,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:36,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,044 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:26:36,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:36,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,044 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:36,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:36,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,045 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:36,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:36,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,046 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:36,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:36,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,047 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:26:36,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:36,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,047 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:36,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:36,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,048 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:26:36,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:36,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,048 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:36,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:36,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,049 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:26:36,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:36,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,049 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:36,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:36,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,050 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:26:36,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:36,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,050 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:26:36,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:36,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,050 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:26:36,051 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:36,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,051 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:36,051 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:36,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,051 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:26:36,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:36,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,052 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:26:36,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:36,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,052 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:26:36,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:36,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,053 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:26:36,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:36,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,054 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:26:36,054 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:36,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,054 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:36,054 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:36,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,054 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:26:36,054 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:36,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,055 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:26:36,056 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:36,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,056 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:26:36,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:36,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,056 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:36,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:36,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,056 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:26:36,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:36,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,057 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:36,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:36,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,057 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:26:36,057 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:36,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,058 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:26:36,058 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:36,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,058 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:26:36,058 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:36,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,059 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:36,059 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:36,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,059 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:26:36,059 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:36,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,059 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:36,060 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:36,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,060 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:26:36,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:36,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,060 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:36,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:36,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,061 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:26:36,061 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:36,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,061 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:36,061 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:36,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,061 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:26:36,062 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,062 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,124 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,124 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:26:36,127 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,127 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,127 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,127 [1520] DEBUG index - Prepared sql query parameters : [35] +01/30/13 11:26:36,129 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,130 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,130 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,130 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:26:36,132 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,132 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,167 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,167 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:26:36,169 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,170 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,170 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,170 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:26:36,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:36,172 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:36,173 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,173 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:26:36,178 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,178 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:26:36,181 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,181 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:26:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,184 [1520] DEBUG index - function getTranslatedString(Accepted) - translated to (已接受) +01/30/13 11:26:36,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,185 [1520] DEBUG index - function getTranslatedString(Rejected) - translated to (已拒绝) +01/30/13 11:26:36,185 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:26:36) method ... +01/30/13 11:26:36,185 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:26:36,185 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,186 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:36,197 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,197 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:36,199 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:36,200 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:36,200 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,200 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:36,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,201 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,201 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:36,203 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,203 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:36,204 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,205 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:26:36,206 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,206 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:26:36,207 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,207 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,207 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:26:36,209 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,209 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,209 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,209 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,210 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,210 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,210 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,210 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,210 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,210 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,210 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,211 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,211 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,211 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,211 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,212 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,212 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,212 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,212 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,213 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,213 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,213 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,213 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,213 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,214 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,214 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,214 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,215 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:26:36,215 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:26:36,215 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,215 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:36,217 [1520] DEBUG index - query being executed : SELECT vtiger_quotes.quoteid, vtiger_quotes.subject, vtiger_quotes.potentialid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') and ( vtiger_quotes.quotestage <> '已接受') and ( vtiger_quotes.quotestage <> '已拒绝') and ( vtiger_quotes.validtill >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_quotes.quoteid > 0 LIMIT 5 +01/30/13 11:26:36,221 [1520] DEBUG index - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:26:36,221 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:26:36,221 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,222 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:26:36,222 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:36,222 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:36,223 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:36,223 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:36,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,224 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:26:36,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:36,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,224 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:26:36,225 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:36,226 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:36,226 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:36,226 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:36,229 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,229 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:26:36,232 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:26:36,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:36,233 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.setmetrics = 1 order by vtiger_customview.entitytype +01/30/13 11:26:36,237 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:26:36,237 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:26:36,237 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:26:36,237 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,238 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,239 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:26:36,240 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,241 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:26:36,241 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:36,242 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,242 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:26:36,242 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:26:36,242 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:26:36,242 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,243 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,244 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:26:36,244 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,246 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:26:36,246 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:26:36,247 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,247 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:26:36,247 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:26:36,247 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:26:36,247 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,248 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,249 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:26:36,249 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,251 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:26:36,251 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:26:36,251 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,252 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:26:36,252 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:26:36,252 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:26:36,252 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,252 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,254 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:26:36,254 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,255 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:26:36,255 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:26:36,256 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,256 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:26:36,256 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:26:36,256 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:26:36,256 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,256 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,258 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:26:36,258 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,260 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:26:36,260 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:26:36,261 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,261 [1520] INFO metrics - Metrics :: Successfully got MetricList to be displayed +01/30/13 11:26:36,261 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,261 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:26:36,263 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,263 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,263 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,263 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,263 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,263 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,263 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,263 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,270 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,270 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,270 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,270 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,270 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,270 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,271 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,271 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,271 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,272 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,272 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,273 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,273 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,275 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,275 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,277 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,277 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,277 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,277 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,277 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,277 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:26:36,283 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,283 [1520] DEBUG metrics - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:26:36,296 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,297 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:36,298 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,299 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,299 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,299 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:36,301 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,301 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,301 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,302 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:26:36,304 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,304 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:26:36,306 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,306 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:26:36,307 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:26:36,307 [1520] DEBUG metrics - Prepared sql query parameters : [5,1] +01/30/13 11:26:36,310 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:36,310 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,310 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,310 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,312 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,312 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,314 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,314 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,314 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,314 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,315 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,315 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,315 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,316 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,316 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,316 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,317 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,317 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:36,317 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:26:36,317 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,317 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,317 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,318 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,318 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,318 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.account_type = 'Prospect') )) AND vtiger_account.accountid > 0 +01/30/13 11:26:36,320 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,320 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:26:36,322 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,322 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,322 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,322 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,323 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,323 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,323 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,323 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,323 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:26:36,328 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,328 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,329 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,329 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,329 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:26:36,331 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,331 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,331 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,331 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:26:36,334 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,334 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,335 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,336 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:26:36,339 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,339 [1520] DEBUG metrics - Prepared sql query parameters : [13,25,28,29] +01/30/13 11:26:36,348 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,348 [1520] DEBUG metrics - Prepared sql query parameters : [36] +01/30/13 11:26:36,350 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,350 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,350 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,350 [1520] DEBUG metrics - Prepared sql query parameters : [33] +01/30/13 11:26:36,352 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,352 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,352 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,352 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:36,354 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,354 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,354 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,354 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:26:36,357 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,357 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:26:36,359 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,359 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:26:36,360 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:26:36,360 [1520] DEBUG metrics - Prepared sql query parameters : [14,1] +01/30/13 11:26:36,363 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,363 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,363 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,363 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,364 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,365 [1520] DEBUG metrics - Prepared sql query parameters : [Contacts] +01/30/13 11:26:36,366 [1520] DEBUG metrics - Entering getColumnFields(Contacts) method ... +01/30/13 11:26:36,366 [1520] DEBUG metrics - in getColumnFields Contacts +01/30/13 11:26:36,367 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,367 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,367 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,367 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,367 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,367 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:26:36,374 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,374 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,375 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,375 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:26:36,377 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,377 [1520] DEBUG metrics - Prepared sql query parameters : [Products] +01/30/13 11:26:36,379 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:26:36,379 [1520] DEBUG metrics - Entering getColumnFields(Products) method ... +01/30/13 11:26:36,379 [1520] DEBUG metrics - in getColumnFields Products +01/30/13 11:26:36,379 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,380 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,380 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,380 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,380 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,380 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:26:36,388 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,388 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,388 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,388 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:26:36,388 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,388 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,388 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,389 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,389 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,389 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:26:36,391 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:36,391 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,391 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,391 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,393 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,393 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,394 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,394 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,394 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,394 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,395 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,395 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,395 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,395 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,395 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,396 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,396 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,396 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,396 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,396 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,396 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,397 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,397 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,397 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,397 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,397 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,397 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,397 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,397 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,397 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,397 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,398 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,398 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,398 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:26:36,398 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,398 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,399 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,399 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:26:36,399 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,399 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,400 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_troubletickets.ticketid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_troubletickets.status <> 'Closed') )) AND vtiger_troubletickets.ticketid > 0 +01/30/13 11:26:36,403 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,403 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:26:36,405 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,405 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,405 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,405 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,405 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,406 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,406 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,406 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,406 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:26:36,411 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,411 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,411 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,411 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,412 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,412 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,412 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,412 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,412 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,412 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:26:36,414 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,414 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,414 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,414 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:26:36,416 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,416 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,418 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,418 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,418 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,418 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,418 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,418 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:26:36,422 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,422 [1520] DEBUG metrics - Prepared sql query parameters : [7,13,15,16] +01/30/13 11:26:36,433 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,433 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:36,435 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,435 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,435 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,435 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,437 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,438 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,439 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,439 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,441 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:26:36,441 [1520] DEBUG metrics - Prepared sql query parameters : [2,1] +01/30/13 11:26:36,443 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,443 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,443 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,444 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,444 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,444 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,444 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,444 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,445 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,445 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,445 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,445 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,445 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,445 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,446 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,446 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,446 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,446 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,446 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,446 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,447 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,447 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,447 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,447 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,447 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,447 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,448 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,448 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:26:36,448 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,448 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,448 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:26:36,449 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:26:36,449 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,449 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = vtiger_crmentity.crmid INNER JOIN vtiger_leadsubdetails ON vtiger_leaddetails.leadid = vtiger_leadsubdetails.leadsubscriptionid WHERE vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( vtiger_leaddetails.leadstatus = 'Hot') )) AND vtiger_leaddetails.leadid > 0 +01/30/13 11:26:36,452 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,452 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,452 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,452 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,454 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,454 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,454 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,455 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,457 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,458 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,458 [1520] DEBUG metrics - Prepared sql query parameters : [Potentials] +01/30/13 11:26:36,462 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,462 [1520] DEBUG metrics - Prepared sql query parameters : [2,1,3] +01/30/13 11:26:36,469 [1520] DEBUG metrics - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:26:36,469 [1520] DEBUG metrics - Prepared sql query parameters : [113] +01/30/13 11:26:36,471 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,471 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,505 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,505 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:26:36,508 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,508 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,508 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,508 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:36,510 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,510 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,511 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,511 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:26:36,514 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,514 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:26:36,516 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,516 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:26:36,518 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:26:36,519 [1520] DEBUG metrics - Prepared sql query parameters : [11,1] +01/30/13 11:26:36,522 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,522 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,522 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,522 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,524 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,524 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,525 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,525 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:26:36,527 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:36,527 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,527 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,528 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,530 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,530 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,532 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,532 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,532 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,532 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,532 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,532 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,533 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,533 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,533 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,534 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,534 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,534 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,535 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:26:36,535 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,535 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,536 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,536 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,536 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,537 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_potential.potentialid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_potential.sales_stage = 'Closed Won') )) AND vtiger_potential.potentialid > 0 +01/30/13 11:26:36,539 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,539 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,539 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,539 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,541 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,541 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,541 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,542 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,547 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,547 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:26:36,549 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,549 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:26:36,552 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,552 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:26:36,553 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:26:36,554 [1520] DEBUG metrics - Prepared sql query parameters : [17,1] +01/30/13 11:26:36,556 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:26:36,556 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,556 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,556 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:26:36,558 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,558 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,558 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,559 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,560 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:36,560 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,560 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,560 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,562 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,562 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,564 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,564 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,564 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,564 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,564 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,564 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,565 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,565 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,565 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,566 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,566 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,566 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,567 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,567 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,567 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,568 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,568 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:26:36,569 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:26:36,569 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,569 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,569 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,569 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,570 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,570 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') )) AND vtiger_quotes.quoteid > 0 +01/30/13 11:26:36,572 [1520] INFO metrics - Metrics :: Successfully build the Metrics +01/30/13 11:26:36,572 [1520] DEBUG metrics - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:36,573 [1520] DEBUG metrics - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:36,573 [1520] DEBUG metrics - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:36,573 [1520] DEBUG metrics - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:36,573 [1520] DEBUG metrics - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:36,575 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,575 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,577 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:26:36,578 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,579 [1520] DEBUG metrics - Entering getMyTickets() method ... +01/30/13 11:26:36,580 [1520] DEBUG metrics - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:36,580 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,580 [1520] DEBUG metrics - Prepared sql query being executed : SELECT vtiger_troubletickets.*, vtiger_crmentity.* + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + INNER JOIN vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_crmentity.smownerid = ? and vtiger_crmentity.deleted = 0 and vtiger_troubletickets.ticketid > 0 and vtiger_troubletickets.status <> 'Closed' AND vtiger_crmentity.setype='HelpDesk' ORDER BY createdtime DESC LIMIT 0,5 +01/30/13 11:26:36,580 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,584 [1520] DEBUG metrics - Entering getParentLink(22) method ... +01/30/13 11:26:36,584 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:26:36,584 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,588 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:26:36,588 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,590 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:26:36,590 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:26:36,591 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:26:36,591 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:26:36,592 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:26:36,592 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:26:36,595 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:26:36,595 [1520] DEBUG metrics - Entering getParentLink(29) method ... +01/30/13 11:26:36,595 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:26:36,596 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,597 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:26:36,597 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,598 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:26:36,599 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:26:36,599 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,599 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,601 [1520] DEBUG metrics - Exiting getMyTickets method ... +01/30/13 11:26:36,603 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,603 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:26:36,606 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:26:36) method ... +01/30/13 11:26:36,607 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:26:36,607 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:36,607 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:26:36,607 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:36,607 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:26:36,608 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:26:36,609 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:36,609 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,609 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:36,609 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,609 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:26:36,609 [1520] DEBUG metrics - Prepared sql query parameters : [9,16] +01/30/13 11:26:36,618 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:36,618 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,618 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:26:36,618 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,619 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,619 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:36,619 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,619 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and vtiger_activity.activitytype not in ('Emails') AND ( vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and ( vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held') ) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:26:36,624 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:36,625 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,626 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,626 [1520] DEBUG metrics - Prepared sql query parameters : [8] +01/30/13 11:26:36,628 [1520] DEBUG metrics - Entering fetchUserGroupids(1) method ... +01/30/13 11:26:36,628 [1520] DEBUG metrics - Entering getAllUserGroups(1) method... +01/30/13 11:26:36,629 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_users2group where userid=? +01/30/13 11:26:36,629 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,631 [1520] DEBUG metrics - Entering fetchUserRole(1) method ... +01/30/13 11:26:36,631 [1520] DEBUG metrics - Prepared sql query being executed : select roleid from vtiger_user2role where userid=? +01/30/13 11:26:36,631 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,632 [1520] DEBUG metrics - Exiting fetchUserRole method ... +01/30/13 11:26:36,632 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2role where roleid=? +01/30/13 11:26:36,632 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:26:36,634 [1520] DEBUG metrics - Entering getParentRole(H2) method ... +01/30/13 11:26:36,635 [1520] DEBUG metrics - Entering getRoleInformation(H2) method ... +01/30/13 11:26:36,635 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:26:36,635 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:26:36,637 [1520] DEBUG metrics - Exiting getRoleInformation method ... +01/30/13 11:26:36,637 [1520] DEBUG metrics - Exiting getParentRole method ... +01/30/13 11:26:36,637 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2rs where roleandsubid in (?,?) +01/30/13 11:26:36,637 [1520] DEBUG metrics - Prepared sql query parameters : [H1,H2] +01/30/13 11:26:36,639 [1520] DEBUG metrics - Entering getAllParentGroups(3) method... +01/30/13 11:26:36,639 [1520] DEBUG metrics - Prepared sql query being executed : select groupid from vtiger_group2grouprel where containsgroupid=? +01/30/13 11:26:36,639 [1520] DEBUG metrics - Prepared sql query parameters : [3] +01/30/13 11:26:36,641 [1520] DEBUG metrics - Exiting getAllParentGroups method... +01/30/13 11:26:36,642 [1520] DEBUG metrics - Exiting getAllUserGroups method... +01/30/13 11:26:36,642 [1520] DEBUG metrics - Exiting fetchUserGroupids method ... +01/30/13 11:26:36,642 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:26:36,642 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,643 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:26:36,643 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,643 [1520] DEBUG metrics - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:36,644 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,644 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:26:36,644 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,645 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:26:36,645 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,645 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:36,646 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,646 [1520] DEBUG metrics - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:26:36,647 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,647 [1520] DEBUG metrics - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:26:36,648 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,648 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:26:36,648 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,649 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:26:36,649 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,650 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:26:36,650 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,651 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:26:36,651 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,652 [1520] DEBUG metrics - Entering isPermitted(Documents,index,) method ... +01/30/13 11:26:36,652 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,652 [1520] INFO metrics - Here is the where clause for the list view: select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:26:36,652 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:26:36,653 [1520] DEBUG metrics - Prepared sql query parameters : [3,3,3,3,3,3,3,3,3,3,3,3] +01/30/13 11:26:36,668 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,668 [1520] DEBUG metrics - Prepared sql query parameters : [9] +01/30/13 11:26:36,670 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:26:36,670 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,673 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:36,673 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,673 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,673 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:26:36,675 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,675 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,675 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,675 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,676 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,676 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,676 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,676 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,684 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,684 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,684 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,684 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,685 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,685 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,685 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,685 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:26:36,685 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,692 [1520] DEBUG metrics - Entering getCvIdOfAll(SalesOrder) +01/30/13 11:26:36,692 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:26:36,692 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:26:36,696 [1520] DEBUG metrics - Exiting getCvIdOfAll(SalesOrder) +01/30/13 11:26:36,696 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,696 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,697 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,697 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,698 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,698 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,699 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,699 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,701 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,701 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,702 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,703 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:26:36,706 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,707 [1520] DEBUG metrics - Prepared sql query parameters : [22,61,63,65,66,85] +01/30/13 11:26:36,730 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,730 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:26:36,733 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,734 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,734 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,734 [1520] DEBUG metrics - Prepared sql query parameters : [27] +01/30/13 11:26:36,735 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,736 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,736 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,736 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,738 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,738 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,794 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,794 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:26:36,797 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,797 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,797 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,797 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:36,800 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,800 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,800 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,800 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:26:36,802 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,802 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,846 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:36,846 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:26:36,849 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:36,849 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:26:36,852 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:36,852 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:26:36,855 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:26:36) method ... +01/30/13 11:26:36,856 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:26:36,856 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,856 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,865 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:36,865 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,865 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,865 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:36,868 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:36,868 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:36,870 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:26:36,870 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,871 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,871 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:26:36,875 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,875 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,876 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,876 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,876 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,876 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,877 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,877 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,877 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,877 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,877 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,878 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,878 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,878 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,878 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,878 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,879 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,879 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,879 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,879 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,880 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,880 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,880 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,880 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,880 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,881 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,882 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,882 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:26:36,882 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:26:36,882 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:36,883 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:36,890 [1520] DEBUG metrics - query being executed : SELECT vtiger_salesorder.salesorderid, vtiger_salesorder.subject, vtiger_salesorder.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_salesorder.salesorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_salesorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_salesorder.salesorderid > 0 LIMIT 5 +01/30/13 11:26:36,894 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:26:36,894 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:26:36,894 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:26:36,894 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:26:36,894 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,894 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Entering getURLstring(SalesOrder) method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:36,895 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:36,896 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:36,897 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:36,897 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,897 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:26:36,897 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:36,897 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,898 [1520] DEBUG metrics - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:26:36,898 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:36,899 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,899 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:36,899 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:36,903 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:36,903 [1520] DEBUG metrics - Prepared sql query parameters : [10] +01/30/13 11:26:36,905 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:26:36,906 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:36,908 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:36,909 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,909 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:36,909 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:26:36,911 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:36,912 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,912 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:36,912 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:26:36,920 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,920 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,920 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:36,920 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:36,920 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,920 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,921 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,921 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,921 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:26:36,921 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:26:36,924 [1520] DEBUG metrics - Entering getCvIdOfAll(Invoice) +01/30/13 11:26:36,924 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:26:36,924 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:26:36,926 [1520] DEBUG metrics - Exiting getCvIdOfAll(Invoice) +01/30/13 11:26:36,927 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,927 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,927 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,927 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:26:36,929 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,929 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,929 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:36,929 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:26:36,931 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:36,931 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,932 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:36,933 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,933 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:36,933 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:36,933 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:36,933 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:26:36,938 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:36,938 [1520] DEBUG metrics - Prepared sql query parameters : [23,67,69,71,72] +01/30/13 11:26:36,951 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,951 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:26:36,956 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,956 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:36,956 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:36,956 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:36,958 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:36,958 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,031 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,031 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:26:37,033 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,034 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,034 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,034 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:37,036 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,037 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,037 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,037 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:26:37,039 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,040 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,040 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:37,041 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,043 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:37,043 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,046 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:37,046 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,048 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,048 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:37,057 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:37,057 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,057 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,057 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:37,060 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:37,060 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:37,062 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:37,062 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,063 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,063 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:37,065 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,065 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,065 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,065 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,066 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,066 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,066 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,066 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,066 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,067 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,067 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,067 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,067 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,067 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,068 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,068 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,068 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,068 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,068 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,068 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,068 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,068 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,069 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,069 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,069 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,069 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,070 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,070 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,070 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,070 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,071 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,071 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,071 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:37,073 [1520] DEBUG metrics - query being executed : SELECT vtiger_invoice.invoiceid, vtiger_invoice.subject, vtiger_invoice.salesorderid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_invoice.invoiceid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_invoice.invoicestatus <> 'Paid') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_invoice.invoiceid > 0 LIMIT 5 +01/30/13 11:26:37,075 [1520] DEBUG metrics - Entering getNavigationValues(1,4,20) method ... +01/30/13 11:26:37,076 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:26:37,076 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:26:37,076 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:26:37,076 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:26:37,076 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,076 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,076 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,076 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Entering getURLstring(Invoice) method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,077 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,078 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,079 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,079 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,079 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:26:37,079 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,079 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,079 [1520] DEBUG metrics - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:26:37,080 [1520] DEBUG metrics - Entering getEntityName(SalesOrder) method ... +01/30/13 11:26:37,080 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,080 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:26:37,082 [1520] DEBUG metrics - Prepared sql query being executed : SELECT subject,salesorderid FROM vtiger_salesorder WHERE salesorderid IN (?,?) +01/30/13 11:26:37,082 [1520] DEBUG metrics - Prepared sql query parameters : [79,83] +01/30/13 11:26:37,084 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:37,085 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,085 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:37,085 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:37,091 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,091 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,091 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,092 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,092 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,092 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,093 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:37,093 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:37,093 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,093 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:37,093 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,093 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,093 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,094 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,094 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:37,095 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,097 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,097 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,097 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,098 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,098 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,098 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,098 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:37,098 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:26:37,099 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,099 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,099 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,099 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,100 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,104 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,104 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,104 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:37,104 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:37,104 [1520] DEBUG metrics - Prepared sql query parameters : [89] +01/30/13 11:26:37,107 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,107 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,107 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:37,108 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:37,108 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,108 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,109 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,109 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,109 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:37,110 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,111 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,111 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,112 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,112 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,112 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:37,113 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,113 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,114 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,119 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,119 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,119 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:37,119 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:37,119 [1520] DEBUG metrics - Prepared sql query parameters : [90] +01/30/13 11:26:37,121 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,121 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,121 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,122 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,122 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,122 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,122 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:37,122 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:37,123 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,123 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:37,123 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,123 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,123 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,124 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,124 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:37,124 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,126 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,126 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,126 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,127 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,127 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,127 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,127 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:37,127 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:26:37,128 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,128 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,128 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,128 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,129 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,133 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,133 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,133 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:37,133 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:37,133 [1520] DEBUG metrics - Prepared sql query parameters : [91] +01/30/13 11:26:37,135 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,135 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,135 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,136 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,136 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,136 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,136 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:37,136 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:37,137 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,137 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:37,137 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,137 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,137 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,138 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,138 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:37,138 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,140 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,140 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,140 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,141 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,141 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,141 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,141 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:37,141 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:26:37,142 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,142 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,142 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,142 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,143 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,147 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:37,147 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,147 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:37,147 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:37,147 [1520] DEBUG metrics - Prepared sql query parameters : [92] +01/30/13 11:26:37,151 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:37,151 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:26:37,154 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:26:37,154 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,155 [1520] DEBUG metrics - Entering getNewLeads() method ... +01/30/13 11:26:37,155 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:37,155 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,155 [1520] DEBUG metrics - Prepared sql query being executed : select lead_view from vtiger_users where id =? +01/30/13 11:26:37,155 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:37,157 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 00:00:00) method ... +01/30/13 11:26:37,157 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:26:37,157 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:37,157 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:26:37,158 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:37,158 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:26:37,158 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.firstname, vtiger_leaddetails.lastname, vtiger_leaddetails.leadid, vtiger_leaddetails.company + from vtiger_leaddetails inner join vtiger_crmentity on vtiger_leaddetails.leadid = vtiger_crmentity.crmid + where vtiger_crmentity.deleted =0 AND vtiger_leaddetails.converted =0 AND vtiger_leaddetails.leadid > 0 AND + vtiger_leaddetails.leadstatus not in ("Lost Lead", "Junk Lead","丢失的潜在客户","没有潜在价值") + AND vtiger_crmentity.createdtime >=? AND vtiger_crmentity.smownerid = ? LIMIT 0,5 +01/30/13 11:26:37,158 [1520] DEBUG metrics - Prepared sql query parameters : [2013-01-30 00:00:00,1] +01/30/13 11:26:37,161 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,161 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:37,163 [1520] DEBUG metrics - Exiting getNewLeads method ... +01/30/13 11:26:37,165 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:37,165 [1520] DEBUG metrics - Prepared sql query parameters : [12] +01/30/13 11:26:37,167 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:26:37,168 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,170 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:37,170 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,170 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,170 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:26:37,172 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,172 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,173 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,173 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,173 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,173 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,173 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:37,173 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,179 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,179 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,180 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:26:37,180 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,183 [1520] DEBUG metrics - Entering getCvIdOfAll(PurchaseOrder) +01/30/13 11:26:37,183 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:26:37,183 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:26:37,185 [1520] DEBUG metrics - Exiting getCvIdOfAll(PurchaseOrder) +01/30/13 11:26:37,185 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,185 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,185 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,185 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,187 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,187 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,187 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,187 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:26:37,189 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:26:37,189 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,190 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:37,191 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:26:37,194 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:37,194 [1520] DEBUG metrics - Prepared sql query parameters : [21,55,57,59,60] +01/30/13 11:26:37,211 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,211 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:37,213 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,213 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,213 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,213 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:26:37,214 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,214 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,272 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,272 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:26:37,274 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,274 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,275 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,275 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:26:37,277 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:26:37,277 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:26:37,278 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:37,278 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:26:37,281 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:37,281 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:26:37,284 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:37,284 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:26:37,286 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:26:37) method ... +01/30/13 11:26:37,287 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:26:37,287 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,287 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:37,295 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:26:37,296 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,296 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,296 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:26:37,298 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:37,299 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:26:37,301 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,301 [1520] DEBUG metrics - Prepared sql query parameters : [Vendors] +01/30/13 11:26:37,308 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:26:37,308 [1520] DEBUG metrics - Entering getColumnFields(Vendors) method ... +01/30/13 11:26:37,309 [1520] DEBUG metrics - in getColumnFields Vendors +01/30/13 11:26:37,309 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:26:37,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,309 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:26:37,309 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,310 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:37,310 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:26:37,316 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:26:37,316 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,316 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,317 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:26:37,317 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:26:37,317 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,317 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:26:37,317 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,317 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,318 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:26:37,320 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,320 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,320 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,320 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,321 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,321 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,321 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,321 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,321 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,322 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,322 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,322 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,322 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,322 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,323 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,323 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,323 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,323 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,323 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,324 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,324 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,324 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,324 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,324 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,325 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,326 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,326 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,326 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:26:37,326 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:26:37,327 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:37,327 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:26:37,329 [1520] DEBUG metrics - query being executed : SELECT vtiger_purchaseorder.purchaseorderid, vtiger_purchaseorder.subject, vtiger_purchaseorder.vendorid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_purchaseorder.purchaseorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_purchaseorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_purchaseorder.purchaseorderid > 0 LIMIT 5 +01/30/13 11:26:37,332 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:26:37,332 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:26:37,332 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:26:37,333 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:26:37,333 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,333 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,333 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:26:37,334 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:26:37,335 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:37,336 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:26:37,337 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:37,337 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,337 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:26:37,337 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:37,337 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,337 [1520] DEBUG metrics - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:26:37,338 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:37,338 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:26:37,338 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:37,339 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:26:37,342 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:37,342 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:26:37,344 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:26:37) method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:26:37,345 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:26:37,346 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,346 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:26:37,347 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,347 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:26:37,347 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:26:37,347 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:26:37,347 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and (vtiger_activity.activitytype not in ('Emails')) AND (vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and (vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held')) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:26:37,353 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:37,353 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:26:37,357 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:37,357 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:37,357 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:37,358 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:37,358 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:26:37,358 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:26:37,358 [1520] DEBUG index - in CalendarAjax +01/30/13 11:26:37,358 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:26:37,358 [1520] INFO index - current module is Calendar +01/30/13 11:26:37,404 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:37,404 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:37,404 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:37,404 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,404 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,405 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,405 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,405 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:37,405 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:37,414 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,414 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,414 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:37,414 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:37,415 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:37,415 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:37,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,416 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:37,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,416 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:37,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,417 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:37,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,417 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:37,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,418 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:37,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,419 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:37,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,419 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:37,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,420 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:37,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,420 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:37,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,421 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:37,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,421 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:37,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,422 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:37,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,422 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:37,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,423 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:37,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,423 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:37,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,424 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:37,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,424 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:37,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,425 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:37,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,425 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:37,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,426 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:37,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,426 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,427 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:37,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,428 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:37,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,428 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:37,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,429 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:37,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,429 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:37,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,430 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:37,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,430 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:37,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,431 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:37,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,431 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:37,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,432 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:37,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,432 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,433 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,433 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,434 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,434 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,435 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,435 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,436 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,436 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:37,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,437 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:37,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,437 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:37,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,438 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:37,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,439 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:37,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,439 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:37,439 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:37,439 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:37,440 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:37,440 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:37,441 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:37,441 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:37,443 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:37,443 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:37,445 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:37,445 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:37,446 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:37,446 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:37,446 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:37,446 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:37,446 [1520] DEBUG index - skipping headers +01/30/13 11:26:37,447 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:26:37,448 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:37,452 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:37,453 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:26:37,453 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:26:37,453 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:26:37,457 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:27')) +01/30/13 11:26:37,462 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:26:37,467 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:37,467 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:37,468 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:37,469 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:37,470 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":14,"widgetType":"Default"}]', +) +01/30/13 11:26:37,470 [1520] INFO index - About to take action HomeAjax +01/30/13 11:26:37,470 [1520] DEBUG index - in HomeAjax +01/30/13 11:26:37,470 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:26:37,470 [1520] INFO index - current module is Home +01/30/13 11:26:37,548 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:37,549 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:37,549 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:37,549 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,550 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,550 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,550 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:37,550 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:37,563 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:37,563 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,563 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:37,563 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:37,564 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:37,565 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:37,565 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,566 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:37,566 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,566 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:37,567 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,567 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:37,568 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,568 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:37,569 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,569 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:37,570 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,570 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:37,571 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,571 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:37,572 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,572 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:37,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,573 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:37,573 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,573 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:37,574 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,574 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:37,575 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,575 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:37,576 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,576 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:37,577 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,577 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:37,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,578 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:37,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,579 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:37,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,580 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:37,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,580 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:37,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,581 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:37,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,582 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:37,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,583 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:37,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,584 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:37,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,585 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:37,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,585 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:37,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,586 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:37,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,587 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:37,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,587 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:37,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,588 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:37,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,589 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:37,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,590 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:37,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,591 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:37,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,592 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:37,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,593 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:37,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,593 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:37,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,594 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:37,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,595 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:37,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,596 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:37,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,597 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:37,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,598 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:37,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,599 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:37,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,600 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:37,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,600 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:37,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,602 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:37,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,603 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:37,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,604 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:37,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,605 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:37,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,605 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:37,625 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:37,625 [1520] DEBUG index - Prepared sql query parameters : [273,1,Home,HomeAjax,,2013-01-30 11:26:37] +01/30/13 11:26:37,634 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:37,634 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:37,634 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:37,634 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:37,636 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:37,637 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:37,641 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:37,641 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:37,645 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:37,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:26:37,647 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:37,647 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:37,647 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:37,647 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:37,647 [1520] DEBUG index - skipping headers +01/30/13 11:26:37,675 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:26:37,675 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:26:37,680 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:26:37,680 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:37,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:37,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:37,688 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,688 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:26:37,692 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:37,692 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:37,692 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:37,692 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,692 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,692 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,692 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:37,692 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:26:37,698 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,698 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,698 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:37,698 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:37,698 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,698 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,699 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:37,699 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:37,699 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:37,699 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,699 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,699 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:37,699 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:37,699 [1520] DEBUG index - Entering getCvIdOfAll(Faq) +01/30/13 11:26:37,699 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:26:37,699 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:26:37,703 [1520] DEBUG index - Exiting getCvIdOfAll(Faq) +01/30/13 11:26:37,704 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,704 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,704 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:26:37,706 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,706 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,706 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:37,706 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:26:37,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,709 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:37,710 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:37,710 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:26:37,716 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?) and displaytype in (1,2,3,4) +01/30/13 11:26:37,716 [1520] DEBUG index - Prepared sql query parameters : [15,37] +01/30/13 11:26:37,723 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:26:37,727 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:37,727 [1520] DEBUG index - Prepared sql query parameters : [33] +01/30/13 11:26:37,731 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,732 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,733 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:37,734 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,735 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,736 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:37,737 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,739 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:37,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:37,740 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:37,740 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:26:37,743 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:37,743 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,743 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:26:37,758 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:37,758 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:37,802 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,802 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:26:37,804 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,805 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:26:37,806 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,807 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:26:37,808 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,808 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:26:37,818 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:37,818 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:26:37,868 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,868 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:26:37,870 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,871 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:26:37,873 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,873 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:26:37,878 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,878 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:26:37,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,880 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:26:37,882 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,883 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:26:37,885 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,885 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:26:37,889 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,890 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:26:37,891 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,892 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:26:37,895 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:37,895 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:26:37,929 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,929 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:26:37,931 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,931 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:26:37,938 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,938 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:26:37,941 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,941 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:26:37,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:26:37,944 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:37,946 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,946 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:26:37,948 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:37,948 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:26:37,953 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:37,953 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:26:37,986 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,986 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:26:37,989 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,989 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:26:37,991 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,991 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:26:37,993 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,993 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:26:37,994 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,994 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:26:37,996 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,996 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:26:37,997 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,997 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:26:37,999 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:37,999 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:26:38,001 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:38,001 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:26:38,003 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:38,003 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:26:38,005 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:38,005 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:26:38,007 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:38,007 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:26:38,008 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:38,012 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:38,012 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:38,014 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:38,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:38,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,016 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:38,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:38,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,016 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:26:38,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:38,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,017 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:38,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:38,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,018 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:26:38,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,018 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,018 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:26:38,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:38,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,019 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:38,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:38,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,020 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:26:38,020 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:38,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,021 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:38,021 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:38,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,021 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:38,021 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:38,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,022 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:38,022 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:38,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,022 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:26:38,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:38,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,024 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:38,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:38,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,024 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:26:38,024 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:38,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,025 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:38,025 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:38,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,025 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:26:38,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:38,026 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,026 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:38,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:38,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,027 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:26:38,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:38,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,028 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:38,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:38,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,028 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:26:38,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:38,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,029 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:38,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:38,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,029 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:38,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:38,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,030 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:38,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:38,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,030 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:26:38,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:38,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,031 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:38,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:38,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,032 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:26:38,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,032 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,033 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:26:38,033 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:38,033 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,034 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:38,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:38,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,034 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:26:38,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:38,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,035 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:26:38,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:38,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,035 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:26:38,035 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:38,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,036 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:38,036 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:38,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,036 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:26:38,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:38,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,036 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:26:38,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:38,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,037 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:26:38,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:38,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,038 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:26:38,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:38,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,038 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:26:38,039 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:38,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,039 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:38,039 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:38,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,040 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:26:38,040 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:38,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,041 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:26:38,041 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:38,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,041 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:26:38,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:38,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,042 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:38,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:38,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,042 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:26:38,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:38,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,043 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:38,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:38,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,043 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:26:38,044 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:38,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,044 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:26:38,044 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:38,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,045 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:26:38,045 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:38,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,045 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:38,045 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:38,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,046 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:26:38,046 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:38,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,046 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:38,046 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:38,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,047 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:26:38,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:38,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,047 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:38,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:38,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,048 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:26:38,048 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:38,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,048 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:38,048 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:38,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,049 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:26:38,049 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:38,049 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:38,086 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:38,086 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:26:38,088 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:38,088 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:38,089 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:38,090 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:26:38,093 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:38,093 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:26:38,095 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:38,095 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:26:38,107 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:38,107 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:26:38,110 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:26:38,111 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:26:38,111 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:26:38,111 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:38,111 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,111 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:38,111 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,112 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:38,112 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:26:38,120 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:38,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,120 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:38,120 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:26:38,120 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:38,120 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,121 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:38,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,121 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:38,121 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:26:38,124 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:38,124 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:38,124 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:38,124 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,124 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:38,124 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:38,125 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:38,125 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:38,125 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:38,125 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,125 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,125 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:38,125 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:38,125 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:38,125 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:38,125 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:38,125 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,126 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:38,126 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:38,126 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:26:38,126 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:26:38,126 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:26:38,126 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,126 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,126 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:38,126 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:26:38,127 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,128 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,128 [1520] DEBUG index - query being executed : SELECT vtiger_faq.id, vtiger_faq.question, vtiger_faq.product_id FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_faq.id = vtiger_crmentity.crmid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_faq.status <> 'Obsolete') )) AND vtiger_faq.id > 0 LIMIT 0,5 +01/30/13 11:26:38,142 [1520] DEBUG index - Entering getNavigationValues(1,5,20) method ... +01/30/13 11:26:38,142 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:26:38,142 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:26:38,142 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:26:38,142 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:38,142 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:38,143 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,143 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,143 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,145 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,145 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:26:38,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,146 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,146 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:26:38,146 [1520] DEBUG index - Entering getEntityName(Products) method ... +01/30/13 11:26:38,146 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:38,147 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:26:38,149 [1520] DEBUG index - Prepared sql query being executed : SELECT productname,productid FROM vtiger_products WHERE productid IN (?,?,?,?,?) +01/30/13 11:26:38,149 [1520] DEBUG index - Prepared sql query parameters : [52,53,54,55,56] +01/30/13 11:26:38,151 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:38,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,152 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:38,153 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:38,154 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,155 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,155 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,157 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,157 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,157 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,157 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,157 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,158 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,160 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,160 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:38,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,162 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,162 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,162 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,164 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,165 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:38,165 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:26:38,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,166 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,166 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,166 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,168 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,173 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:38,173 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:38,173 [1520] DEBUG index - Prepared sql query parameters : [62] +01/30/13 11:26:38,175 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,175 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,175 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,177 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,177 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,178 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,178 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,178 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,178 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,180 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,180 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:38,181 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,182 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,182 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,182 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,184 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,185 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:38,185 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:26:38,186 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,186 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,186 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,186 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,188 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,192 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:38,192 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:38,192 [1520] DEBUG index - Prepared sql query parameters : [63] +01/30/13 11:26:38,194 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,195 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,195 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,197 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,197 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,197 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,197 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,199 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,200 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:38,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,202 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,202 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,202 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,204 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,204 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:38,204 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:26:38,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,205 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,205 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,206 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,207 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,212 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,212 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:38,212 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:38,212 [1520] DEBUG index - Prepared sql query parameters : [64] +01/30/13 11:26:38,214 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,214 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,214 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,216 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,216 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,217 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,217 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,217 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,217 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,219 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,219 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:38,220 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,221 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,221 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,222 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,223 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,224 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:38,224 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:26:38,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,225 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,225 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,225 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,227 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,231 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:38,231 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:38,231 [1520] DEBUG index - Prepared sql query parameters : [65] +01/30/13 11:26:38,233 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,233 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,234 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,235 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,236 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:38,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:38,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,236 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:38,236 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,236 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,236 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,238 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,238 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:38,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,241 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,241 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,241 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,243 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,243 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,243 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:38,243 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:26:38,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:38,244 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:38,244 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:38,244 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:26:38,246 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:38,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:38,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:38,250 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:38,250 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:38,250 [1520] DEBUG index - Prepared sql query parameters : [66] +01/30/13 11:26:53,895 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:26:54,030 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:26:54,030 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:26:54,030 [1520] DEBUG index - ****Starting for new session +01/30/13 11:26:54,031 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:26:54,031 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:26:54,031 [1520] INFO index - About to take action index +01/30/13 11:26:54,031 [1520] DEBUG index - in index +01/30/13 11:26:54,031 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:26:54,031 [1520] INFO index - current module is Accounts +01/30/13 11:26:54,069 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:54,069 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:54,069 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:54,069 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,070 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,070 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:54,070 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:54,083 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,083 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,084 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,084 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:54,084 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:54,085 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:54,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,085 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:54,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,086 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:54,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,086 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:54,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,087 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:54,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,087 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:54,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,088 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:54,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,088 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:54,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,089 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:54,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,089 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:54,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,090 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:54,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,090 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:54,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,091 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:54,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,091 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:54,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,092 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:54,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,092 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:54,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,093 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:54,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,093 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:54,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,094 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:54,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,094 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:54,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,095 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:54,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,095 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,096 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:54,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,097 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:54,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,097 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:54,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,098 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:54,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,098 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:54,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,099 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:54,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,099 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:54,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,100 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:54,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,100 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:54,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,101 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:54,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,101 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:54,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,102 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:54,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,102 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:54,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,103 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:54,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,103 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:54,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,104 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:54,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,104 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:54,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,105 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:54,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,105 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:54,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,106 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:54,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,106 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:54,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,107 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:54,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,107 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:54,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,108 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:54,122 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:26:54,122 [1520] DEBUG index - Prepared sql query parameters : [274,1,Accounts,index,,2013-01-30 11:26:54] +01/30/13 11:26:54,125 [1520] DEBUG index - Current user is: admin +01/30/13 11:26:54,125 [1520] DEBUG index - Current theme is: softed +01/30/13 11:26:54,125 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:26:54,125 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:26:54,127 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:26:54,127 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:54,129 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:54,129 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:54,131 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:54,131 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,131 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,131 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:26:54,131 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:26:54,132 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:26:54,132 [1520] DEBUG index - including headers +01/30/13 11:26:54,132 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,132 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,136 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:54,136 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:54,138 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:26:54,139 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:26:54,139 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,139 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:26:54,140 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,140 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:26:54,140 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,140 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:26:54,141 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,141 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:26:54,141 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,141 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:26:54,142 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:26:54,143 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:26:54,143 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:26:54,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,151 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:54,151 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,152 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:54,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,153 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:26:54,153 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:26:54,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,154 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:26:54,154 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:26:54,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:54,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,156 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:26:54,156 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:26:54,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,157 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:54,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,157 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:26:54,157 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:26:54,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:54,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,159 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:26:54,159 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:26:54,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:54,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,160 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:26:54,160 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:26:54,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:26:54,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,161 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:26:54,161 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:26:54,162 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,162 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:54,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,162 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:26:54,162 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:26:54,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:54,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,164 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:26:54,164 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:26:54,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:54,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,165 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:26:54,165 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:26:54,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,166 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:54,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,166 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:26:54,166 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:26:54,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:54,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,167 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:26:54,168 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:26:54,168 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:54,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,169 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:26:54,169 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:26:54,169 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,169 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:54,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,170 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:26:54,170 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:26:54,171 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,171 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:54,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,171 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:26:54,171 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:26:54,172 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,172 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:54,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,173 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:26:54,173 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:26:54,173 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:54,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,174 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:26:54,174 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:26:54,175 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:54,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,175 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:26:54,176 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:26:54,176 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,176 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:26:54,176 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:26:54) method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:26:54) method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,177 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,178 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,178 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:26:54,178 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:26:54,178 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:26:54,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,184 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,185 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,186 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,187 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,188 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,190 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,191 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,191 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,191 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:26:54,196 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:54,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,196 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:54,196 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:54,200 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,200 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,200 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:26:54,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,201 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:26:54,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,201 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:26:54,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,201 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:26:54,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,202 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,202 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,203 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:26:54,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,203 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:26:54,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,204 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:26:54,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,205 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:54,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,205 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:26:54,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,206 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:26:54,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,206 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,207 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:26:54,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,208 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:26:54,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,208 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:26:54,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,209 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:26:54,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,209 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:54,209 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,210 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:26:54,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,210 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:54,210 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,210 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:26:54,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,211 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:54,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,211 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:26:54,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,212 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:26:54,212 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,212 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:26:54,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,213 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:26:54,213 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:26:54,213 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:54,217 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:26:54,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,218 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:26:54,218 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,219 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:26:54,219 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,219 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:26:54,220 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,220 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:26:54,221 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,221 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:54,221 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:26:54,223 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:26:54,223 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,224 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:26:54,224 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:26:54,227 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:26:54,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,234 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,235 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:54,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:54,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,235 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:54,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,235 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:54,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,236 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:54,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:54,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,236 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:54,236 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:54,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,236 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:54,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:54,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,237 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:54,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:54,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,237 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:26:54,238 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:54,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,238 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:54,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:26:54,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,238 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:26:54,241 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:54,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,241 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:54,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:26:54,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,242 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:26:54,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:26:54,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,242 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:26:54,242 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:26:54,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,243 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:26:54,243 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:54,243 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,243 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:54,243 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:54,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,244 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:26:54,244 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:26:54,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,244 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:26:54,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:26:54,245 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,245 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:26:54,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:26:54,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,246 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:26:54,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:54,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,246 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:54,246 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:54,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,246 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:26:54,246 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:54,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,247 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:54,247 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:54,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,247 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:54,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:54,247 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,247 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:54,247 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:54,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,248 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:54,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:54,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,248 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:54,248 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:54,248 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,249 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:54,249 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:54,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,249 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:54,249 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:54,249 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,250 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:54,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:54,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,250 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:54,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:54,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,251 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:54,251 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:54,251 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,251 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:54,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:54,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,252 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:54,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,253 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:26:54,253 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:54,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,258 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,258 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,258 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,258 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,259 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:26:54,259 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,259 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:26:54,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,260 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:26:54,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,261 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:26:54,261 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,261 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:26:54,262 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,262 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:26:54,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,263 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:54,263 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,263 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:26:54,264 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,264 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:26:54,264 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,264 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,264 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,265 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,265 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:26:54,265 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:54,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,274 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,274 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:26:54,274 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,275 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:26:54,275 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:26:54,279 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:26:54,279 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,279 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,279 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,280 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:26:54,281 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:26:54,282 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:54,282 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:26:54,282 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:26:54,283 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:26:54,283 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:26:54,283 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:26:54,286 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:54,286 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:54,288 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:54,288 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:54,290 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:54,290 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:26:54,291 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:26:54,292 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:26:54,292 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:26:54,294 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:26:54,294 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:26:54,294 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:26:54,294 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:26:54,296 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:54,296 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:26:54,297 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,297 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:26:54,300 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,300 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,300 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,300 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,300 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,301 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,302 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,302 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =? +01/30/13 11:26:54,302 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:26:54,304 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where setdefault=1 and entitytype=? +01/30/13 11:26:54,304 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:26:54,306 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:26:54,307 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:26:54,307 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,310 [1520] DEBUG index - Entering when status=0 +01/30/13 11:26:54,310 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:26:54,311 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:26:54,311 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,311 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,311 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:26:54,311 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:54,314 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,315 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:26:54,315 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,317 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:26:54,317 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:26:54,319 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:26:54,320 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,320 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:26:54,320 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:26:54,320 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:26:54,321 [1520] DEBUG index - Entering when status=0 +01/30/13 11:26:54,321 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:26:54,321 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:26:54,321 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:26:54,321 [1520] DEBUG index - Entering when status=0 +01/30/13 11:26:54,321 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:26:54,321 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:26:54,322 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,322 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,322 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:54,322 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:54,324 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,324 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,324 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:54,324 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:54,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:26:54,327 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,328 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:26:54,328 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:26:54,333 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:26:54,333 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:26:54,351 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:26:54,355 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:54,355 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:26:54,357 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:26:54,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,359 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,360 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,361 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:26:54,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:26:54,363 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,364 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,365 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:26:54,366 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:54,366 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:26:54,366 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:26:54,369 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:26:54,369 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,369 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:26:54,373 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:54,373 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:54,414 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,414 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:26:54,416 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,416 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:26:54,418 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,418 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:26:54,421 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,421 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:26:54,423 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:54,423 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:26:54,470 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,470 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:26:54,472 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,472 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:26:54,474 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,474 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:26:54,476 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,477 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:26:54,478 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,479 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:26:54,481 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,481 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:26:54,483 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,483 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:26:54,485 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,485 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:26:54,487 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,487 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:26:54,489 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:54,490 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:26:54,523 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,523 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:26:54,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,526 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:26:54,528 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,528 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:26:54,530 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,530 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:26:54,532 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:26:54,533 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:54,534 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,535 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:26:54,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,537 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:26:54,540 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:26:54,540 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:26:54,572 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,572 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:26:54,574 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,574 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:26:54,576 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,576 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:26:54,578 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,579 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:26:54,581 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,581 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:26:54,583 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,583 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:26:54,586 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,586 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:26:54,588 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,589 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:26:54,591 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,591 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:26:54,593 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,594 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:26:54,596 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,596 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:26:54,598 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:26:54,598 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:26:54,600 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:26:54,605 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:26:54,605 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:26:54,608 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:26:54,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:54,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,610 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:26:54,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:26:54,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,610 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:26:54,610 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:54,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,611 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:26:54,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:26:54,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,611 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:26:54,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:54,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,612 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:26:54,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:26:54,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,612 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:26:54,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:54,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,613 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:26:54,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:26:54,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,613 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:26:54,613 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:54,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,614 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:54,614 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:26:54,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,614 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:26:54,614 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:54,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,615 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:26:54,615 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:26:54,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,615 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:26:54,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:54,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,616 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:26:54,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:26:54,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,616 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:26:54,617 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:54,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,617 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:26:54,617 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:26:54,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,617 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:26:54,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,618 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:26:54,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,618 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:26:54,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:54,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,619 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:26:54,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:26:54,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,619 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:26:54,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,620 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,621 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:26:54,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:54,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,621 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:26:54,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:26:54,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:26:54,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:54,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,622 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:26:54,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:26:54,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,623 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:26:54,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:54,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,623 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:26:54,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:26:54,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,624 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:26:54,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:54,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,624 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:26:54,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:26:54,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,625 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:26:54,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:54,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,625 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:26:54,625 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:26:54,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,626 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:26:54,626 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:54,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,626 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:26:54,626 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:26:54,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,627 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:26:54,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,627 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:26:54,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:26:54,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,628 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:26:54,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:54,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,630 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:26:54,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:26:54,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,631 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:26:54,631 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:54,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,631 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:26:54,631 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:26:54,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,632 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:26:54,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:54,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,632 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:26:54,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:26:54,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,633 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:26:54,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:54,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,633 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:26:54,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:26:54,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,634 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:26:54,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:54,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,634 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:26:54,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:26:54,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,635 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:26:54,635 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:54,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,635 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:26:54,635 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:26:54,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,636 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:26:54,636 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:54,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,636 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:26:54,636 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:26:54,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,636 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:26:54,636 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:54,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,636 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:26:54,637 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:26:54,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,637 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:26:54,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:54,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,637 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:26:54,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:26:54,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,637 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:26:54,637 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:54,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,637 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:26:54,638 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:26:54,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,638 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:26:54,638 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,687 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:26:54,688 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:26:54,690 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:54,690 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:54,691 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:26:54,691 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,695 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:26:54,695 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,697 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:26:54,698 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,700 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:26:54,700 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:54,703 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:26:54,703 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:26:54,703 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:26:54,704 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,704 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,704 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,704 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:26:54,704 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,705 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:26:54,705 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,705 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:26:54,705 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:26:54,707 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:26:54,708 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:54,712 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,712 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,712 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,712 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,713 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,713 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,713 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,713 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,713 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,714 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,714 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,714 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,714 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,714 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,715 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,715 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,715 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,715 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,715 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,716 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,716 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,716 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,716 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,716 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,717 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,717 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,717 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,717 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,718 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,718 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,718 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,718 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,718 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,719 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,719 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,720 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,720 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,721 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:26:54,724 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:26:54,727 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,727 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,727 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,728 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,729 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:26:54,729 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:26:54,729 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,729 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,730 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,730 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,730 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,731 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,731 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:26:54,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,732 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:26:54,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,732 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:26:54,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,732 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:26:54,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,733 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:26:54,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,733 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:26:54,733 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,734 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:26:54,735 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:26:54,735 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:26:54,735 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:26:54,737 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:26:54,737 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:26:54,739 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:26:54,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,740 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:26:54,740 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:54,742 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,743 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,743 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,743 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,744 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,744 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,744 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,745 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,745 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,745 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,745 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,746 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,746 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,747 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,747 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,747 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,748 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,748 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,748 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,748 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,749 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,749 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,749 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,749 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,750 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,750 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,751 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,751 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,751 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,751 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,752 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,752 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,752 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,753 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,753 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,753 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,754 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,757 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,758 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,758 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,758 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,758 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,758 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,758 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,758 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,758 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:26:54,760 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,761 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,761 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,761 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,761 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,762 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,762 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,762 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,762 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,763 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,763 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,763 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,763 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,763 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,764 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,764 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,764 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,764 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,765 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,765 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,765 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,765 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,766 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,766 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,766 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,766 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,766 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,767 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,767 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,767 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,768 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,768 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,768 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,768 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,769 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,769 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,769 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,769 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,773 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,773 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,773 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,773 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,773 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,773 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,773 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,774 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:26:54,776 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,776 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,776 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,777 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,777 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,777 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,777 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,778 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,778 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,778 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,778 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,778 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,779 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,779 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,779 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,779 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,780 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,780 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,780 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,780 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,781 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,781 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,781 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,781 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,782 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,782 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,782 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,784 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,784 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,784 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,784 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,784 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,784 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,785 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,788 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,788 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,788 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,789 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,789 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,789 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,789 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:54,791 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,791 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,792 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,792 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,792 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,793 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,793 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,793 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,794 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,794 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,794 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,794 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,795 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,795 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,795 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,795 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,796 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,796 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,796 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,796 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,796 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,797 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,797 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,797 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,797 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,798 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,798 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,798 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,799 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,799 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,799 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,800 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,800 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,800 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,800 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,800 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,804 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,804 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,804 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,804 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,804 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,804 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,805 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,805 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:26:54,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,807 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,808 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,808 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,808 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,809 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,809 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,809 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,809 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,810 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,810 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,810 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,810 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,811 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,811 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,811 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,811 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,812 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,812 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,812 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,812 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,813 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,813 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,813 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,814 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,814 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,814 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,814 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,814 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,815 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,815 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,815 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,815 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,815 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,815 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,816 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,819 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,819 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,819 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,819 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,820 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,820 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,820 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,820 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,820 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,820 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:26:54,823 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,823 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,823 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,824 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,824 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,824 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,824 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,825 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,825 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,825 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,825 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,825 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,826 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,826 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,827 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,827 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,827 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,827 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,828 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,828 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,828 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,828 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,829 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,829 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,829 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,829 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,830 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,830 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,830 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,831 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,831 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,831 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,831 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,831 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,831 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,832 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,835 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,835 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,835 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,835 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,836 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,836 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,836 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:26:54,838 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,838 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,839 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,839 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,839 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,839 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,840 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,840 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,841 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,841 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,841 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,841 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,842 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,842 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,842 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,842 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,843 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,843 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,843 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,843 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,844 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,844 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,845 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,845 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,845 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,845 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,846 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,846 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,846 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,846 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,847 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,847 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,847 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,850 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,850 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,850 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,851 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,851 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,851 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,851 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:26:54,853 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,853 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,854 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,854 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,855 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,855 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,855 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,856 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,857 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,857 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,857 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,858 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,858 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,859 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,859 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,859 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,859 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,860 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,860 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,860 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,861 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,861 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,861 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,862 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,862 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,862 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,862 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,862 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,865 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,865 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,866 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,866 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,866 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,866 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,866 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:26:54,868 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,868 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,869 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,869 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,870 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,870 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,870 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,871 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,871 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,872 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,872 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,872 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,872 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,873 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,873 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,873 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,874 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,874 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,874 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,874 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,875 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,876 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,876 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,876 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,876 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,877 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,877 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,877 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,877 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,877 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,880 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,881 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,881 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,881 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,881 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,881 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,881 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,881 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:26:54,884 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,884 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,884 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,884 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,885 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,885 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,885 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,885 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,886 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,886 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:54,886 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,886 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,886 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,887 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,887 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,888 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,888 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,888 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,889 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,889 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,889 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,889 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,890 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:26:54,890 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,890 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,890 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,890 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,891 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,891 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,891 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,891 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:26:54,891 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:26:54,892 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:54,892 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:26:54,892 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:26:54,892 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:26:54,893 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:26:54,896 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:26:54,896 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:26:54,896 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,896 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,896 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:26:54,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,896 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:26:54,896 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:26:54,897 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:26:54,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,899 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:26:54,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,899 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:26:54,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,900 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:26:54,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,900 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:26:54,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,900 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:26:54,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,900 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:26:54,900 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:26:54,901 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:26:54,901 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,901 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,901 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:26:54,901 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,901 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,903 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,903 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,903 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,903 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:26:54,904 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,904 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,906 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,906 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,906 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:26:54,906 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,906 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,908 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,908 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:26:54,908 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,909 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,910 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,911 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:26:54,911 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,911 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,913 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,913 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:26:54,913 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,913 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,916 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,917 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:26:54,917 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,917 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,919 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,919 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,919 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:26:54,919 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,919 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,921 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,921 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:26:54,921 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,922 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,923 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,924 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,924 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:26:54,924 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,924 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,926 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,926 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,926 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,926 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:26:54,926 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,926 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,928 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,928 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:26:54,928 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,928 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,930 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,931 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:26:54,931 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,931 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,933 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,933 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:26:54,933 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,933 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,935 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,936 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:26:54,936 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,936 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,938 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,938 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:26:54,938 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,938 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,940 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,940 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:26:54,940 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,940 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,942 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,942 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:26:54,943 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,943 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,944 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,944 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:26:54,944 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,944 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,946 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,946 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:26:54,946 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,946 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,948 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,948 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:26:54,948 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,948 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,954 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,955 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,955 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:26:54,955 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,955 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,957 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,957 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:26:54,957 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,957 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:26:54,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,960 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:26:54,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,960 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:26:54,960 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,960 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,962 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,963 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:26:54,963 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,963 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,965 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,965 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:26:54,965 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,966 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,967 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,967 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:26:54,967 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,968 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,969 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,969 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,969 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:26:54,969 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,969 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,971 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,971 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:26:54,972 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,972 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,973 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,974 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:26:54,974 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,974 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,976 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,976 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:26:54,976 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,976 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,978 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,979 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:26:54,979 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,979 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,981 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,981 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:26:54,981 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,981 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,983 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,983 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:26:54,983 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,983 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,984 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,985 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:26:54,985 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,985 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:26:54,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,986 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:26:54,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,986 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:26:54,987 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:26:54,987 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:26:54,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:54,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:54,988 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:26:54,988 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:26:54,988 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:26:54,989 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,989 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:26:54,989 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:26:54,989 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:26:54,991 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:26:54,991 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:26:54,991 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:26:54,992 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:26:54,994 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:26:54,994 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:26:54,994 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:26:54,994 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:54,994 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:54,994 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:26:54,994 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:26:55,006 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:26:55,006 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:26:55,006 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:55,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,011 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:26:55,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,011 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:26:55,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,011 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:26:55,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,012 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:26:55,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,012 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:26:55,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,012 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:26:55,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,013 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:26:55,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,013 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:26:55,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,013 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:26:55,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,013 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:26:55,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,014 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:26:55,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,014 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:26:55,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,014 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:26:55,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,015 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:26:55,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,015 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:26:55,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,015 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:26:55,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,016 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:26:55,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,016 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:26:55,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,016 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:26:55,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,016 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:26:55,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,017 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:26:55,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,017 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:26:55,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,017 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:26:55,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,018 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:26:55,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,018 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:26:55,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,018 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:26:55,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,018 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:26:55,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,019 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:26:55,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,019 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:26:55,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,019 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:26:55,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,020 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:26:55,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,020 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:26:55,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,020 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:26:55,020 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:55,020 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:55,021 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:26:55,021 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:26:55,023 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:26:55,023 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:26:55,023 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:26:55,023 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:26:55,024 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:26:55,024 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:26:55,024 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:26:55,030 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:26:55,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:26:55,030 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:26:55,031 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:26:55,033 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:26:55,034 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:26:55,034 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:26:55,034 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:26:55,034 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:26:55,037 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:26:55,037 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:26:55,037 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:26:55,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,043 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,043 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:26:55,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,043 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:26:55,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,043 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,044 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,044 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,044 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,045 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,045 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,045 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,046 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,048 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:26:55,048 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:26:55,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,048 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:26:55,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,049 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:26:55,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,049 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:26:55,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,049 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:26:55,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,050 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:26:55,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,050 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:26:55,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,050 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:26:55,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,051 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:26:55,054 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:55,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:55,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,055 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:26:55,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,055 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,055 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:26:55,055 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:26:55,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:26:55,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,056 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:26:55,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:26:55,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:26:55,056 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:26:55,057 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:26:55,057 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:26:55,058 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:06,974 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:27:07,100 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:27:07,100 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:27:07,100 [1520] DEBUG index - ****Starting for new session +01/30/13 11:27:07,101 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:27:07,101 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'accountname', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:27:07,101 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:27:07,101 [1520] DEBUG index - in TooltipAjax +01/30/13 11:27:07,101 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:27:07,101 [1520] INFO index - current module is Tooltip +01/30/13 11:27:07,135 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:27:07,135 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:27:07,135 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:27:07,135 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:07,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:07,136 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:07,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:07,136 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:07,136 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:27:07,144 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:07,144 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:07,145 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:07,145 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:27:07,145 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:27:07,146 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:27:07,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,146 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:27:07,146 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,147 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:27:07,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,147 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:27:07,147 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,148 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:07,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,148 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:27:07,148 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,148 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:27:07,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,149 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:07,149 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,149 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:27:07,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,150 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:27:07,150 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,150 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:27:07,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,151 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:27:07,151 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,151 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:27:07,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,152 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:27:07,152 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,152 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:27:07,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,153 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:27:07,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,153 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:27:07,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,154 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:27:07,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,154 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:27:07,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,155 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:27:07,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,155 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:27:07,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,156 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:27:07,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,156 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:27:07,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,157 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:27:07,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,157 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:27:07,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,157 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:27:07,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,158 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:27:07,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,158 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:27:07,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,159 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:27:07,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,159 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:27:07,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,159 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:27:07,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,160 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:27:07,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,160 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:27:07,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,161 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:27:07,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,161 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:27:07,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,162 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:27:07,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,162 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:27:07,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,163 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:27:07,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,163 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:27:07,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,164 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:27:07,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,164 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:27:07,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,164 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:27:07,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,165 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:27:07,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,165 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:27:07,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,166 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:27:07,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,166 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:27:07,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,167 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:27:07,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:07,167 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:27:07,186 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:27:07,186 [1520] DEBUG index - Prepared sql query parameters : [275,1,Tooltip,TooltipAjax,,2013-01-30 11:27:07] +01/30/13 11:27:07,225 [1520] DEBUG index - Current user is: admin +01/30/13 11:27:07,225 [1520] DEBUG index - Current theme is: softed +01/30/13 11:27:07,225 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:27:07,225 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:27:07,229 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:27:07,229 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:27:07,233 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:27:07,233 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:27:07,236 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:27:07,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:27:07,237 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:27:07,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:07,256 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:27:07,256 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:27:07,256 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:27:07,256 [1520] DEBUG index - skipping headers +01/30/13 11:27:07,258 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:27:07,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:07,349 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:07,350 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:07,350 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:27:07,350 [1520] DEBUG index - Prepared sql query parameters : [6,accountname] +01/30/13 11:27:07,353 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:27:07,353 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:34,894 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:27:35,022 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:27:35,023 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:27:35,023 [1520] DEBUG index - ****Starting for new session +01/30/13 11:27:35,023 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:27:35,023 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '2', +) +01/30/13 11:27:35,023 [1520] INFO index - About to take action DetailView +01/30/13 11:27:35,024 [1520] DEBUG index - in DetailView +01/30/13 11:27:35,024 [1520] INFO index - current page is modules/Accounts/DetailView.php +01/30/13 11:27:35,024 [1520] INFO index - current module is Accounts +01/30/13 11:27:35,057 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:27:35,057 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:27:35,057 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:27:35,057 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:35,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,058 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:35,058 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,058 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:35,058 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:27:35,069 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:35,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,069 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,069 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:27:35,070 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:27:35,070 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:27:35,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,071 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:27:35,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,071 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:27:35,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,072 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:27:35,072 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,072 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:35,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,073 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:27:35,073 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,073 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:27:35,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,074 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:35,074 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,074 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:27:35,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,075 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:27:35,075 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,075 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:27:35,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,076 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:27:35,076 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,076 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:27:35,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,077 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:27:35,077 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,077 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:27:35,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,078 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:27:35,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,078 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:27:35,078 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,079 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:27:35,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,079 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:27:35,079 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,079 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:27:35,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,080 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:27:35,080 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,080 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,081 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:27:35,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,082 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:27:35,082 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,082 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:27:35,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,083 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:27:35,083 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,083 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:27:35,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,084 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:27:35,084 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,084 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:27:35,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,085 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:27:35,085 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,085 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:27:35,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,086 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:27:35,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,086 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:27:35,086 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,087 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:27:35,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,087 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:27:35,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,088 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:27:35,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,088 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:27:35,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,088 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:27:35,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,089 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:27:35,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,089 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:27:35,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,090 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:27:35,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,090 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:27:35,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,091 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:27:35,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,091 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:27:35,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,092 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:27:35,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,092 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:27:35,113 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:27:35,113 [1520] DEBUG index - Prepared sql query parameters : [276,1,Accounts,DetailView,2,2013-01-30 11:27:35] +01/30/13 11:27:35,116 [1520] DEBUG index - Current user is: admin +01/30/13 11:27:35,116 [1520] DEBUG index - Current theme is: softed +01/30/13 11:27:35,117 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:27:35,117 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:27:35,118 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:27:35,118 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:27:35,120 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:27:35,120 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:27:35,122 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:27:35,122 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:35,123 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:35,123 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,123 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:35,123 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:35,132 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,132 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,132 [1520] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/30/13 11:27:35,132 [1520] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/30/13 11:27:35,132 [1520] DEBUG index - Prepared sql query parameters : [1,2] +01/30/13 11:27:35,148 [1520] INFO index - in track view method Accounts +01/30/13 11:27:35,148 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,149 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:35,151 [1520] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/30/13 11:27:35,151 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,153 [1520] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:27:35,153 [1520] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/30/13 11:27:35,153 [1520] DEBUG index - Prepared sql query parameters : [1,Accounts,2,vtiger] +01/30/13 11:27:35,156 [1520] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:27:35,157 [1520] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/30/13 11:27:35,160 [1520] DEBUG Tracker - history size: (current, max)(5, 5) +01/30/13 11:27:35,160 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:27:35,160 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:27:35,161 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:27:35,161 [1520] DEBUG index - including headers +01/30/13 11:27:35,161 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:35,162 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:35,168 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,169 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,171 [1520] DEBUG index - Entering in function getTagCloudView(1) +01/30/13 11:27:35,171 [1520] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/30/13 11:27:35,171 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,174 [1520] DEBUG index - Exiting from function getTagCloudView(1) +01/30/13 11:27:35,174 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:27:35,175 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:27:35,176 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,176 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:27:35,177 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,177 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:27:35,178 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,178 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:27:35,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,179 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:27:35,179 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,180 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:27:35,180 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,180 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:27:35,181 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,181 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:27:35,182 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:35,182 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:27:35,182 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:27:35,182 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:27:35,189 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,189 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:27:35,189 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:35,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:35,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,191 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:27:35,192 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:27:35,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:35,194 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,194 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:27:35,195 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:27:35,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:35,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,197 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:27:35,197 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:27:35,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,198 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:35,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,199 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:27:35,199 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:27:35,199 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,199 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:35,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,200 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:27:35,200 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:27:35,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:35,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,201 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:27:35,201 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:27:35,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:27:35,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,202 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:27:35,203 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:27:35,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,203 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:35,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,204 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:27:35,204 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:27:35,205 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:35,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,205 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:27:35,206 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:27:35,206 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:35,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,207 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:27:35,207 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:27:35,207 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,208 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:35,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,208 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:27:35,208 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:27:35,209 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,209 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:35,209 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,209 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:27:35,209 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:27:35,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:35,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,211 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:27:35,211 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:27:35,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,211 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:35,212 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,212 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:27:35,212 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:27:35,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,213 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:35,213 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,213 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:27:35,213 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:27:35,214 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,214 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:35,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,215 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:27:35,215 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:27:35,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:35,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,216 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:27:35,216 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:27:35,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:35,217 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,217 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:27:35,217 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:27:35,218 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,218 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:27:35,218 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:27:35) method ... +01/30/13 11:27:35,218 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:27:35,219 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:27:35) method ... +01/30/13 11:27:35,219 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:27:35,219 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:35,219 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:35,220 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:27:35,220 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:27:35,220 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:27:35,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,224 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,224 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,225 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,226 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,227 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,228 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,229 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,230 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,231 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,232 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,233 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:27:35,237 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:27:35,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,238 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:27:35,238 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,240 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,240 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,241 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:35,241 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,241 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,242 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,243 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:35,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,243 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:27:35,243 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,243 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:27:35,244 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,244 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:27:35,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,244 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:27:35,245 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,246 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:27:35,246 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,246 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:27:35,246 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,246 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:27:35,247 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,247 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:27:35,247 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,247 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:27:35,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,248 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:27:35,248 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,248 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:27:35,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,249 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:27:35,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,249 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:27:35,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,250 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:27:35,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,251 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:27:35,251 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,251 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:27:35,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,252 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:27:35,252 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,252 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:27:35,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,253 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:27:35,253 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:27:35,253 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,257 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:27:35,257 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,258 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:27:35,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,258 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:27:35,259 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,259 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:27:35,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,260 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:27:35,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,261 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:35,261 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:27:35,263 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:27:35,263 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,263 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:27:35,263 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:27:35,266 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:27:35,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,272 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:35,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,273 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:27:35,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:35,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,273 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:27:35,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,274 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:35,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,274 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:27:35,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:35,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,274 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:27:35,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:35,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,275 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:27:35,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:35,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,275 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:27:35,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:27:35,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,276 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:27:35,276 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:35,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,276 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:27:35,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:27:35,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,277 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:27:35,279 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:27:35,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,279 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:27:35,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:27:35,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,280 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:27:35,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:27:35,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,281 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:27:35,281 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:27:35,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,281 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:27:35,281 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:27:35,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,282 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:27:35,282 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:35,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,282 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:27:35,282 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:27:35,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,283 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:27:35,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:27:35,283 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,283 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:27:35,283 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:27:35,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,284 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:27:35,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:35,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,284 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:27:35,284 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:35,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,285 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:27:35,285 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:35,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,285 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:27:35,285 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:35,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,285 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:27:35,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:35,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,286 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:27:35,286 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:27:35,286 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,286 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:27:35,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:35,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,287 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:27:35,287 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:35,287 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,287 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:27:35,287 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:27:35,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,288 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:27:35,288 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:35,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,288 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:27:35,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:35,288 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,288 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:27:35,288 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:27:35,289 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,289 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:27:35,289 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:27:35,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,290 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:27:35,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:27:35,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,290 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:27:35,291 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,291 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,291 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:27:35,291 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:27:35,292 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,329 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:35,329 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:35,329 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,329 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,329 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,329 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:27:35,329 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,332 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:27:35,332 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,335 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:27:35,335 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,337 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:27:35,337 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,339 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:27:35,339 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,342 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,343 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:27:35,343 [1520] DEBUG index - id is 2 +01/30/13 11:27:35,343 [1520] DEBUG index - name is vtiger +01/30/13 11:27:35,343 [1520] INFO index - Account detail view +01/30/13 11:27:35,344 [1520] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/30/13 11:27:35,344 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,344 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,344 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/30/13 11:27:35,344 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:35,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,346 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:35,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,347 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:27:35,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,347 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:35,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,348 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:27:35,348 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:27:35,348 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:27:35,359 [1520] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/30/13 11:27:35,360 [1520] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/30/13 11:27:35,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,361 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:35,361 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,361 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,361 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,362 [1520] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/30/13 11:27:35,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,362 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:27:35,362 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,362 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,363 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,363 [1520] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/30/13 11:27:35,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,364 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:35,364 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,364 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,364 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,365 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/30/13 11:27:35,365 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,365 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,366 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:35,366 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,366 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,366 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,366 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/30/13 11:27:35,367 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,367 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,367 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:27:35,367 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,367 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,367 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,368 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/30/13 11:27:35,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,369 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,369 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:27:35,369 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,369 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,369 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,370 [1520] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/30/13 11:27:35,370 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:27:35,370 [1520] INFO index - in getAccountName 0 +01/30/13 11:27:35,370 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:27:35,370 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:27:35,372 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:27:35,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,372 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:27:35,372 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,373 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,373 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,373 [1520] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/30/13 11:27:35,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,374 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:27:35,374 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,374 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,374 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,375 [1520] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/30/13 11:27:35,375 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,375 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:27:35,375 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,376 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,376 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,376 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/30/13 11:27:35,377 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,377 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,377 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:27:35,377 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,377 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,377 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,378 [1520] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/30/13 11:27:35,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,378 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:27:35,378 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,379 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,379 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,379 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/30/13 11:27:35,380 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,380 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,380 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:27:35,380 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,380 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,380 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,381 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/30/13 11:27:35,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,381 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,381 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:27:35,381 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:27:35,382 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:27:35,382 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:27:35,382 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:27:35,382 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:27:35,384 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:27:35,384 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:27:35,384 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:27:35,387 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:27:35,387 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:27:35,387 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,387 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:27:35,391 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 276 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:27:35,392 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,392 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,394 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,394 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:27:35,394 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,394 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:27:35,399 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,399 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:27:35,399 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,399 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:27:35,403 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,403 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:27:35,404 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:27:35,404 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:27:35,406 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:27:35,406 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:27:35,426 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:27:35,427 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:27:35,428 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:27:35,429 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:27:35,429 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:27:35,429 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:27:35,429 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,429 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,429 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,430 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/30/13 11:27:35,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,430 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:27:35,430 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:27:35,430 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:27:35,431 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:27:35,431 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:27:35,431 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,431 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:27:35,435 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 276 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:27:35,435 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,436 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,438 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,438 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:27:35,438 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,438 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:27:35,441 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,441 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:27:35,442 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,442 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:27:35,445 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,445 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:27:35,445 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:27:35,445 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:27:35,447 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:27:35,447 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:27:35,455 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:27:35,455 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:27:35,456 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:27:35,456 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:27:35,456 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:27:35,456 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:27:35,456 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,456 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,456 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,457 [1520] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/30/13 11:27:35,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,457 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:27:35,457 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:27:35,457 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:27:35,458 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:27:35,458 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:27:35,458 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,458 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:27:35,461 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 276 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:27:35,462 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,463 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,466 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,466 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:27:35,466 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,466 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:27:35,470 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,470 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:27:35,470 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:27:35,470 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:27:35,475 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:27:35,475 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:27:35,476 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:27:35,476 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:27:35,477 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:27:35,478 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:27:35,489 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:27:35,490 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:27:35,490 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:27:35,490 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,490 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,490 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,490 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/30/13 11:27:35,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,491 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:27:35,491 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,491 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,491 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,492 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/30/13 11:27:35,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,493 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:27:35,493 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,493 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,493 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,494 [1520] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/30/13 11:27:35,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,494 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:27:35,494 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:27:35,494 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:27:35,495 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:27:35,495 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,496 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,497 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,498 [1520] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/30/13 11:27:35,498 [1520] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/30/13 11:27:35,498 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,500 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:27:35,500 [1520] INFO index - in getOwnerName 1 +01/30/13 11:27:35,500 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:27:35,500 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,500 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,502 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:27:35,502 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,504 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:35,504 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,504 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,504 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:27:35,504 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:27:35,506 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:27:35,506 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:27:35,506 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:27:35,507 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:27:35,507 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:27:35,509 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,509 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,511 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,511 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,513 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:35,513 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:27:35,513 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:27:35,513 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:27:35,513 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:27:35,514 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:27:35,514 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:27:35,514 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:27:35,514 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:27:35,516 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:35,516 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:27:35,516 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:27:35,516 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:27:35,516 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:27:35,517 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:27:35,517 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,517 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,517 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,517 [1520] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/30/13 11:27:35,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,518 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:27:35,518 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,518 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,518 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,519 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/30/13 11:27:35,519 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,519 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,520 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:27:35,520 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:27:35,520 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:27:35,520 [1520] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:10) method ... +01/30/13 11:27:35,520 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:27:35,520 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,520 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,521 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,521 [1520] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/30/13 11:27:35,522 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,522 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,522 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:27:35,522 [1520] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/30/13 11:27:35,522 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:27:35,522 [1520] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/30/13 11:27:35,522 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:27:35,523 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,523 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,523 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,523 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/30/13 11:27:35,524 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,524 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,524 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:27:35,524 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,524 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,524 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,525 [1520] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/30/13 11:27:35,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,525 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:27:35,526 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,526 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,526 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,526 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/30/13 11:27:35,527 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,527 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,527 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:27:35,527 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,527 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,527 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,528 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/30/13 11:27:35,528 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,528 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,528 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:27:35,529 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,529 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,529 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,529 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/30/13 11:27:35,530 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,530 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,530 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:35,530 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,530 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,530 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,531 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/30/13 11:27:35,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,532 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:27:35,532 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,532 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,532 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,532 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/30/13 11:27:35,533 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,533 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,533 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:27:35,533 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,533 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,533 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,534 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/30/13 11:27:35,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,535 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:27:35,535 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,535 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,535 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,535 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/30/13 11:27:35,536 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,536 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:27:35,536 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,536 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,536 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,537 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/30/13 11:27:35,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,538 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:27:35,538 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,538 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,538 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,538 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/30/13 11:27:35,539 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,539 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,539 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:27:35,539 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,539 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,539 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,540 [1520] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/30/13 11:27:35,541 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,541 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,541 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:27:35,541 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,541 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,541 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,542 [1520] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/30/13 11:27:35,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,542 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:27:35,542 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:35,542 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:35,543 [1520] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/30/13 11:27:35,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,543 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:35,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,543 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:35,543 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,543 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,544 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:35,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,544 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:35,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,544 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:27:35,544 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,544 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,544 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:27:35,544 [1520] DEBUG index - Exiting getDetailBlockInformation method ... +01/30/13 11:27:35,545 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:27:35,545 [1520] DEBUG index - Entering updateInfo(2) method ... +01/30/13 11:27:35,545 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:27:35,545 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:35,548 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:27:35,548 [1520] INFO index - in getOwnerName 1 +01/30/13 11:27:35,548 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:27:35,548 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:35,548 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:35,550 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:27:35,550 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,552 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:27:35,552 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:27:35,553 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:27:35,553 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:27:35,553 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,553 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,553 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:27:35,553 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:35,553 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:35,554 [1520] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/30/13 11:27:35,554 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,605 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:27:35,606 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,606 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,2) method ... +01/30/13 11:27:35,607 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,608 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:27:35,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,609 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:35,609 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:35,612 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:35,612 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:35,612 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,612 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,613 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,615 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:35,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,615 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:27:35,615 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,615 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,616 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,617 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:27:35,618 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:35,623 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,623 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,624 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:27:35,624 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:27:35,650 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:27:35,651 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,651 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:27:35,652 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:27:35,652 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:35,653 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:27:35,653 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,654 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,654 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:35,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,654 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:27:35,654 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:35,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,657 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:35,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,658 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:27:35,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,658 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:35,658 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,658 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,658 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:35,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,659 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:27:35,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,659 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:27:35,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,659 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:27:35,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,660 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:27:35,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,660 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:27:35,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,660 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,660 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:27:35,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,661 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:27:35,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,661 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:27:35,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,661 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:27:35,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,662 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:27:35,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,662 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:27:35,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,662 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:27:35,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,663 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:27:35,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,663 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:27:35,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,663 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:27:35,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,664 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:35,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,664 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:27:35,664 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,664 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,664 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:27:35,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,665 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:27:35,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,665 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:35,665 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,665 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,666 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:27:35,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,666 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:27:35,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,666 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:27:35,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,667 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:27:35,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,667 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:27:35,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,667 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:27:35,667 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,667 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,668 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:27:35,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,668 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:27:35,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,668 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:27:35,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,669 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:27:35,669 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,669 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,669 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:27:35,669 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:27:35,669 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:27:35,669 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:27:35,669 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:35,670 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,670 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:27:35,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,671 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:27:35,671 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,671 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:27:35,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,672 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:27:35,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,673 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:27:35,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,673 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:27:35,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,674 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:27:35,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,674 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:27:35,675 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:27:35,675 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,676 [1520] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:27:35,676 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:27:35,676 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:35,679 [1520] DEBUG index - Entering when status=0 +01/30/13 11:27:35,679 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:27:35,679 [1520] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/30/13 11:27:35,679 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:35,679 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:35,680 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,680 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,680 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,681 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,681 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/30/13 11:27:35,687 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,687 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,688 [1520] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/30/13 11:27:35,688 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:35,740 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:27:35,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:35,741 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:27:35,741 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:35,744 [1520] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/30/13 11:27:35,744 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:27:35,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,745 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:35,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:35,745 [1520] DEBUG index - Entering getColumnFields(Calendar) method ... +01/30/13 11:27:35,745 [1520] DEBUG index - in getColumnFields Calendar +01/30/13 11:27:35,745 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:27:35,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,746 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:27:35,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,746 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:27:35,746 [1520] DEBUG index - Prepared sql query parameters : [9,16] +01/30/13 11:27:35,764 [1520] DEBUG index - Entering getTabid(Calendar) method ... +01/30/13 11:27:35,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,764 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:27:35,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,765 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:35,766 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:27:35,766 [1520] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/30/13 11:27:35,766 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:27:35,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,767 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:27:35,767 [1520] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/30/13 11:27:35,767 [1520] DEBUG index - Prepared sql query parameters : [2013-01-30 11:27:35,2,1] +01/30/13 11:27:35,792 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:35,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:35,792 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/30/13 11:27:35,792 [1520] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/30/13 11:27:35,841 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,841 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,842 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:27:35,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,842 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:27:35,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,843 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,843 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,843 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,843 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,844 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,844 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:35,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,845 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:27:35,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,845 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:27:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,846 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:27:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,846 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:27:35,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,847 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:27:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,847 [1520] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:27:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,847 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:27:35,847 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,847 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,847 [1520] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/30/13 11:27:35,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,848 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:27:35,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,848 [1520] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/30/13 11:27:35,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,848 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:27:35,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,849 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:27:35,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,849 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:27:35,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,849 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:27:35,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,850 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:27:35,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,850 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:27:35,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,850 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:27:35,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:35,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:35,850 [1520] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/30/13 11:27:36,105 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,105 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,105 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,105 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,106 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,106 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:27:36,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:36,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:36,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,122 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:36,122 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,123 [1520] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/30/13 11:27:36,123 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,124 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,124 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,124 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,124 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,124 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/30/13 11:27:36,125 [1520] DEBUG index - Prepared sql query parameters : [ModComments] +01/30/13 11:27:36,131 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:27:36,131 [1520] DEBUG index - Entering getColumnFields(Leads) method ... +01/30/13 11:27:36,131 [1520] DEBUG index - in getColumnFields Leads +01/30/13 11:27:36,131 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:27:36,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,132 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:27:36,132 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,132 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:36,132 [1520] DEBUG index - Prepared sql query parameters : [7] +01/30/13 11:27:36,147 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:27:36,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,147 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,147 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:27:36,148 [1520] DEBUG index - Entering getColumnFields(Contacts) method ... +01/30/13 11:27:36,148 [1520] DEBUG index - in getColumnFields Contacts +01/30/13 11:27:36,148 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:36,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,149 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:36,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,149 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:36,149 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:36,162 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:36,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,163 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,163 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,163 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,163 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,164 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,164 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,164 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,164 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,164 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,165 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:27:36,165 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:27:36,165 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:27:36,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,165 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:27:36,165 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,165 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:36,165 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:36,172 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:27:36,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,172 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,204 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,205 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,205 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,205 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,205 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,233 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:36,235 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:36,235 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:36,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,235 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:36,236 [1520] DEBUG index - Entering getTabid(ModComments) method ... +01/30/13 11:27:36,236 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:36,236 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/30/13 11:27:36,236 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:36,360 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:36,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:36,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:36,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,361 [1520] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/30/13 11:27:36,361 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:36,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:36,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:36,362 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,362 [1520] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/30/13 11:27:36,362 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:36,362 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:36,362 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:36,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,363 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:27:36,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:36,363 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:36,363 [1520] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/30/13 11:27:36,364 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:27:36,365 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:27:36,366 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:37,534 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:27:37,673 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:27:37,673 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:27:37,673 [1520] DEBUG index - ****Starting for new session +01/30/13 11:27:37,673 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:27:37,674 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:27:37,674 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:27:37,674 [1520] DEBUG index - in CalendarAjax +01/30/13 11:27:37,674 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:27:37,674 [1520] INFO index - current module is Calendar +01/30/13 11:27:37,707 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:27:37,707 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:27:37,707 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:27:37,707 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:37,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:37,708 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:37,708 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:37,708 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:37,708 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:27:37,737 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:37,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:37,737 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:37,737 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:27:37,737 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:27:37,738 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:27:37,738 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,739 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:27:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,739 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:27:37,739 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,740 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:27:37,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,740 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:37,740 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,740 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:27:37,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,741 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:27:37,741 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,741 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:37,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,742 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:27:37,742 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,742 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:27:37,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,743 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:27:37,743 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,743 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:27:37,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,744 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:27:37,744 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,744 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:27:37,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,745 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:27:37,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,745 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:27:37,745 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,746 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:27:37,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,746 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:27:37,746 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,746 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:27:37,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,747 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:27:37,747 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,747 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:27:37,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,748 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:27:37,748 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,748 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,749 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:27:37,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,750 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:27:37,750 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,750 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:27:37,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,751 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:27:37,751 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,751 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:27:37,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,752 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:27:37,752 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,752 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:27:37,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,753 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:27:37,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,753 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:27:37,753 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,754 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:27:37,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,754 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:27:37,754 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,754 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:27:37,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,755 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:27:37,755 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,755 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:27:37,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,756 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:27:37,756 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,756 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:27:37,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,757 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:27:37,757 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,757 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:27:37,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,758 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:27:37,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,758 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:27:37,758 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,759 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:27:37,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,759 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:27:37,759 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:37,759 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:27:37,760 [1520] DEBUG index - Current user is: admin +01/30/13 11:27:37,760 [1520] DEBUG index - Current theme is: softed +01/30/13 11:27:37,760 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:27:37,760 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:27:37,762 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:27:37,762 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:27:37,764 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:27:37,764 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:27:37,765 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:27:37,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:37,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:37,766 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:27:37,766 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:27:37,766 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:27:37,767 [1520] DEBUG index - skipping headers +01/30/13 11:27:37,768 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:27:37,768 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:37,773 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:27:37,773 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:27:37,773 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:27:37,773 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:27:37,777 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:28')) +01/30/13 11:27:37,782 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:27:57,984 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:27:58,112 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:27:58,112 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:27:58,112 [1520] DEBUG index - ****Starting for new session +01/30/13 11:27:58,113 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:27:58,113 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:27:58,113 [1520] INFO index - About to take action index +01/30/13 11:27:58,113 [1520] DEBUG index - in index +01/30/13 11:27:58,113 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:27:58,113 [1520] INFO index - current module is Accounts +01/30/13 11:27:58,146 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:27:58,146 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:27:58,146 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:27:58,146 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,147 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,147 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,147 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:58,147 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:27:58,158 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,158 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,158 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:27:58,159 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:27:58,159 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:27:58,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,160 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:27:58,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,160 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:27:58,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,161 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:27:58,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,161 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:58,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,162 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:27:58,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,162 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:27:58,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,163 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:58,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,163 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:27:58,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,164 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:27:58,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,164 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:27:58,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,165 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:27:58,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,165 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:27:58,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,166 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:27:58,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,166 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:27:58,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,167 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:27:58,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,167 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:27:58,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,168 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:27:58,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,168 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:27:58,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,169 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:27:58,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,169 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:27:58,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,169 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:27:58,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,170 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:27:58,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,170 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:27:58,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,171 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:27:58,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,171 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:27:58,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,172 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:27:58,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,172 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:27:58,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,173 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:27:58,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,173 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:27:58,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,174 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:27:58,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,174 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:27:58,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,175 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:27:58,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,175 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:27:58,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,176 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:27:58,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,176 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:27:58,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,176 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:27:58,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,177 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:27:58,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,177 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:27:58,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,178 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:27:58,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,178 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:27:58,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,179 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:27:58,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,179 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:27:58,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,180 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:27:58,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,180 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:27:58,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,181 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:27:58,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,181 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:27:58,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,182 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:27:58,186 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:27:58,186 [1520] DEBUG index - Prepared sql query parameters : [277,1,Accounts,index,,2013-01-30 11:27:58] +01/30/13 11:27:58,189 [1520] DEBUG index - Current user is: admin +01/30/13 11:27:58,190 [1520] DEBUG index - Current theme is: softed +01/30/13 11:27:58,190 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:27:58,190 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:27:58,191 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:27:58,192 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:27:58,193 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:27:58,194 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:27:58,195 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:27:58,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,196 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:27:58,196 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:27:58,196 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:27:58,196 [1520] DEBUG index - including headers +01/30/13 11:27:58,196 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,197 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,200 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:58,200 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:58,202 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:27:58,203 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:27:58,203 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,204 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:27:58,204 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,204 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:27:58,204 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,204 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:27:58,205 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,205 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:27:58,205 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,205 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:27:58,205 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:27:58,206 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:27:58,207 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:27:58,215 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,215 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,215 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:27:58,215 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,216 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,216 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:58,216 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,216 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:27:58,216 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:27:58,217 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,217 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,218 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,218 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:27:58,218 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:27:58,218 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,218 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:58,220 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,220 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:27:58,220 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:27:58,220 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,220 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:58,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,221 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:27:58,221 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:27:58,221 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:58,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,222 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:27:58,222 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:27:58,223 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:58,223 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,223 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:27:58,223 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:27:58,224 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:27:58,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,225 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:27:58,225 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:27:58,225 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,225 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:58,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,226 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:27:58,226 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:27:58,226 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:58,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,227 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:27:58,227 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:27:58,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:58,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,228 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:27:58,229 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:27:58,229 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,229 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:58,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,230 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:27:58,230 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:27:58,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:58,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,231 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:27:58,231 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:27:58,232 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:58,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,232 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:27:58,232 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:27:58,233 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,233 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:58,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,234 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:27:58,234 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:27:58,234 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,234 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:58,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,235 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:27:58,235 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:27:58,235 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,235 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:58,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,236 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:27:58,237 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:27:58,237 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:58,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,238 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:27:58,238 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:27:58,238 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:58,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,239 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:27:58,239 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:27:58,239 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:27:58) method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:27:58) method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,240 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,241 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,241 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,241 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:27:58,241 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:27:58,241 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:27:58,247 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,247 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,247 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,247 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,247 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,247 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,248 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,249 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,251 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,252 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,253 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,254 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,255 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,256 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,256 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,256 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:27:58,260 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:27:58,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,261 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:27:58,261 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:58,263 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,263 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:27:58,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,265 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:27:58,265 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,265 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,265 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,265 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,266 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,266 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:27:58,266 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,266 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,267 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,268 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:27:58,269 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,269 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:27:58,269 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,269 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,270 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:27:58,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,271 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:27:58,271 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,271 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:27:58,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,272 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:27:58,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,272 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:27:58,272 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,273 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:27:58,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,273 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:27:58,273 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,273 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:27:58,274 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,274 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:27:58,274 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,274 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:27:58,275 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,275 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:27:58,275 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,275 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:27:58,275 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,276 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:27:58,276 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:27:58,276 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:58,280 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:27:58,280 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,280 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:27:58,281 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,281 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:27:58,282 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,282 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:27:58,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,283 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:27:58,283 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,284 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:58,284 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:27:58,286 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:27:58,286 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,286 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:27:58,286 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:27:58,289 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:27:58,295 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,295 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,295 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,296 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:27:58,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:58,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,296 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:27:58,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,297 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:58,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,297 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:27:58,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:58,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,297 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:27:58,297 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:58,297 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,298 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:27:58,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:58,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,298 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:27:58,298 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:27:58,298 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,299 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:27:58,299 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:58,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,299 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:27:58,299 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:27:58,299 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,299 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:27:58,301 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:27:58,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,302 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:27:58,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:27:58,302 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,302 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:27:58,302 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:27:58,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,303 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:27:58,303 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:27:58,303 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,304 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:27:58,304 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:27:58,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,304 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:27:58,304 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:58,304 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,304 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:27:58,305 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:27:58,305 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,305 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:27:58,305 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:27:58,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,306 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:27:58,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:27:58,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,307 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:27:58,307 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:58,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,307 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:27:58,307 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:58,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,307 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:27:58,307 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:58,307 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,308 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:27:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:58,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,308 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:27:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:58,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,308 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:27:58,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:27:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,309 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:27:58,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,309 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:27:58,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:58,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,309 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:27:58,309 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:27:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,310 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:27:58,310 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,310 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:27:58,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:58,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,311 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:27:58,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:27:58,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,311 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:27:58,312 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:27:58,312 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,312 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:27:58,312 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:27:58,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,313 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:27:58,313 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,313 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:27:58,314 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:27:58,314 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,318 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,318 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,318 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,319 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,319 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:27:58,319 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,320 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:27:58,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,321 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:27:58,321 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,322 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:27:58,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,322 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:27:58,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,323 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:27:58,323 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,323 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:27:58,324 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,324 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,325 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,325 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,325 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:27:58,326 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:58,335 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,335 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,335 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:27:58,335 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,335 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,335 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:27:58,335 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:27:58,339 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:27:58,339 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,340 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,340 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,340 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,340 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:27:58,341 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,341 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:27:58,341 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,342 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:27:58,342 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:27:58,342 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:27:58,342 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:27:58,342 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:27:58,342 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:27:58,343 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:27:58,343 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:27:58,343 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:27:58,344 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:27:58,348 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:58,348 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:58,350 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:58,350 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:58,352 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:58,353 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:27:58,353 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:27:58,354 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:27:58,354 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:27:58,355 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:27:58,355 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:27:58,356 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:27:58,356 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:27:58,358 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:58,358 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:27:58,358 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:27:58,359 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:27:58,359 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:27:58,359 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:27:58,359 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:27:58,359 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,359 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:58,362 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,363 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,363 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,363 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,363 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,363 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,363 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,364 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:27:58,364 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:27:58,364 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,366 [1520] DEBUG index - Entering when status=0 +01/30/13 11:27:58,366 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:27:58,366 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:27:58,366 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,367 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,367 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:27:58,367 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:58,370 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,370 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,370 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:27:58,371 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,373 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:27:58,373 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:27:58,375 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:27:58,375 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,375 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:27:58,376 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:27:58,376 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:27:58,376 [1520] DEBUG index - Entering when status=0 +01/30/13 11:27:58,376 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:27:58,376 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:27:58,376 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:27:58,377 [1520] DEBUG index - Entering when status=0 +01/30/13 11:27:58,377 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:27:58,377 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:27:58,377 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,377 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,377 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:27:58,377 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:58,379 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,379 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,379 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:27:58,379 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:58,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,382 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:27:58,382 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,382 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,383 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:27:58,384 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,384 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:27:58,384 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:58,389 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:27:58,389 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:27:58,406 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:27:58,411 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:27:58,411 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:27:58,413 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:27:58,413 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:27:58,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,413 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:27:58,413 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:27:58,414 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,415 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,416 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,417 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:27:58,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:27:58,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:27:58,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:27:58,421 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:27:58,424 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:27:58,424 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,424 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:27:58,428 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:27:58,428 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:27:58,469 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,469 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:27:58,471 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,471 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:27:58,473 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,473 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:27:58,475 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,475 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:27:58,477 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:27:58,477 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:27:58,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,526 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:27:58,528 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,528 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:27:58,531 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,531 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:27:58,533 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,533 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:27:58,535 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,535 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:27:58,538 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,538 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:27:58,540 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,540 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:27:58,542 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,542 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:27:58,545 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,545 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:27:58,547 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:27:58,547 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:27:58,582 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,582 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:27:58,585 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,585 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:27:58,587 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,587 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:27:58,589 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,590 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:27:58,592 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:27:58,592 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:58,594 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,594 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:27:58,596 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,596 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:27:58,599 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:27:58,600 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:27:58,633 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,633 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:27:58,635 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,635 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:27:58,638 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,638 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:27:58,640 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,641 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:27:58,642 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,643 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:27:58,644 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,645 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:27:58,647 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,648 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:27:58,649 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,650 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:27:58,654 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,654 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:27:58,657 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,657 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:27:58,659 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,659 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:27:58,662 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:27:58,662 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:27:58,665 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:27:58,669 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:27:58,670 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:27:58,673 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:27:58,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:58,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,674 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:27:58,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:27:58,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,675 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:27:58,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:58,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,675 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:27:58,675 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:27:58,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,676 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:27:58,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:27:58,676 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,676 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:27:58,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:27:58,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,677 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:27:58,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:27:58,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,677 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:27:58,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:27:58,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,678 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:27:58,678 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:27:58,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,678 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:27:58,678 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:27:58,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,679 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:27:58,679 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:27:58,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,679 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:27:58,679 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:27:58,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,680 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:27:58,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:27:58,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,680 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:27:58,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:27:58,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,681 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:27:58,681 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:58,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,681 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:27:58,682 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:27:58,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,682 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:27:58,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,682 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:27:58,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:27:58,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:58,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,683 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:27:58,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:27:58,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,684 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:27:58,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,684 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,685 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:27:58,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:58,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,686 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:27:58,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:27:58,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,686 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:27:58,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:58,686 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,687 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:27:58,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:27:58,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,687 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:27:58,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:58,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,688 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:27:58,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:27:58,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,688 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:27:58,688 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:58,688 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,689 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:27:58,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:27:58,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,689 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:27:58,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:27:58,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,690 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:27:58,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:27:58,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,690 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:27:58,690 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:58,690 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,691 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:27:58,691 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:27:58,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,691 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:27:58,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,692 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:27:58,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:27:58,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,692 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:27:58,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:27:58,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,694 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:27:58,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:27:58,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,694 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:27:58,694 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:27:58,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,694 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:27:58,694 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:27:58,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,695 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:27:58,695 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:58,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,695 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:27:58,695 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:27:58,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,695 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:27:58,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:58,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,696 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:27:58,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:27:58,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:27:58,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:58,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,696 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:27:58,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:27:58,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,697 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:27:58,697 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:58,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,697 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:27:58,697 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:27:58,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,697 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:27:58,697 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:58,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,698 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:27:58,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:27:58,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,698 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:27:58,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:58,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,698 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:27:58,698 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:27:58,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,699 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:27:58,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:58,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,699 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:27:58,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:27:58,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,699 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:27:58,699 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:27:58,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,699 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:27:58,700 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:27:58,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,700 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:27:58,700 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,701 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,733 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:27:58,733 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:27:58,736 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:58,736 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:58,736 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:27:58,737 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,740 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:27:58,741 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,742 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:27:58,743 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,744 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:27:58,745 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:58,746 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:27:58,746 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:27:58,747 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:27:58,747 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,747 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,747 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:27:58,747 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,747 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:27:58,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,748 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:27:58,748 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:27:58,750 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:27:58,750 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:27:58,752 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,752 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,752 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,752 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,753 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,753 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,753 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,753 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,753 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,754 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,754 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,754 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,754 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,754 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,755 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,755 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,755 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,755 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,755 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,756 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,756 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,756 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,756 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,757 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,757 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,757 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,757 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,757 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,758 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,758 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,758 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,759 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,760 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,760 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,760 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:27:58,763 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:27:58,767 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,767 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,767 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,768 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,769 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:27:58,770 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:27:58,770 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,770 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,770 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,771 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,772 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,773 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:27:58,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,774 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:58,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,774 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:58,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,775 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:58,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,775 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:58,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,776 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,776 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:58,776 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,778 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:27:58,779 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:27:58,779 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:27:58,779 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:27:58,781 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:27:58,781 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:27:58,784 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:27:58,784 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,784 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:27:58,784 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:58,787 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,787 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,787 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,788 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,788 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,788 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,788 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,789 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,789 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,789 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,789 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,789 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,790 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,790 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,790 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,790 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,791 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,791 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,791 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,791 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,792 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,792 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,792 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,792 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,793 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,794 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,794 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,794 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,795 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,795 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,795 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,796 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,799 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,799 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,799 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,799 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,799 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,800 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,800 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,800 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:27:58,802 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,802 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,803 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,803 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,803 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,803 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,804 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,804 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,804 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,804 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,804 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,805 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,805 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,805 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,806 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,806 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,806 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,806 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,807 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,807 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,808 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,808 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,809 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,809 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,809 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,810 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,810 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,810 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,810 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,811 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,811 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,814 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,814 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,814 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,814 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,815 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,815 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,815 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,815 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:27:58,823 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,823 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,823 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,824 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,824 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,824 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,824 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,825 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,825 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,825 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,825 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,825 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,826 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,826 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,827 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,827 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,827 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,827 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,828 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,828 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,828 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,828 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,829 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,829 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,829 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,829 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,830 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,830 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,830 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,830 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,830 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,831 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,831 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,831 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,831 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,831 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,831 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,832 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,835 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,835 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,835 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,836 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,836 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,836 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,836 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:58,838 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,838 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,839 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,839 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,839 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,839 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,840 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,840 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,840 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,841 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,841 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,841 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,841 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,842 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,842 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,842 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,842 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,843 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,843 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,843 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,843 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,843 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,844 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,844 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,845 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,845 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,845 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,846 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,846 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,846 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,846 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,846 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,846 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,847 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,847 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,847 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,847 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,850 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,850 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,850 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,851 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,851 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,851 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,851 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,851 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,851 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:27:58,853 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,853 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,853 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,854 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,854 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,855 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,855 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,855 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,855 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,856 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,856 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,856 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,856 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,856 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,857 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,857 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,857 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,858 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,858 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,858 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,859 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,859 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,861 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,861 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,861 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,861 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,861 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,862 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,865 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,865 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,865 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,866 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,866 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,866 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,866 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:27:58,868 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,868 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,868 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,869 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,869 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,870 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,870 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,870 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,870 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,870 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,870 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,871 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,871 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,872 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,872 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,872 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,872 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,873 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,873 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,873 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,874 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,874 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,875 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,876 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,876 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,876 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,876 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,876 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,876 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,876 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,877 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,880 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,880 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,880 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,880 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,881 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,881 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,881 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,881 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:27:58,883 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,883 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,883 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,884 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,884 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,884 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,884 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,885 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,885 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,885 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,885 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,885 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,885 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,885 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,886 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,886 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,886 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,886 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,887 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,887 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,887 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,887 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,888 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,888 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,888 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,888 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,889 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,889 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,889 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,891 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,891 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,891 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,891 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,891 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,891 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,892 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,895 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,895 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,895 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,895 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,896 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,896 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,896 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,896 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:27:58,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,898 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,899 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,899 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,899 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,899 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,900 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,900 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,900 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,900 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,900 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,901 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,901 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,902 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,902 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,903 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,903 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,903 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,903 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,904 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,904 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,905 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,905 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,905 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,905 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,906 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,906 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,906 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,906 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,906 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,906 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,907 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,910 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,910 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,910 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,911 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,911 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,911 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,911 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,911 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:27:58,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,915 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,916 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,916 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,917 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,917 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,918 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,918 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,918 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,919 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,919 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,919 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,920 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,920 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,920 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,921 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,921 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,922 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,922 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,922 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,922 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,923 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,923 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,923 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,924 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,924 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,924 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,927 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,927 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,928 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,928 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,928 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,928 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,928 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,928 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:27:58,930 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,930 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,930 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,931 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,931 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,931 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,931 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,932 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,932 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:58,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,933 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,933 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,933 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,934 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,934 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,934 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,934 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,935 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,935 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,936 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,936 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,936 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:27:58,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,937 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,937 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,938 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,938 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:27:58,938 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:27:58,939 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:58,939 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:27:58,939 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:27:58,939 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:27:58,939 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:27:58,943 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:27:58,943 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:27:58,943 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:58,943 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:58,943 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:27:58,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,943 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:27:58,943 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:27:58,943 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:27:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,946 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:27:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,946 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,946 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,947 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:58,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,947 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:58,947 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,947 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,947 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:58,947 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:27:58,947 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:27:58,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,948 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:58,948 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,948 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,950 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,950 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,950 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,950 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:27:58,950 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,951 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,953 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,953 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:58,953 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,953 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,955 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,955 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:58,955 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,955 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,957 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,957 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:27:58,958 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,958 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,960 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,960 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:27:58,960 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,960 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,962 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,962 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:27:58,962 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,962 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,964 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,964 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:27:58,964 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,964 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,966 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,966 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:27:58,966 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,966 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,968 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,968 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:27:58,968 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,969 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,970 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,970 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,971 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:27:58,971 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,971 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,973 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,973 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:27:58,973 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,973 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,974 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,975 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:27:58,975 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,975 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,976 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,977 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:27:58,977 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,977 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,979 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,979 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:27:58,979 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,979 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,981 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,981 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:27:58,981 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,982 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,983 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,984 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:27:58,984 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,984 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,985 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,986 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:27:58,986 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,986 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,988 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,988 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,988 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,988 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:27:58,988 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,989 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,991 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,991 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:58,991 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,991 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,992 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,993 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:27:58,993 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,993 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,994 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,994 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:27:58,995 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,995 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,996 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,997 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:27:58,997 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,997 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:27:58,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,998 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:27:58,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:58,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:58,999 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:27:58,999 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:58,999 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,000 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,001 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:27:59,001 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,001 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,002 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,003 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:59,003 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,003 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,005 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,006 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:27:59,006 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,006 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,008 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,008 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:27:59,008 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,008 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,009 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,010 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:27:59,010 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,010 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,011 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,012 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:27:59,012 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,012 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,013 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,014 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:27:59,014 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,014 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,017 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,017 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:27:59,017 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,018 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,020 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,020 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:27:59,020 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,020 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,021 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,022 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:27:59,022 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,022 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,025 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,025 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:27:59,025 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,026 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:27:59,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,027 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:27:59,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,027 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:27:59,027 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:27:59,027 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:27:59,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,030 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,030 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:27:59,030 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:27:59,030 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:27:59,030 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:59,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:59,030 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:27:59,031 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:27:59,031 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:27:59,034 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:27:59,034 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:27:59,034 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:27:59,034 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:27:59,036 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:27:59,037 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:27:59,037 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:27:59,037 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:59,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:59,037 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:27:59,037 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:27:59,048 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:27:59,048 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:27:59,048 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:59,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,052 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:27:59,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,052 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:27:59,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,053 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:27:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,053 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:27:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,053 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:27:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,054 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:27:59,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,054 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:27:59,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,054 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:27:59,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,054 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:27:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,055 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:27:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,055 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:27:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,055 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:27:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,056 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:27:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,056 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:27:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,056 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:27:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,056 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:27:59,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,057 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:27:59,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,057 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:27:59,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,057 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:27:59,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,058 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:27:59,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,058 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:27:59,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,058 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:27:59,058 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,059 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:27:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,059 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:27:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,059 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:27:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,060 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:27:59,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,060 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:27:59,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,060 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:27:59,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,060 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:27:59,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,061 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:27:59,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,061 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:27:59,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,061 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:27:59,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,062 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:27:59,062 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:59,062 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:59,062 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:27:59,062 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:27:59,064 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:27:59,064 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:27:59,064 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:27:59,064 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:27:59,064 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:27:59,064 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:27:59,065 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:27:59,070 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:27:59,070 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:27:59,070 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:27:59,070 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:27:59,073 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:27:59,073 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:27:59,073 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:27:59,074 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:27:59,074 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:27:59,076 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:27:59,076 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:27:59,076 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:27:59,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,079 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,079 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:27:59,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,080 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:27:59,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,080 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,080 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,080 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,081 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,081 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,081 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,082 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,082 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,084 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:27:59,085 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:27:59,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,085 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:27:59,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,085 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:27:59,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,085 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:27:59,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,086 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:27:59,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,086 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:27:59,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,086 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:27:59,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,087 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:27:59,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,087 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:27:59,090 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:59,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:59,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,090 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:27:59,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,090 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,091 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:27:59,091 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:27:59,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:27:59,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,091 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:27:59,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:27:59,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:27:59,092 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:27:59,092 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:27:59,092 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:27:59,093 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,615 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:28:03,745 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:28:03,745 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:28:03,745 [1520] DEBUG index - ****Starting for new session +01/30/13 11:28:03,746 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:28:03,746 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'EditView', + 'record' => '2', + 'return_module' => 'Accounts', + 'return_action' => 'index', + 'parenttab' => 'Marketing', + 'return_viewname' => '4', +) +01/30/13 11:28:03,746 [1520] INFO index - About to take action EditView +01/30/13 11:28:03,746 [1520] DEBUG index - in EditView +01/30/13 11:28:03,746 [1520] INFO index - current page is modules/Accounts/EditView.php +01/30/13 11:28:03,746 [1520] INFO index - current module is Accounts +01/30/13 11:28:03,780 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:03,780 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:03,780 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:03,781 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:03,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,781 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:03,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,781 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:03,781 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:03,792 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:03,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,793 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:03,793 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:03,793 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:03,794 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:03,794 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,794 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:03,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,795 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:03,795 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,795 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:03,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,796 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:03,796 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,796 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:03,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,797 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:03,797 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,797 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:03,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,798 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:03,798 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,798 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:03,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,799 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:03,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,799 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:03,799 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,800 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:03,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,800 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:03,800 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,800 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:03,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,801 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:03,801 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,801 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:03,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,802 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:03,802 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,802 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:03,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,803 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:03,803 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,803 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:03,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,804 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:03,804 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,804 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,805 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:03,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,806 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:03,806 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,806 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:03,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,807 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:03,807 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,807 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:03,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,808 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:03,808 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,808 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:03,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,809 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:03,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,809 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:03,809 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,810 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:03,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,810 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:03,810 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,811 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:03,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,811 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:03,811 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,811 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:03,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,812 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:03,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,812 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:03,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,813 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:03,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,813 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:03,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,814 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:03,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,814 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:03,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,815 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:03,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,815 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:03,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:03,816 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:03,820 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:28:03,820 [1520] DEBUG index - Prepared sql query parameters : [278,1,Accounts,EditView,2,2013-01-30 11:28:03] +01/30/13 11:28:03,823 [1520] DEBUG index - Current user is: admin +01/30/13 11:28:03,823 [1520] DEBUG index - Current theme is: softed +01/30/13 11:28:03,823 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:28:03,823 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:28:03,825 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:28:03,825 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:03,827 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:03,827 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:03,829 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:03,829 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,829 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:28:03,829 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:28:03,829 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:28:03,830 [1520] DEBUG index - including headers +01/30/13 11:28:03,830 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:03,830 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:03,833 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:03,833 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:03,835 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:28:03,836 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,837 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:28:03,838 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,838 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:28:03,838 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,838 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:28:03,839 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,839 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:28:03,839 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,839 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:28:03,839 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:03,840 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:28:03,840 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:28:03,840 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:28:03,848 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,848 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,848 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:03,848 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:03,849 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,849 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:03,849 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,850 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:28:03,850 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:28:03,850 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:03,851 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,851 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:28:03,851 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:28:03,852 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,852 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:03,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,853 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:28:03,853 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:28:03,854 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,854 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:03,854 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,854 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:28:03,854 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:28:03,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,855 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:03,856 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,856 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:28:03,856 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:28:03,856 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,856 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:03,857 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,857 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:28:03,857 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:28:03,857 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,858 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:28:03,858 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,858 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:28:03,858 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:28:03,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,859 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:03,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,859 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:28:03,859 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:28:03,860 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,860 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:03,861 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,861 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:28:03,861 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:28:03,861 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,861 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:03,862 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,862 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:28:03,862 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:28:03,863 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,863 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:03,863 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,863 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:28:03,863 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:28:03,864 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,864 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:03,864 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,864 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:28:03,864 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:28:03,865 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,865 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:03,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,866 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:28:03,866 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:28:03,866 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,866 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:03,867 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,867 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:28:03,867 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:28:03,868 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,868 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:03,868 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,868 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:28:03,868 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:28:03,869 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,869 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:03,870 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,870 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:28:03,870 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:28:03,871 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:03,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,871 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:28:03,871 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:28:03,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:03,872 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,873 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:28:03,873 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:28:03,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,873 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:28:03,873 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:28:03) method ... +01/30/13 11:28:03,874 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:28:03,874 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:28:03) method ... +01/30/13 11:28:03,874 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:28:03,874 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:03,874 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:03,875 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:28:03,875 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:28:03,875 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:28:03,879 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,879 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,880 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,881 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,882 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,883 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,884 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,885 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,886 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,887 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,888 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,889 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,889 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,889 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:28:03,893 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:28:03,894 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,894 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:28:03,894 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:03,896 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:03,896 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:03,897 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:28:03,897 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,897 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,898 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,899 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:28:03,900 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,900 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:28:03,900 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,900 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:28:03,901 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,901 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:28:03,901 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,901 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:28:03,901 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,902 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:28:03,903 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,903 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:28:03,903 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,903 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:28:03,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,904 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:28:03,904 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,904 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:28:03,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,905 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:28:03,905 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,905 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:28:03,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,906 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:28:03,906 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,906 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:28:03,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,907 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:28:03,908 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,908 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:28:03,908 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,908 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:28:03,909 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,909 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:28:03,909 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:28:03,909 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:03,913 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:28:03,913 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,914 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:28:03,914 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,915 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:28:03,915 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,915 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:28:03,916 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,916 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:28:03,917 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,917 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:03,917 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:28:03,919 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:28:03,919 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,919 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:28:03,919 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:28:03,922 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:28:03,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,928 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:03,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:03,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,928 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:28:03,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:03,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,929 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:28:03,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,929 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:03,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:03,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,929 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:28:03,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:03,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,929 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:28:03,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:03,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,930 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:28:03,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:03,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,930 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:28:03,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:28:03,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,931 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:28:03,931 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:03,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,931 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:28:03,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:28:03,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,932 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:28:03,934 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:28:03,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,935 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:28:03,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:28:03,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,935 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:28:03,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:28:03,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,936 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:28:03,936 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:28:03,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,936 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:28:03,936 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:28:03,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,937 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:28:03,937 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:03,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,937 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:28:03,937 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:28:03,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,938 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:28:03,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:28:03,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,938 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:28:03,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:28:03,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,939 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:28:03,939 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:03,939 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,939 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:28:03,940 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:03,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,940 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:28:03,940 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:03,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,940 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:28:03,940 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:03,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,940 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:28:03,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:03,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,941 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:28:03,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:28:03,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,941 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:28:03,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:03,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,941 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:28:03,942 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:03,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,942 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:28:03,942 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:28:03,942 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,942 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:28:03,942 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:03,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,943 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:28:03,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:03,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,943 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:28:03,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:28:03,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,944 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:28:03,944 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:28:03,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,945 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:28:03,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:28:03,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,946 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:28:03,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,946 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:28:03,946 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/30/13 11:28:03,947 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:03,950 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:03,950 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:03,950 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,950 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,950 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,950 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:03,950 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:03,964 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,964 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,965 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:03,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:03,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:03,967 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/30/13 11:28:03,967 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:03,969 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/30/13 11:28:03,969 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:03,971 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/30/13 11:28:03,971 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:03,973 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/30/13 11:28:03,973 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:03,975 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/30/13 11:28:03,975 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:03,980 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,980 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,981 [1520] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/30/13 11:28:03,981 [1520] DEBUG index - Entering getView(edit) method ... +01/30/13 11:28:03,981 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:28:03,981 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,) method ... +01/30/13 11:28:03,981 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:03,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:03,981 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:28:03,982 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:03,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,984 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:03,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,984 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:28:03,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,985 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:03,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,985 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:03,986 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:28:03,986 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:28:03,996 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:28:03,997 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:28:03,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,998 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:03,998 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:03,998 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:28:03,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:03,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:03,999 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:03,999 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:03,1000 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:28:04,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,000 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,001 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:04,001 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,001 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:04,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,002 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:04,002 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,002 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:28:04,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,003 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:04,003 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,004 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:28:04,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,004 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:04,004 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,005 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:28:04,005 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:28:04,005 [1520] INFO index - in getAccountName 0 +01/30/13 11:28:04,006 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:28:04,006 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:28:04,008 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:28:04,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,008 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:04,008 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,009 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:04,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,009 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:04,009 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,010 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:28:04,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,011 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:04,011 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,011 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:28:04,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,012 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:04,012 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,012 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:28:04,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,013 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:04,013 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,014 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:28:04,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,014 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:04,014 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,015 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:28:04,016 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,016 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,016 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:28:04,016 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:28:04,016 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:28:04,018 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:28:04,018 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:28:04,018 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:28:04,020 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,021 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,021 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,021 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,025 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #500 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #500 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,026 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,026 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,028 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,028 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,028 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,028 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,032 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,032 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,032 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,032 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,038 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,038 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,038 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,038 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:28:04,040 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,040 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,071 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,072 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:28:04,072 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:28:04,072 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:28:04,072 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:28:04,072 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:28:04,073 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:28:04,073 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:28:04,073 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:28:04,073 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:28:04,073 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:28:04,074 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:28:04,074 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:28:04,074 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:28:04,074 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:28:04,074 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:28:04,075 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:28:04,075 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:04,075 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:28:04,075 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:04,075 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:28:04,076 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:28:04,076 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:28:04,076 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:28:04,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,077 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:04,077 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,078 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:28:04,079 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,079 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,079 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,079 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,080 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,080 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,084 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #508 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #508 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,086 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,086 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,089 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,090 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,090 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,090 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,094 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,094 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,095 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,095 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,099 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,099 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,099 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,099 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:28:04,101 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,101 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,113 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,113 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:28:04,113 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:28:04,113 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:28:04,114 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:28:04,114 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:28:04,114 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,114 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,114 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:04,114 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,115 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:28:04,115 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,116 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,116 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,116 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,116 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,116 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,120 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #516 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #516 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,121 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,121 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,123 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,124 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,124 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,124 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,127 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,128 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,128 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,128 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,134 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,134 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,134 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,134 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:28:04,138 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,138 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,154 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,154 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:28:04,155 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:28:04,155 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:28:04,155 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:28:04,155 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:28:04,155 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:28:04,156 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:28:04,156 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:28:04,156 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:28:04,156 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:04,156 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:04,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,157 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:04,157 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,158 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,160 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:04,160 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,161 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:28:04,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,162 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:04,162 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,163 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:28:04,165 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:28:04,165 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:28:04,165 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:28:04,165 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:04,167 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:28:04,168 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:28:04,168 [1520] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/30/13 11:28:04,168 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:28:04,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,169 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:04,169 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,170 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:28:04,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,171 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:04,171 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:28:04,171 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:28:04,173 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:28:04,174 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:04,175 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:04,175 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:28:04,175 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:28:04,178 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,178 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,181 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,181 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,183 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:04,183 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:04,184 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:04,184 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:04,184 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:04,184 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:04,184 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:04,185 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:04,185 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:28:04,187 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:04,187 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:04,187 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:04,187 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:04,187 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:04,187 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:04,187 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,188 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:28:04,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,189 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:04,189 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,189 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:28:04,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,190 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:04,190 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,190 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:28:04,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,191 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:04,191 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,192 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:04,192 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,192 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,192 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,192 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,193 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:04,193 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,193 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,194 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,194 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,194 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:28:04,195 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,195 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,195 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:04,195 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,195 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:28:04,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,196 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:04,196 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,197 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:28:04,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,197 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:04,197 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,198 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:28:04,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,199 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,199 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:04,199 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,199 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,200 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:04,200 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,201 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,201 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,201 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,201 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:04,201 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,202 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:28:04,202 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,202 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,203 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:04,203 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,203 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:28:04,204 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,204 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,204 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:04,204 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,204 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:28:04,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,205 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,205 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:04,205 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,205 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,206 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,206 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,206 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,206 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,207 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,207 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,207 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:28:04,207 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:28:04,207 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,edit,Array,BAS) method ... +01/30/13 11:28:04,207 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,208 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,208 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:28:04,208 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:04,210 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,210 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,210 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,211 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:28:04,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,211 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,211 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,211 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,211 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,212 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:28:04,212 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,BAS] +01/30/13 11:28:04,220 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:28:04,220 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:28:04,221 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,221 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,221 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:04,221 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,222 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:28:04,222 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,222 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,222 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:04,222 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,223 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:28:04,223 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,224 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:04,224 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,224 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:04,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,225 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:04,225 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,225 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:28:04,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,226 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:04,226 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,227 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:28:04,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,227 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:04,228 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,228 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:28:04,229 [1520] DEBUG index - Entering getAccountName(0) method ... +01/30/13 11:28:04,229 [1520] INFO index - in getAccountName 0 +01/30/13 11:28:04,229 [1520] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/30/13 11:28:04,229 [1520] DEBUG index - Prepared sql query parameters : [0] +01/30/13 11:28:04,231 [1520] DEBUG index - Exiting getAccountName method ... +01/30/13 11:28:04,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,231 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:04,231 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,232 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:28:04,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,232 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:04,232 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,233 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:28:04,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,234 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:04,234 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:28:04,234 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:28:04,236 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:28:04,236 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:04,236 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:04,236 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:28:04,237 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:28:04,241 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,241 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,243 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,243 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,246 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:04,246 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:04,246 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:04,246 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:04,246 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:04,246 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:04,246 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:04,247 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:04,247 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:28:04,249 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:04,249 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:04,249 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:04,249 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:04,249 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:04,249 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:04,249 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,250 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:28:04,250 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,251 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:04,251 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,251 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:28:04,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,252 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,252 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:04,252 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,252 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:04,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,253 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,253 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,254 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:04,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,254 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,255 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,255 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:28:04,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,256 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:04,256 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,256 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:28:04,257 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,257 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,257 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:04,257 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,257 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:28:04,258 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,258 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,258 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:04,258 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,259 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:28:04,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,259 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:04,260 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,260 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,261 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:04,261 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,261 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,262 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:04,262 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,262 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:28:04,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,263 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:04,263 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,264 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:28:04,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,264 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:04,264 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,265 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:28:04,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,266 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:04,266 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,266 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,266 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,267 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,267 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,267 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,267 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,267 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:28:04,268 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:28:04,268 [1520] DEBUG index - Entering getBlocks(Accounts,edit_view,,Array,ADV) method ... +01/30/13 11:28:04,268 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,268 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/30/13 11:28:04,268 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:04,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,271 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,271 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:28:04,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,271 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:04,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,272 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:04,272 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:28:04,272 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,ADV] +01/30/13 11:28:04,279 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +,Array,6,Array) method ... +01/30/13 11:28:04,279 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:04,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,280 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:04,280 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,280 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:28:04,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,281 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:04,281 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,282 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:28:04,282 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,282 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:04,283 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,283 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:28:04,284 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,284 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,284 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:04,284 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,284 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:28:04,285 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,285 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,285 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,285 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,285 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,285 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,289 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #638 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #638 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,290 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,290 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,292 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,293 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,293 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,293 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,296 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,296 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,296 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,296 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,300 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,300 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,301 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,301 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:28:04,303 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,303 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:28:04,330 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:28:04,331 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:28:04,332 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:28:04,332 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:04,332 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:28:04,332 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:04,333 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:28:04,333 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:28:04,333 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:28:04,333 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:28:04,333 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,333 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,334 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:04,334 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,335 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:28:04,336 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,336 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,337 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,337 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,337 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,337 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,343 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #646 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #646 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,345 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,345 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,348 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,348 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,348 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,348 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,352 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,352 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,352 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,352 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,357 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,357 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,357 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,358 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:28:04,360 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,360 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,368 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,368 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:28:04,369 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:28:04,369 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:28:04,369 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:28:04,369 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:28:04,369 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,370 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:04,370 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,371 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:28:04,372 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:04,372 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:04,373 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:04,373 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:04,373 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,373 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:04,377 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 278 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #654 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #654 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:04,379 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,379 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,381 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,382 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:04,382 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,382 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:04,389 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,389 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:04,389 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:04,389 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:04,393 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:04,393 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:04,393 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:04,393 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:28:04,395 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:04,396 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:04,407 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:04,408 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:28:04,408 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:28:04,408 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:28:04,408 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:28:04,409 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:28:04,409 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:28:04,409 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:28:04,409 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:28:04,409 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:28:04,410 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:04,410 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:04,410 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,410 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:04,411 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,411 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:28:04,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,413 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:04,413 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,414 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:28:04,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,415 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:04,416 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,417 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:28:04,418 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:28:04,418 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:28:04,418 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:28:04,418 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:28:04,418 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:28:04,419 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:28:04,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,419 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:04,419 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,420 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:28:04,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,422 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:04,422 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:04,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,422 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,423 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:04,423 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:28:04,423 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:28:04,424 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:28:04,424 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:04,425 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,425 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:28:04,425 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,426 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:28:04,426 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,426 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:28:04,427 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,427 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:28:04,428 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,428 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:28:04,428 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,428 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:28:04,429 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,429 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:28:04,430 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:04,430 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:28:04,430 [1520] DEBUG index - Entering getEntityName(Accounts) method ... +01/30/13 11:28:04,430 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,430 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:28:04,432 [1520] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/30/13 11:28:04,432 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:04,435 [1520] DEBUG index - Entering updateInfo(2) method ... +01/30/13 11:28:04,435 [1520] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/30/13 11:28:04,435 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:04,437 [1520] DEBUG index - Entering getOwnerName(1) method ... +01/30/13 11:28:04,437 [1520] INFO index - in getOwnerName 1 +01/30/13 11:28:04,437 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:28:04,437 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:04,437 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:04,439 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:28:04,439 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:04,441 [1520] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/30/13 11:28:04,441 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:28:04,442 [1520] DEBUG index - Exiting updateInfo method ... +01/30/13 11:28:04,444 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,444 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,445 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:04,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:04,445 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:28:04,445 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:04,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,448 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,448 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:04,448 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,449 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:04,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,449 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:04,449 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,449 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,449 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:04,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,450 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:04,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,450 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:04,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,451 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:04,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,451 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:04,451 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,451 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,451 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:04,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,452 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:04,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,452 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:04,452 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,452 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,452 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:04,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,453 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:04,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,453 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:04,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,453 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,453 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:04,453 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,454 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:04,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,454 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:04,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,454 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,454 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:04,454 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,455 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:04,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,455 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:04,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,455 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:28:04,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,456 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:04,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,456 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:04,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,456 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:04,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,457 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:04,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,457 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:04,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,457 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:04,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,457 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:04,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,458 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:04,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,458 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:04,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,458 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:04,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,459 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,459 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:04,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,459 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:04,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,460 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:28:04,460 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:28:04,460 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,461 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:28:04,461 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:28:04,493 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,493 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,493 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:28:04,493 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:04,496 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:04,496 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:04,496 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:28:04,497 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:04,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,502 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,503 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:04,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,503 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:04,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,504 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,504 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,504 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,504 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,505 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,505 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:04,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,506 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:04,507 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:04,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:04,507 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:04,649 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:28:04,649 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:28:04,650 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,362 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:28:07,490 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:28:07,491 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:28:07,491 [1520] DEBUG index - ****Starting for new session +01/30/13 11:28:07,491 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:28:07,491 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:28:07,492 [1520] INFO index - About to take action index +01/30/13 11:28:07,492 [1520] DEBUG index - in index +01/30/13 11:28:07,492 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:28:07,492 [1520] INFO index - current module is Accounts +01/30/13 11:28:07,525 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:07,525 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:07,525 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:07,525 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:07,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,525 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:07,526 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,526 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:07,526 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:07,536 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:07,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,537 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:07,537 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:07,537 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:07,538 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:07,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,538 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:07,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,539 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:07,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,539 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:07,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,540 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:07,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,540 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:07,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,541 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:07,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,541 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:07,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,542 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:07,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,542 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:07,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,543 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:07,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,543 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:07,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,544 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:07,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,544 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:07,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,544 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:07,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,545 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:07,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,545 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:07,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,546 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:07,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,546 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:07,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,547 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:07,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,547 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:07,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,548 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:07,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,548 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,549 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:07,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,550 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:07,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,550 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:07,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,551 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:07,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,551 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:07,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,552 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:07,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,552 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:07,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,553 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:07,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,553 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:07,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,553 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:07,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,554 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:07,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,554 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:07,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,555 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:07,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,556 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:07,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,556 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:07,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,557 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:07,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,557 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:07,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,558 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:07,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,558 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:07,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,559 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:07,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,559 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:07,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,559 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:07,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,561 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:07,578 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:28:07,578 [1520] DEBUG index - Prepared sql query parameters : [279,1,Accounts,index,,2013-01-30 11:28:07] +01/30/13 11:28:07,581 [1520] DEBUG index - Current user is: admin +01/30/13 11:28:07,581 [1520] DEBUG index - Current theme is: softed +01/30/13 11:28:07,581 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:28:07,581 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:28:07,583 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:28:07,583 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:07,585 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:07,585 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:07,586 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:07,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:07,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,587 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:28:07,587 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:28:07,587 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:28:07,587 [1520] DEBUG index - including headers +01/30/13 11:28:07,588 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:07,588 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:07,591 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:07,591 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:07,593 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:28:07,594 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:28:07,594 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,595 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:28:07,595 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,595 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:28:07,595 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,595 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:28:07,596 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,596 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:28:07,596 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,596 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:28:07,596 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:28:07,597 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:28:07,598 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:28:07,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:07,606 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,606 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:07,606 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:07,607 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:07,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,607 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:28:07,607 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:28:07,608 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:07,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,609 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:28:07,609 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:28:07,609 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:07,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,611 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:28:07,611 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:28:07,611 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,611 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:07,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,612 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:28:07,612 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:28:07,613 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:07,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,613 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:28:07,613 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:28:07,614 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:07,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,615 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:28:07,615 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:28:07,615 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:28:07,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,616 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:28:07,616 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:28:07,616 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,617 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:07,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,617 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:28:07,617 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:28:07,618 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:07,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,618 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:28:07,619 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:28:07,619 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:07,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,620 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:28:07,620 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:28:07,620 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,620 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:07,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,621 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:28:07,621 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:28:07,621 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:07,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:28:07,622 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:28:07,623 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,623 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:07,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,623 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:28:07,623 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:28:07,624 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,624 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:07,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,625 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:28:07,625 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:28:07,625 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,625 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:07,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,626 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:28:07,626 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:28:07,626 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,627 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:07,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,628 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:28:07,628 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:28:07,628 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,628 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:07,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,629 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:28:07,629 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:28:07,630 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:07,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,630 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:28:07,630 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:28:07,631 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,631 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:28:07,631 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:28:07) method ... +01/30/13 11:28:07,631 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:28:07,631 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:28:07) method ... +01/30/13 11:28:07,632 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:28:07,632 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:07,632 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:07,632 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:07,633 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:07,633 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:28:07,633 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:28:07,633 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:28:07,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,637 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,638 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,639 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,640 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,641 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,642 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,643 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,644 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,645 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,646 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,646 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,646 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,646 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:28:07,652 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:28:07,652 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,652 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:28:07,652 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:07,654 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:07,654 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:07,655 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:28:07,655 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,655 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:28:07,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,656 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:28:07,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,656 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:28:07,657 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,658 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:28:07,658 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,658 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:28:07,658 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,658 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:28:07,659 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,659 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:28:07,659 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,659 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,660 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,661 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:28:07,662 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,662 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:28:07,662 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,662 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:28:07,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,663 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:28:07,663 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,663 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:28:07,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,664 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:28:07,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,664 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,665 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,666 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:28:07,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,667 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:28:07,667 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:28:07,667 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:07,671 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:28:07,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,672 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:28:07,672 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,673 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:28:07,673 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,673 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:28:07,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,674 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:28:07,675 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,675 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:07,675 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:28:07,683 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:28:07,683 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,683 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:28:07,683 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:28:07,686 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:28:07,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:07,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,692 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:07,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:07,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,693 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:28:07,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:07,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,693 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:28:07,693 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:07,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,694 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:07,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:07,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,694 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:28:07,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:07,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,694 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:28:07,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:07,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,695 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:28:07,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:07,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,695 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:28:07,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:28:07,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,696 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:28:07,696 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:07,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,696 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:28:07,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:28:07,697 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,697 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:28:07,699 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:28:07,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,699 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:28:07,699 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:28:07,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,700 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:28:07,700 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:28:07,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,701 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:28:07,701 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:28:07,701 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,701 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:28:07,701 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:28:07,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,702 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:28:07,702 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:07,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,702 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:28:07,702 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:28:07,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,703 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:28:07,703 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:28:07,703 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,703 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:28:07,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:28:07,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,704 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:28:07,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:07,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,704 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:28:07,705 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:07,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,705 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:28:07,705 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:07,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,705 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:28:07,705 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:07,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,705 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:28:07,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:07,705 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,705 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:28:07,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:28:07,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,706 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:28:07,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:07,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,706 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:28:07,706 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:07,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,707 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:28:07,707 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:28:07,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,707 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:28:07,707 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:07,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,708 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:28:07,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:07,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,708 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:28:07,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:28:07,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,709 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:28:07,709 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:28:07,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,709 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:28:07,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:28:07,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,710 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:28:07,710 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:07,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,710 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:28:07,711 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:28:07,711 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,715 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:07,715 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:07,716 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:07,716 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:07,716 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:28:07,716 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:07,717 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,717 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:28:07,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,718 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:28:07,718 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,719 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:28:07,719 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,719 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:28:07,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,720 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:28:07,720 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,720 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:28:07,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,721 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:28:07,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:07,722 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:07,722 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,722 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:07,722 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:07,731 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,731 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,731 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:07,732 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:28:07,732 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,732 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,732 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:28:07,732 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:28:07,736 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:28:07,736 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:07,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,736 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:07,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,737 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:28:07,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,738 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:28:07,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:07,738 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:28:07,738 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:28:07,739 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:28:07,739 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:28:07,739 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:07,739 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:28:07,740 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:07,740 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:07,740 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:28:07,740 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:28:07,743 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:07,743 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:07,745 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:07,745 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:07,748 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:07,748 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:28:07,748 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:28:07,749 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:28:07,749 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:28:07,751 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:28:07,751 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:07,752 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:07,752 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:28:07,754 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:07,754 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:28:07,754 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:07,755 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:28:07,757 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:07,757 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:07,757 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,758 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:07,758 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,758 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,759 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:28:07,759 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:28:07,759 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:07,761 [1520] DEBUG index - Entering when status=0 +01/30/13 11:28:07,761 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:28:07,761 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:28:07,761 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,761 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,762 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:28:07,762 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:07,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,767 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:28:07,767 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:07,771 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:28:07,771 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:28:07,773 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:28:07,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,773 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:28:07,774 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:28:07,774 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:28:07,774 [1520] DEBUG index - Entering when status=0 +01/30/13 11:28:07,774 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:28:07,774 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:28:07,774 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:28:07,775 [1520] DEBUG index - Entering when status=0 +01/30/13 11:28:07,775 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:28:07,775 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:28:07,775 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,775 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,775 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:28:07,775 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:07,777 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:07,777 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,777 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:28:07,777 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:07,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:07,780 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:28:07,780 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:28:07,781 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,782 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:28:07,782 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:07,782 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:28:07,782 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:28:07,787 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:28:07,787 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:28:07,805 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:28:07,809 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:28:07,809 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:28:07,811 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:07,812 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:07,813 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:07,814 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,815 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,816 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,817 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:07,818 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:07,819 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,820 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:07,820 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:07,820 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:07,820 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:28:07,825 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:07,825 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:07,825 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:28:07,829 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:28:07,829 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:28:07,880 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,881 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:28:07,883 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,883 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:28:07,887 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,887 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:28:07,889 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:07,889 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:28:07,892 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:28:07,892 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:28:07,942 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,943 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:28:07,944 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,945 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:28:07,947 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,947 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:28:07,950 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,950 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:28:07,952 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,952 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:28:07,954 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,955 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:28:07,957 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,957 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:28:07,959 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,959 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:28:07,961 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:07,961 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:28:07,964 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:28:07,964 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:28:07,997 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,997 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:28:07,999 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:07,999 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:28:08,001 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,001 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:28:08,003 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,003 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:28:08,006 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:28:08,006 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:08,008 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,008 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:28:08,010 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:08,010 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:28:08,013 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:28:08,014 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:28:08,048 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,049 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:28:08,051 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,051 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:28:08,054 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,054 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:28:08,056 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,056 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:28:08,059 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,059 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:28:08,061 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,061 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:28:08,063 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,063 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:28:08,065 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,065 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:28:08,067 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,068 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:28:08,070 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,070 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:28:08,072 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,072 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:28:08,074 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:28:08,075 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:28:08,076 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:08,081 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:08,081 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:08,083 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:08,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:08,084 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,084 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:28:08,084 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:28:08,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,085 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:28:08,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:08,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,085 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:28:08,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:28:08,085 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,085 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:28:08,085 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:28:08,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,086 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:28:08,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:28:08,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,086 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:28:08,086 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:28:08,086 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,086 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:28:08,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:28:08,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,087 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:28:08,087 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:28:08,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,087 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:28:08,087 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:28:08,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,087 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:28:08,088 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:28:08,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,088 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:28:08,088 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:28:08,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,088 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:28:08,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:28:08,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,088 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:28:08,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:28:08,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,089 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:28:08,089 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:08,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,089 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:28:08,089 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:28:08,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,089 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:28:08,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:08,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,090 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:28:08,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:08,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,090 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:28:08,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:08,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,090 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:28:08,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:28:08,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,091 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:28:08,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,091 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,091 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,091 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,091 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:28:08,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:08,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,092 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:28:08,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:28:08,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,092 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:28:08,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:08,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,092 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:28:08,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:28:08,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,093 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:28:08,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:08,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,093 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:28:08,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:28:08,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,093 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:28:08,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:08,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,094 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:28:08,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:28:08,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,094 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:28:08,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:28:08,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,094 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:28:08,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:28:08,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,095 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:28:08,095 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:08,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,095 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:28:08,095 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:28:08,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,095 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:28:08,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:08,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,096 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:28:08,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:08,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,096 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:28:08,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:28:08,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,098 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:28:08,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:28:08,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,098 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:28:08,098 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:28:08,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,098 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:28:08,098 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:28:08,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,099 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:28:08,099 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:08,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,099 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:28:08,099 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:28:08,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,099 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:28:08,099 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:08,099 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,100 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:28:08,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:28:08,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,100 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:28:08,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:08,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,100 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:28:08,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:28:08,100 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,101 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:28:08,101 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:08,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,101 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:28:08,101 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:28:08,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,101 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:28:08,101 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:08,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,102 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:28:08,102 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:28:08,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,102 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:28:08,102 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:08,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,102 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:28:08,102 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:28:08,102 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,102 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:28:08,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:08,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,103 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:28:08,103 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:28:08,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,103 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:28:08,103 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:28:08,103 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,103 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:28:08,104 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:28:08,104 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,104 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:28:08,104 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:08,105 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:08,137 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:28:08,137 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:28:08,139 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:08,139 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:08,140 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:28:08,140 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:08,143 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:28:08,143 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:08,145 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:28:08,145 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:08,148 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:28:08,148 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:08,151 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:08,151 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:08,151 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:08,151 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:08,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,152 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,152 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:08,152 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:08,152 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,152 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:08,153 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,153 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:28:08,153 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:08,155 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:28:08,156 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:28:08,158 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,158 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,158 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,158 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,158 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,159 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,159 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,159 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,159 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,159 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,160 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,160 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,160 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,160 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,160 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,161 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,161 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,161 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,161 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,162 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,162 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,162 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,162 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,162 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,163 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,163 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,163 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,163 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,163 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,164 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,164 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,164 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,164 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,165 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,166 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,166 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,166 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:28:08,169 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:28:08,172 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,172 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,172 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,173 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,174 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:28:08,174 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:28:08,174 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,175 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,175 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,175 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,176 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,176 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:08,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,177 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:08,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,177 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:08,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,177 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:08,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,178 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:08,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,178 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:08,178 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,179 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,179 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:28:08,180 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:28:08,180 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:08,180 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:08,182 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:28:08,182 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:28:08,185 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:28:08,186 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:28:08,186 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:08,188 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,188 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,188 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,189 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,189 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,189 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,189 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,190 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,190 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,190 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,190 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,191 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,191 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,191 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,192 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,192 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,192 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,192 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,193 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,193 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,193 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,193 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,194 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,194 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,194 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,194 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,195 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,195 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,196 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,196 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,196 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,197 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,197 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,197 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,197 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,197 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,198 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,198 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,198 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,198 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,199 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,203 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,203 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,203 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,203 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,203 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,203 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,203 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,203 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,203 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,204 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:08,206 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,206 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,206 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,207 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,207 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,207 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,208 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,208 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,208 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,209 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,209 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,209 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,209 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,210 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,210 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,210 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,210 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,211 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,211 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,211 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,211 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,212 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,212 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,212 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,212 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,213 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,213 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,213 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,213 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,214 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,214 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,214 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,214 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,214 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,215 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,215 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,215 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,215 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,216 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,219 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,219 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,219 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,219 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,219 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,219 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,219 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,220 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,220 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,220 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:28:08,222 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,222 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,222 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,223 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,223 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,223 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,223 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,224 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,224 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,224 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,224 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,224 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,225 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,225 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,225 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,225 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,226 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,226 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,226 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,226 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,227 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,227 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,227 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,227 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,228 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,228 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,228 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,228 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,229 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,229 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,229 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,230 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,230 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,230 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,230 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,230 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,230 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,231 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,234 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,234 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,234 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,234 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,235 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,235 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,235 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,235 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:08,237 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,237 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,237 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,238 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,238 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,238 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,238 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,239 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,239 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,239 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,239 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,239 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,240 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,240 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,240 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,240 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,241 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,241 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,241 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,241 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,242 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,242 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,242 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,242 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,243 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,243 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,243 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,244 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,244 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,244 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,244 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,244 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,244 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,245 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,245 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,245 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,245 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,245 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,246 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,249 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,249 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,249 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,249 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,249 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,249 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,250 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,250 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,250 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,250 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:28:08,252 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,252 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,252 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,253 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,253 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,253 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,253 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,254 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,254 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,254 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,254 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,254 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,255 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,255 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,255 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,255 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,256 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,256 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,256 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,256 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,257 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,257 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,257 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,257 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,258 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,258 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,258 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,259 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,260 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,260 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,260 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,260 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,260 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,260 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,261 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,264 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,264 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,264 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,264 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,265 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,265 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,265 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,265 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:28:08,267 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,267 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,267 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,268 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,268 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,268 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,268 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,269 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,269 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,269 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,269 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,270 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,270 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,270 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,270 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,271 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,271 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,271 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,271 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,271 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,272 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,272 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,272 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,272 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,273 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,273 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,274 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,274 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,274 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,274 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,275 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,275 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,275 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,275 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,276 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,276 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,276 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,276 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,277 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,280 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,280 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,280 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,280 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,280 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,280 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,281 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,281 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,281 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:28:08,283 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,283 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,283 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,284 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,284 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,284 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,284 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,285 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,285 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,285 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,285 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,285 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,285 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,285 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,286 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,286 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,286 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,286 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,287 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,287 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,287 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,287 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,288 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,288 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,288 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,288 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,289 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,289 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,289 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,289 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,290 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,290 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,290 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,291 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,291 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,291 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,291 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,291 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,291 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,292 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,295 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,295 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,295 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,295 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,295 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,296 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,296 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,296 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,296 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,296 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:28:08,298 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,298 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,298 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,299 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,299 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,299 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,299 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,300 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,300 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,300 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,300 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,300 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,301 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,301 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,301 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,301 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,301 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,302 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,302 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,302 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,302 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,303 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,303 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,303 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,303 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,304 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,304 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,304 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,305 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,305 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,305 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,305 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,306 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,306 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,306 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,306 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,306 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,306 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,307 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,307 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,307 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,307 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,310 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,311 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,311 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,311 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,311 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,311 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,311 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,311 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,311 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,311 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:28:08,314 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,314 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,314 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,314 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,315 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,315 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,315 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,315 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,315 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,316 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,316 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,316 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,316 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,316 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,317 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,317 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,317 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,317 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,318 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,318 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,318 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,318 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,319 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,319 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,319 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,319 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,320 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,321 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,321 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,321 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,321 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,321 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,322 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,322 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,322 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,322 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,323 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,326 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,326 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,326 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,326 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,326 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,327 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,327 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,327 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,327 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,327 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:28:08,329 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,329 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,329 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,330 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,330 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,330 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,330 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,331 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,331 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,331 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,331 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,332 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,332 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,332 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,332 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,332 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,333 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,333 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,333 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,333 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,334 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,334 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,334 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,334 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,334 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,335 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,335 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,335 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:28:08,336 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,336 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,336 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,336 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,337 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,337 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,337 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,337 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:28:08,337 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:28:08,337 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,338 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:08,338 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:08,338 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:28:08,338 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:28:08,341 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:08,341 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:08,342 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,342 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:08,342 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,342 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,342 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:28:08,342 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:28:08,342 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:28:08,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,345 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:08,345 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,345 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,346 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:08,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,346 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:08,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,346 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:08,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,346 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,346 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:08,346 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,347 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:08,347 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:28:08,347 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:28:08,347 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,347 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,347 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:08,347 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,347 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,349 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,349 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,349 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,349 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:08,350 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,350 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,351 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,351 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,351 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,351 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:08,351 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,352 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,353 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,353 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,353 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,354 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,354 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:08,354 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,354 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,355 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,355 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,355 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,355 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:08,356 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,356 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,357 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,357 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,357 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,357 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:08,357 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,357 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,359 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,359 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,359 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,359 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:08,360 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,360 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,361 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,361 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,361 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,361 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:08,361 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,361 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,363 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,364 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,364 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,364 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,364 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:08,364 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,364 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,366 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,366 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,366 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,366 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:08,366 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,366 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,368 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,368 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,368 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,368 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:08,368 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,368 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,370 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,370 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,370 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,370 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:08,370 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,371 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,372 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,372 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,372 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,372 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:08,372 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,372 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,374 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,374 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,374 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,374 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:08,374 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,374 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,376 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,376 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,376 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,376 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:08,376 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,376 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,378 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,378 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,378 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,378 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:08,378 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,378 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,382 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,382 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,383 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:08,383 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,383 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,385 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,386 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:08,386 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,386 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,387 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,387 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,388 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,388 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,388 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,388 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:08,388 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,388 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,390 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,390 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,390 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,390 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:08,390 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,390 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,392 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,392 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,392 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,392 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:28:08,393 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,393 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,394 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,395 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,395 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,395 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,395 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:28:08,395 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,395 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,397 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,397 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,397 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,397 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:28:08,398 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,398 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:28:08,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,400 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:08,400 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,400 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,400 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:08,400 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,400 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,402 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,402 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,402 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,402 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:08,402 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,403 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,404 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,405 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:08,405 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,405 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,406 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,406 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:08,407 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,407 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,408 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,408 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,409 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:08,409 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,409 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,411 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,411 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:08,411 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,411 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,413 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,413 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,413 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:08,413 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,413 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,416 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,416 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:08,416 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,416 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,418 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,418 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,418 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:08,418 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,418 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,420 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,421 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:08,421 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,421 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,422 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,422 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,423 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:08,423 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,423 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,424 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,424 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,424 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:08,425 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,425 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:28:08,429 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,429 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,429 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:08,430 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,430 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,430 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:08,430 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:28:08,430 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:28:08,431 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,431 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,431 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:08,431 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:28:08,432 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:28:08,432 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,432 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,432 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:28:08,432 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:28:08,432 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:28:08,435 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:28:08,435 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:28:08,435 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:28:08,435 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:28:08,439 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:28:08,439 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:28:08,439 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:28:08,440 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,440 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,440 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:28:08,440 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:28:08,452 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:28:08,452 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:28:08,452 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:08,456 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,456 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,456 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:08,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,457 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:08,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,457 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:08,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,457 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:08,457 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,457 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,458 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:08,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,458 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:08,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,458 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:08,458 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,458 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,458 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:08,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,459 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:08,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,459 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:08,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,459 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,459 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:08,459 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,460 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:08,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,460 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:08,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,460 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:08,460 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,460 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,460 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:08,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,461 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:08,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,461 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:08,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,461 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:08,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,462 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:08,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,462 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:28:08,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,462 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:08,462 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,462 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,463 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:08,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,463 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:08,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,463 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:08,463 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,463 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,463 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:08,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,464 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:08,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,464 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:08,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,464 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,464 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:08,464 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,465 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:08,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,465 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:08,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,465 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:08,465 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,465 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,466 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:08,466 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,466 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,466 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:08,466 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,466 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:28:08,466 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:28:08,469 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:28:08,469 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:28:08,469 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:28:08,469 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:28:08,469 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:28:08,469 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:28:08,469 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:08,475 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:08,475 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:08,475 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:28:08,475 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:28:08,478 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:28:08,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:08,479 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:28:08,479 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:28:08,479 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:28:08,481 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:28:08,481 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:28:08,481 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:28:08,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,484 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,484 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:28:08,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,485 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:28:08,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,485 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,485 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,485 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,485 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,486 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,486 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,486 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,486 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,486 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,486 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,487 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,487 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,487 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,487 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,489 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:28:08,490 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:28:08,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,490 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:28:08,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,490 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:28:08,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,490 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:28:08,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,491 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:28:08,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,491 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:28:08,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,491 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:28:08,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,492 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:28:08,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,492 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:28:08,495 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:08,495 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:08,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,495 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:28:08,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,496 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,496 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,496 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,496 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:28:08,497 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:08,497 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:08,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,497 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:28:08,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:08,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:08,497 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:28:08,542 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:28:08,542 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:28:08,543 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:37,453 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:28:37,581 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:28:37,581 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:28:37,581 [1520] DEBUG index - ****Starting for new session +01/30/13 11:28:37,582 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:28:37,582 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_no', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:28:37,582 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:28:37,582 [1520] DEBUG index - in TooltipAjax +01/30/13 11:28:37,582 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:28:37,582 [1520] INFO index - current module is Tooltip +01/30/13 11:28:37,616 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:37,616 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:37,616 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:37,616 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:37,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:37,617 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:37,617 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:37,617 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:37,617 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:37,680 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:37,680 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:37,680 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:37,680 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:37,681 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:37,682 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:37,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,683 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:37,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,684 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:37,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,685 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:37,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,686 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:37,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,687 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:37,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,688 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:37,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,689 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:37,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,690 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:37,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,691 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:37,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,692 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:37,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,693 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:37,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,693 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:37,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,694 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:37,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,695 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:37,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,696 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:37,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,697 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:37,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,698 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:37,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,699 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:37,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,700 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:37,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,700 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:37,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,700 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:37,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,701 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:37,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,701 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:37,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,702 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:37,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,702 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:37,702 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,702 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:37,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,703 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:37,703 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,703 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:37,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,704 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:37,704 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,704 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:37,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,705 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:37,705 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,705 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:37,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,706 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:37,706 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,706 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:37,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,707 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:37,707 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,707 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:37,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,708 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:37,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,708 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:37,708 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,709 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:37,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,709 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:37,709 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,709 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:37,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,710 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:37,710 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,710 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:37,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,711 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:37,711 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,711 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:37,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,712 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:37,712 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:37,712 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:37,717 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:28:37,718 [1520] DEBUG index - Prepared sql query parameters : [280,1,Tooltip,TooltipAjax,,2013-01-30 11:28:37] +01/30/13 11:28:37,721 [1520] DEBUG index - Current user is: admin +01/30/13 11:28:37,721 [1520] DEBUG index - Current theme is: softed +01/30/13 11:28:37,721 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:28:37,721 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:28:37,723 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:28:37,723 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:37,725 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:37,725 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:37,727 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:37,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:28:37,727 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:28:37,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:37,728 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:28:37,728 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:28:37,728 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:28:37,728 [1520] DEBUG index - skipping headers +01/30/13 11:28:37,729 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:28:37,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:37,736 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:37,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:37,736 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:28:37,736 [1520] DEBUG index - Prepared sql query parameters : [6,account_no] +01/30/13 11:28:37,739 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:28:37,739 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:41,506 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:28:41,635 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:28:41,635 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:28:41,635 [1520] DEBUG index - ****Starting for new session +01/30/13 11:28:41,636 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:28:41,636 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'parenttab' => 'Marketing', + 'file' => 'MassEdit', + 'mode' => 'ajax', + 'idstring' => '8;4;2;6;', + 'viewname' => '4', + 'excludedRecords' => '', +) +01/30/13 11:28:41,636 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:28:41,636 [1520] DEBUG index - in AccountsAjax +01/30/13 11:28:41,636 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:28:41,636 [1520] INFO index - current module is Accounts +01/30/13 11:28:41,669 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:41,669 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:41,669 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:41,669 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:41,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,670 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:41,670 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,670 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:41,670 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:41,678 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:41,679 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,679 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:41,679 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:41,679 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:41,680 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:41,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,680 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:41,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,681 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:41,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,681 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:41,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,682 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:41,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,682 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:41,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,683 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:41,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,683 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:41,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,684 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:41,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,684 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:41,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,685 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:41,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,685 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:41,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,685 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:41,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,686 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:41,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,686 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:41,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,687 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:41,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,687 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:41,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,688 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:41,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,688 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:41,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,689 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:41,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,689 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:41,689 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,690 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:41,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,690 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:41,690 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,690 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:41,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,691 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:41,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,691 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:41,691 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,692 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:41,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,692 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:41,692 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,692 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:41,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,693 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:41,693 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,693 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:41,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,694 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:41,694 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,694 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:41,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,695 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:41,695 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,695 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:41,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,696 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:41,696 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,696 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:41,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,697 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:41,697 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,697 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:41,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,698 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:41,698 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,698 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:41,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,699 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:41,699 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,699 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:41,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,700 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:41,700 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,700 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:41,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,701 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:41,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,701 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:41,701 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,702 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:41,706 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:28:41,707 [1520] DEBUG index - Prepared sql query parameters : [281,1,Accounts,AccountsAjax,,2013-01-30 11:28:41] +01/30/13 11:28:41,713 [1520] DEBUG index - Current user is: admin +01/30/13 11:28:41,713 [1520] DEBUG index - Current theme is: softed +01/30/13 11:28:41,713 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:28:41,713 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:28:41,715 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:28:41,715 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:41,717 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:41,717 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:41,719 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:41,719 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,720 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:28:41,720 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:28:41,720 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:28:41,720 [1520] DEBUG index - skipping headers +01/30/13 11:28:41,721 [1520] DEBUG index - Entering isPermitted(Accounts,MassEdit,) method ... +01/30/13 11:28:41,721 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:41,736 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:28:41,736 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:28:41,736 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:41,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,736 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:41,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,737 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:41,737 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:41,744 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:41,744 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,744 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:41,744 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:28:41,744 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:28:41,745 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,mass_edit,Array,) method ... +01/30/13 11:28:41,745 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:41,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,745 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:28:41,745 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:41,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,748 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:41,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,749 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:28:41,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,749 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:41,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,749 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:41,750 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 AND vtiger_field.masseditable NOT IN (0,2) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:28:41,750 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:28:41,759 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:28:41,759 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:28:41,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,760 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:41,760 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,761 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:41,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,761 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:41,761 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,762 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:28:41,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,763 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:41,763 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,763 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:28:41,764 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,764 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,764 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:41,764 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,764 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:28:41,765 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,765 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,765 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:41,765 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,766 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:28:41,766 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,766 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,766 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:41,766 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,767 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:28:41,767 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,767 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,767 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:41,768 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,768 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:28:41,768 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,769 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:41,769 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,769 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:28:41,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,770 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:41,770 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,770 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:28:41,771 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:41,771 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:41,771 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:28:41,771 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:28:41,771 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:28:41,773 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:28:41,773 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:28:41,774 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:28:41,776 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:41,776 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:41,776 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,776 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:41,780 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 281 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #344 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #344 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:41,781 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:41,781 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:41,783 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,783 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:41,783 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,783 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:41,787 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,787 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:41,787 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,787 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:41,790 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,791 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:41,791 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:41,791 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:28:41,792 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:41,792 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:41,818 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:41,818 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:28:41,818 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:28:41,818 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:28:41,818 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:28:41,819 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:28:41,819 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:28:41,819 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:28:41,819 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:28:41,819 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:28:41,820 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:28:41,820 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:28:41,820 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:28:41,820 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:28:41,821 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:28:41,821 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:28:41,821 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:28:41,821 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:41,821 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:28:41,822 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:41,822 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:28:41,822 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:28:41,822 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:28:41,822 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:28:41,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,823 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:41,823 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,824 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:28:41,825 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:41,825 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:41,826 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:41,826 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:41,826 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,826 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:41,830 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 281 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #352 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #352 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:41,831 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:41,832 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:41,834 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,834 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:41,834 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,834 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:41,838 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,838 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:41,838 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,839 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:41,842 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,842 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:41,842 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:41,842 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:28:41,844 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:41,844 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:28:41,852 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:28:41,853 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,853 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,853 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:41,853 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,853 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:28:41,854 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:28:41,854 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:28:41,854 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:28:41,854 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:28:41,854 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,854 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:28:41,858 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 281 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #360 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #360 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:28:41,859 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:41,859 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:41,861 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,861 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:28:41,861 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,861 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:28:41,864 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,864 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:28:41,864 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:28:41,865 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:28:41,868 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:28:41,868 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:28:41,868 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:28:41,868 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:28:41,870 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:28:41,870 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:28:41,880 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:28:41,880 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:28:41,881 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:28:41,882 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:28:41,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,882 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:41,882 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,882 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:28:41,883 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,883 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,883 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:41,883 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,884 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:28:41,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,884 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:41,885 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,885 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:28:41,886 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:28:41,886 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:28:41,886 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:28:41,886 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:28:41,888 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:28:41,888 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:28:41,888 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:28:41,888 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:28:41,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,889 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:41,889 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,889 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:28:41,890 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,890 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,890 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:41,890 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:28:41,890 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:28:41,892 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:28:41,892 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:41,893 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:41,893 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:28:41,893 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:28:41,895 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:41,895 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:41,897 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:28:41,897 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:28:41,899 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:41,899 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:41,899 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:41,900 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:41,900 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:41,900 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:41,900 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:28:41,900 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:28:41,901 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:28:41,902 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:28:41,902 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,903 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:28:41,904 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,904 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,904 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:41,904 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,905 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:28:41,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,905 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:41,906 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,906 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:28:41,907 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,907 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,907 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:41,907 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,907 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:41,908 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,908 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,908 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:41,908 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,909 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:28:41,909 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,909 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,909 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:41,909 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,910 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:28:41,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,911 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,911 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:41,911 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,911 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:28:41,912 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,912 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,912 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:41,912 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,912 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:28:41,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,913 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:41,913 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,914 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:28:41,914 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,914 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,915 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:41,915 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,915 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:28:41,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,916 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:41,916 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,916 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:28:41,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,917 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,917 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:41,917 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,918 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:28:41,918 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,918 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:41,918 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,919 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:28:41,919 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,920 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,920 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:41,920 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,920 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:28:41,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,921 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:41,921 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:28:41,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,921 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,921 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:41,921 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,922 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:28:41,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,922 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:41,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,922 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:28:41,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,922 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:41,923 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,923 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,923 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:28:41,923 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:28:41,923 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:28:41,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:28:41,923 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:28:41,924 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:28:41,924 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:41,925 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:41,925 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:41,925 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:28:41,925 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:28:41,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,928 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:28:41,928 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,929 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:28:41,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,929 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:28:41,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,929 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:28:41,929 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,929 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,929 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:28:41,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,930 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:28:41,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,930 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:28:41,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,930 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:28:41,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,931 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:28:41,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,931 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:28:41,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,931 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:28:41,931 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,931 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,932 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:28:41,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,932 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:28:41,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,932 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:28:41,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,932 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:28:41,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,933 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:28:41,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,933 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:28:41,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,933 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,933 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:28:41,933 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,934 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:28:41,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,934 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:28:41,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,934 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:28:41,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,935 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:28:41,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,935 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:28:41,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,935 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:28:41,935 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,935 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,935 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:28:41,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,936 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:28:41,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,936 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:28:41,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,936 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,936 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:28:41,936 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,937 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:28:41,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,937 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:28:41,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,937 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:28:41,937 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,938 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:28:41,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,938 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:28:41,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,938 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:28:41,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:28:41,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:41,938 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:28:41,938 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:28:41,939 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:28:53,025 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:28:53,153 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:28:53,153 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:28:53,153 [1520] DEBUG index - ****Starting for new session +01/30/13 11:28:53,154 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:28:53,154 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:28:53,154 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:28:53,154 [1520] DEBUG index - in CalendarAjax +01/30/13 11:28:53,154 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:28:53,154 [1520] INFO index - current module is Calendar +01/30/13 11:28:53,188 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:28:53,188 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:28:53,188 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:28:53,188 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:53,188 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:53,188 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:53,188 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:53,189 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:28:53,189 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:28:53,199 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:28:53,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:28:53,199 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:28:53,200 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:28:53,200 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:28:53,201 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:28:53,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,201 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:28:53,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,202 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:28:53,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,202 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:28:53,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,203 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:28:53,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,203 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:28:53,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,203 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:28:53,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,204 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:28:53,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,204 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:28:53,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,205 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:28:53,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,205 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:28:53,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,206 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:28:53,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,206 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:28:53,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,207 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:28:53,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,207 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:28:53,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,208 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:28:53,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,208 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:28:53,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,209 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:28:53,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,209 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:28:53,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,210 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:28:53,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,210 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:28:53,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,211 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:28:53,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,211 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,212 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:28:53,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,213 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:28:53,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,213 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:28:53,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,214 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:28:53,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,214 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:28:53,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,215 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:28:53,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,215 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:28:53,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,216 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:28:53,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,216 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:28:53,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,217 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:28:53,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,217 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:28:53,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,218 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:28:53,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,218 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:28:53,218 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,218 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:28:53,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,219 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:28:53,219 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,219 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:28:53,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,220 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:28:53,220 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,220 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:28:53,221 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,221 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:28:53,221 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,221 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:28:53,222 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,222 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:28:53,222 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,222 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:28:53,223 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:28:53,223 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:28:53,223 [1520] DEBUG index - Current user is: admin +01/30/13 11:28:53,223 [1520] DEBUG index - Current theme is: softed +01/30/13 11:28:53,223 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:28:53,223 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:28:53,225 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:28:53,225 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:28:53,227 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:28:53,227 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:28:53,229 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:28:53,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:28:53,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:28:53,230 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:28:53,230 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:28:53,230 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:28:53,230 [1520] DEBUG index - skipping headers +01/30/13 11:28:53,231 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:28:53,231 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:28:53,236 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:28:53,236 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:28:53,236 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:28:53,236 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:28:53,240 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:29')) +01/30/13 11:28:53,244 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:29:33,359 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:29:33,487 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:29:33,488 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:29:33,488 [1520] DEBUG index - ****Starting for new session +01/30/13 11:29:33,488 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:29:33,488 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:29:33,489 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:29:33,489 [1520] DEBUG index - in CalendarAjax +01/30/13 11:29:33,489 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:29:33,489 [1520] INFO index - current module is Calendar +01/30/13 11:29:33,524 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:29:33,525 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:29:33,525 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:29:33,525 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:29:33,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:29:33,525 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:29:33,525 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:29:33,526 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:29:33,526 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:29:33,536 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:29:33,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:29:33,536 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:29:33,536 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:29:33,537 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:29:33,537 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:29:33,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,538 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:29:33,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,538 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:29:33,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,539 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:29:33,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,539 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:29:33,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,540 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:29:33,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,540 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:29:33,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,541 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:29:33,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,541 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:29:33,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,542 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:29:33,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,542 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:29:33,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,543 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:29:33,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,543 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:29:33,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,544 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:29:33,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,544 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:29:33,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,545 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:29:33,545 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,545 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:29:33,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,546 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:29:33,546 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,546 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:29:33,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,547 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:29:33,547 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,547 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:29:33,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,548 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:29:33,548 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,548 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,549 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:29:33,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,550 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:29:33,550 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,550 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:29:33,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,551 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:29:33,551 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,551 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:29:33,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,552 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:29:33,552 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,552 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:29:33,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,553 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:29:33,553 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,553 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:29:33,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,554 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:29:33,554 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,554 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:29:33,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,555 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:29:33,555 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,555 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:29:33,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,556 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:29:33,556 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,556 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:29:33,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,557 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:29:33,557 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,557 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:29:33,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,558 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:29:33,558 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,558 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:29:33,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,559 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:29:33,559 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,559 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:29:33,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,560 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:29:33,560 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:29:33,560 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:29:33,561 [1520] DEBUG index - Current user is: admin +01/30/13 11:29:33,561 [1520] DEBUG index - Current theme is: softed +01/30/13 11:29:33,561 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:29:33,561 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:29:33,562 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:29:33,563 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:29:33,564 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:29:33,565 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:29:33,566 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:29:33,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:29:33,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:29:33,567 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:29:33,567 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:29:33,567 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:29:33,567 [1520] DEBUG index - skipping headers +01/30/13 11:29:33,568 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:29:33,569 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:29:33,573 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:29:33,574 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:29:33,574 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:29:33,574 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:29:33,578 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:30')) +01/30/13 11:29:33,581 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:30:09,005 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:09,136 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:09,136 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:09,136 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:09,136 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:09,137 [1520] DEBUG index - array ( + 'module' => 'Emails', + 'return_module' => 'Accounts', + 'action' => 'EmailsAjax', + 'file' => 'mailSelect', + 'idlist' => '8:4:2:6', + 'viewname' => '4', + 'excludedRecords' => '', + 'searchurl' => '', +) +01/30/13 11:30:09,137 [1520] INFO index - About to take action EmailsAjax +01/30/13 11:30:09,137 [1520] DEBUG index - in EmailsAjax +01/30/13 11:30:09,137 [1520] INFO index - current page is modules/Emails/EmailsAjax.php +01/30/13 11:30:09,137 [1520] INFO index - current module is Emails +01/30/13 11:30:09,171 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:09,171 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:09,171 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:09,171 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:09,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,172 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:09,172 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,172 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:09,172 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:09,186 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:09,186 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,186 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:09,186 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:09,186 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:09,187 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:09,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,188 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:09,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,188 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:09,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,189 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:09,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,189 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:09,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,190 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:09,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,190 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:09,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,190 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:09,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,191 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:09,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,192 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:09,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,192 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:09,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,193 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:09,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,193 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:09,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,194 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:09,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,194 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:09,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,195 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:09,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,195 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:09,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,196 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:09,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,196 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:09,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,197 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:09,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,197 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:09,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,198 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:09,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,198 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,199 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:09,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,200 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:09,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,200 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:09,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,201 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:09,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,201 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:09,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,202 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:09,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,203 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:09,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,203 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:09,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,204 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:09,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,204 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:09,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,205 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:09,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,205 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:09,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,206 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:09,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,206 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:09,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,207 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:09,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,207 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:09,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,208 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:09,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,208 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:09,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,209 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:09,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,209 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:09,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,210 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:09,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,210 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:09,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,211 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:09,237 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:09,237 [1520] DEBUG index - Prepared sql query parameters : [282,1,Emails,EmailsAjax,,2013-01-30 11:30:09] +01/30/13 11:30:09,239 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:09,239 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:09,239 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:09,239 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:09,241 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:09,241 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:09,243 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:09,243 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:09,245 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:09,245 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:09,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:09,246 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:09,246 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:09,246 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:09,246 [1520] DEBUG index - skipping headers +01/30/13 11:30:09,247 [1520] DEBUG index - Entering isPermitted(Emails,mailSelect,) method ... +01/30/13 11:30:09,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:09,262 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:30:09,262 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:30:09,262 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:30:09,262 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:09,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,262 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:09,262 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,262 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:09,262 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:30:09,267 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:09,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,267 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:09,267 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:30:09,297 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,297 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,297 [1520] DEBUG index - Prepared sql query being executed : select fieldid, fieldname, fieldlabel, columnname from vtiger_field where tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:09,297 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:30:09,300 [1520] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:09,300 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,300 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:30:09,301 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:30:09,301 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,301 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:09,301 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:30:09,308 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,308 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,308 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:09,308 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:09,309 [1520] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/30/13 11:30:09,309 [1520] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:09,309 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:09,309 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:09,309 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:09,309 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (Other Email) +01/30/13 11:30:13,674 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:13,805 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:13,805 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:13,806 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:13,806 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:13,806 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:30:13,806 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:30:13,806 [1520] DEBUG index - in CalendarAjax +01/30/13 11:30:13,807 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:30:13,807 [1520] INFO index - current module is Calendar +01/30/13 11:30:13,840 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:13,840 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:13,840 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:13,840 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:13,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:13,841 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:13,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:13,841 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:13,841 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:13,850 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:13,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:13,850 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:13,850 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:13,851 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:13,851 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:13,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,852 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:13,852 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,852 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:13,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,853 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:13,853 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,853 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:13,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,854 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:13,854 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,854 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:13,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,855 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:13,855 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,855 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:13,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,856 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:13,856 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,856 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:13,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,857 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:13,857 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,857 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:13,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,858 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:13,858 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,858 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:13,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,859 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:13,859 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,859 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:13,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,860 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:13,860 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,860 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:13,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,861 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:13,861 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,861 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:13,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,862 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:13,862 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,862 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,863 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:13,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,864 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:13,864 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,864 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:13,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,865 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:13,865 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,865 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:13,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,866 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:13,866 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,866 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:13,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,867 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:13,867 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,867 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:13,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,868 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:13,868 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,868 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:13,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,869 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:13,869 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,869 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:13,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,870 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:13,870 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,870 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:13,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,871 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:13,871 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,871 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:13,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,872 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:13,872 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,872 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:13,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,873 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:13,873 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,873 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:13,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,874 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:13,874 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:13,874 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:13,875 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:13,875 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:13,875 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:13,875 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:13,877 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:13,877 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:13,879 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:13,879 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:13,880 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:13,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:30:13,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:13,881 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:13,881 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:13,881 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:13,881 [1520] DEBUG index - skipping headers +01/30/13 11:30:13,882 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:30:13,883 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:13,887 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:30:13,888 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:30:13,888 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:30:13,888 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:30:13,892 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:31')) +01/30/13 11:30:13,895 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:30:15,293 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:15,420 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:15,420 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:15,420 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:15,421 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:15,421 [1520] DEBUG index - array ( + 'module' => 'Emails', + 'action' => 'EmailsAjax', + 'pmodule' => 'Accounts', + 'file' => 'EditView', + 'sendmail' => 'true', + 'idlist' => '8:4:2:6', + 'field_lists' => '9', +) +01/30/13 11:30:15,421 [1520] INFO index - About to take action EmailsAjax +01/30/13 11:30:15,421 [1520] DEBUG index - in EmailsAjax +01/30/13 11:30:15,421 [1520] INFO index - current page is modules/Emails/EmailsAjax.php +01/30/13 11:30:15,421 [1520] INFO index - current module is Emails +01/30/13 11:30:15,456 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:15,457 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:15,457 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:15,457 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,457 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,458 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:15,458 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:15,466 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,467 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:15,467 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:15,467 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:15,468 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:15,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,468 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:15,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,469 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:15,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,469 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:15,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,470 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:15,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,470 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:15,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,471 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:15,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,471 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:15,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,472 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:15,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,472 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:15,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,473 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:15,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,474 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:15,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,474 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:15,474 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,475 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:15,475 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,475 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:15,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,476 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:15,476 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,476 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:15,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,477 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:15,477 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,477 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:15,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,478 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:15,478 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,478 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:15,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,479 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:15,479 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,479 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,480 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:15,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,481 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:15,481 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,481 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:15,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,482 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:15,482 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,482 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:15,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,483 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:15,483 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,483 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:15,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,484 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:15,484 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,484 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:15,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,485 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:15,485 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,485 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:15,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,486 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:15,486 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,486 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:15,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,487 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:15,487 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,487 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:15,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,488 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:15,488 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,488 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:15,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,489 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:15,489 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,489 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:15,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,490 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:15,490 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,490 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:15,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,491 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:15,491 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,491 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:15,511 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:15,512 [1520] DEBUG index - Prepared sql query parameters : [283,1,Emails,EmailsAjax,,2013-01-30 11:30:15] +01/30/13 11:30:15,517 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:15,517 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:15,517 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:15,517 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:15,519 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:15,519 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:15,521 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:15,521 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:15,523 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:15,523 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,523 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,524 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:15,524 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:15,524 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:15,524 [1520] DEBUG index - skipping headers +01/30/13 11:30:15,525 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:30:15,525 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,526 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:30:15,526 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:30:15,527 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:30:15,527 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,527 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,527 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,527 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:15,527 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:30:15,532 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,532 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:15,532 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:30:15,559 [1520] DEBUG email - Entering Emails() method ... +01/30/13 11:30:15,559 [1520] DEBUG index - Entering getColumnFields(Emails) method ... +01/30/13 11:30:15,560 [1520] DEBUG index - in getColumnFields Emails +01/30/13 11:30:15,560 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,560 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,560 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:15,560 [1520] DEBUG email - Exiting Email method ... +01/30/13 11:30:15,561 [1520] FATAL index - array ( + 'module' => 'Emails', + 'action' => 'EmailsAjax', + 'pmodule' => 'Accounts', + 'file' => 'EditView', + 'sendmail' => 'true', + 'idlist' => '8:4:2:6', + 'field_lists' => '9', +) +01/30/13 11:30:15,566 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:30:15,566 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:30:15,569 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:30:15,569 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:30:15,569 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:15,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,569 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:15,569 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,569 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:15,569 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:30:15,576 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:15,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,576 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:15,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,578 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,579 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:30:15,579 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:30:15,582 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:15,582 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,583 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:30:15,583 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:30:15,596 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.accountname, email1,vtiger_account.accountid as id FROM vtiger_account + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid=vtiger_account.accountid + LEFT JOIN vtiger_accountscf ON vtiger_accountscf.accountid= vtiger_account.accountid + WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid IN (?,?,?,?) AND vtiger_account.emailoptout=0 +01/30/13 11:30:15,596 [1520] DEBUG index - Prepared sql query parameters : [8,4,2,6] +01/30/13 11:30:15,599 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:30:15,599 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:30:15,599 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:30:15,599 [1520] DEBUG index - Entering getBlocks(Emails,create_view,,Array,) method ... +01/30/13 11:30:15,599 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,599 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,599 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:30:15,599 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:30:15,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,601 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,601 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,602 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:30:15,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,602 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:30:15,602 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,602 [1520] DEBUG index - function getTranslatedString() - translated to () +01/30/13 11:30:15,603 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:30:15,603 [1520] DEBUG index - Prepared sql query parameters : [10,21,22,23,24] +01/30/13 11:30:15,609 [1520] DEBUG index - Entering getBlockInformation(Emails,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +10,220,date_start,vtiger_activity,1,6,date_start,Date & Time Sent,1,0,,100,1,21,1,DT~M~time_start~Time Start,1,,BAS,1, +10,520,to_email,vtiger_emaildetails,1,8,saved_toid,To,1,2,,100,2,21,1,V~M,3,,BAS,0, +10,521,cc_email,vtiger_emaildetails,1,8,ccmail,CC,1,2,,1000,3,21,1,V~O,3,,BAS,0, +10,522,bcc_email,vtiger_emaildetails,1,8,bccmail,BCC,1,2,,1000,4,21,1,V~O,3,,BAS,0, +10,523,idlists,vtiger_emaildetails,1,357,parent_id,Parent ID,1,2,,1000,5,21,1,V~O,3,,BAS,0, +10,223,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,5,21,1,V~M,1,,BAS,1, +10,228,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,10,22,1,DT~O,3,,BAS,0, +10,224,subject,vtiger_activity,1,2,subject,Subject,1,0,,100,1,23,1,V~M,1,,BAS,1, +10,225,name,vtiger_attachments,1,61,filename,Attachment,1,0,,100,2,23,1,V~O,1,,BAS,1, +10,227,time_start,vtiger_activity,1,2,time_start,Time Start,1,0,,100,9,23,1,T~O,1,,BAS,1, +10,226,description,vtiger_crmentity,1,19,description,Description,1,0,,100,1,24,1,V~O,1,,BAS,1, +,Array,10,Array) method ... +01/30/13 11:30:15,610 [1520] DEBUG index - Entering getOutputHtml(6,date_start,Date & Time Sent,100,Array,1,Emails) method ... +01/30/13 11:30:15,610 [1520] INFO index - uitype is 6 +01/30/13 11:30:15,610 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,610 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,610 [1520] DEBUG index - Entering getNewDisplayDate() method ... +01/30/13 11:30:15,611 [1520] INFO index - in getNewDisplayDate +01/30/13 11:30:15,611 [1520] DEBUG index - Exiting getNewDisplayDate method ... +01/30/13 11:30:15,611 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:30:15) method ... +01/30/13 11:30:15,611 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:30:15,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,611 [1520] DEBUG index - function getTranslatedString(Date & Time Sent) - translated to (发送日期与时间) +01/30/13 11:30:15,611 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:30:15,611 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:30:15,612 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,612 [1520] DEBUG index - Entering getOutputHtml(8,saved_toid,To,100,Array,1,Emails) method ... +01/30/13 11:30:15,613 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,613 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,613 [1520] DEBUG index - function getTranslatedString(To) - translated to (To:) +01/30/13 11:30:15,613 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,613 [1520] DEBUG index - Entering getOutputHtml(8,ccmail,CC,1000,Array,1,Emails) method ... +01/30/13 11:30:15,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,614 [1520] DEBUG index - function getTranslatedString(CC) - translated to (CC) +01/30/13 11:30:15,614 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,615 [1520] DEBUG index - Entering getOutputHtml(8,bccmail,BCC,1000,Array,1,Emails) method ... +01/30/13 11:30:15,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,615 [1520] DEBUG index - function getTranslatedString(BCC) - translated to (BCC) +01/30/13 11:30:15,615 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,616 [1520] DEBUG index - Entering getOutputHtml(357,parent_id,Parent ID,1000,Array,1,Emails) method ... +01/30/13 11:30:15,617 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,617 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Emails) method ... +01/30/13 11:30:15,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,618 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:30:15,618 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:30:15,618 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:30:15,620 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:30:15,620 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:30:15,621 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:30:15,621 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:30:15,621 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:30:15,623 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:15,623 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:30:15,626 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:15,626 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:30:15,628 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:30:15,628 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:30:15,628 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:30:15,628 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:30:15,628 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:30:15,628 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:30:15,629 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:30:15,629 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:30:15,629 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:30:15,632 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:30:15,632 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:30:15,632 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:30:15,632 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:30:15,632 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:30:15,632 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:30:15,632 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,633 [1520] DEBUG index - Entering getOutputHtml(70,createdtime,Created Time,100,Array,1,Emails) method ... +01/30/13 11:30:15,633 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,633 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/30/13 11:30:15,633 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,634 [1520] DEBUG index - Entering getOutputHtml(2,subject,Subject,100,Array,1,Emails) method ... +01/30/13 11:30:15,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,634 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:30:15,635 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,635 [1520] DEBUG index - Entering getOutputHtml(61,filename,Attachment,100,Array,1,Emails) method ... +01/30/13 11:30:15,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,636 [1520] DEBUG index - function getTranslatedString(Attachment) - translated to (附件) +01/30/13 11:30:15,636 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,636 [1520] DEBUG index - Entering getOutputHtml(2,time_start,Time Start,100,Array,1,Emails) method ... +01/30/13 11:30:15,637 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,637 [1520] DEBUG index - function getTranslatedString(Time Start) - translated to (开始时间) +01/30/13 11:30:15,637 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,637 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Emails) method ... +01/30/13 11:30:15,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,638 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:30:15,638 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:30:15,638 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,638 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,638 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,639 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,639 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,639 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,639 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,639 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,640 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,640 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,640 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,640 [1520] DEBUG index - function getTranslatedString(LBL_EMAIL_INFORMATION) - translated to (邮件信息) +01/30/13 11:30:15,640 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:30:15,641 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:30:15,641 [1520] INFO index - Email detail view +01/30/13 11:30:15,641 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:30:15,641 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:30:15,642 [1520] DEBUG index - Entering Button_Check(Emails) method ... +01/30/13 11:30:15,642 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:30:15,643 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,643 [1520] DEBUG index - Entering isPermitted(Emails,index,) method ... +01/30/13 11:30:15,643 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,644 [1520] DEBUG index - Entering isPermitted(Emails,Import,) method ... +01/30/13 11:30:15,644 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,644 [1520] DEBUG index - Entering isPermitted(Emails,Export,) method ... +01/30/13 11:30:15,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,645 [1520] DEBUG index - Entering isPermitted(Emails,Merge,) method ... +01/30/13 11:30:15,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,645 [1520] DEBUG index - Entering isPermitted(Emails,DuplicatesHandling,) method ... +01/30/13 11:30:15,646 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,646 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:30:15,646 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:15,647 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Entering getFieldVisibilityPermission(Emails,1,ccmail) method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Entering getFieldVisibilityPermission(Emails,1,bccmail) method ... +01/30/13 11:30:15,661 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:15,662 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,662 [1520] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:15,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,662 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,662 [1520] DEBUG index - function getTranslatedString(LBL_MAX_SIZE) - translated to (最大上传大小) +01/30/13 11:30:15,662 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:15,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:15,663 [1520] DEBUG index - function getTranslatedString(LBL_FILESIZEIN_MB) - translated to (MB) +01/30/13 11:30:15,807 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:15,936 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:15,937 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:15,937 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:15,937 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:15,937 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'bill_city', + 'id' => '14', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:30:15,938 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:30:15,938 [1520] DEBUG index - in TooltipAjax +01/30/13 11:30:15,938 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:30:15,938 [1520] INFO index - current module is Tooltip +01/30/13 11:30:15,974 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:15,974 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:15,974 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:15,974 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,975 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,975 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,975 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:15,975 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:15,983 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:15,983 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:15,983 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:15,983 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:15,984 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:15,984 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:15,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,985 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:15,985 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,985 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:15,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,986 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:15,986 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,986 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:15,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,987 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:15,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,987 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:15,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,988 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:15,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,988 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:15,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,989 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:15,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,989 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:15,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,990 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:15,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,990 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:15,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,991 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:15,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,991 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:15,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,992 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:15,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,992 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:15,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,993 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:15,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,993 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:15,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,994 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:15,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,994 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:15,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,995 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:15,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,995 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:15,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,996 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:15,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,996 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:15,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,996 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:15,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,997 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:15,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,997 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:15,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,998 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:15,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,998 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:15,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:15,999 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:16,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,004 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:16,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,005 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:16,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,005 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:16,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,005 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:16,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,006 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:16,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,006 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:16,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,007 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:16,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,008 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:16,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,008 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:16,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,008 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:16,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,009 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:16,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,009 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:16,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,010 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:16,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,010 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:16,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,011 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:16,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,011 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:16,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:16,012 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:16,017 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:16,017 [1520] DEBUG index - Prepared sql query parameters : [284,1,Tooltip,TooltipAjax,,2013-01-30 11:30:16] +01/30/13 11:30:16,031 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:16,031 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:16,031 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:16,031 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:16,033 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:16,033 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:16,035 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:16,035 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:16,037 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:16,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:30:16,038 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:30:16,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:16,038 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:16,038 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:16,039 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:16,039 [1520] DEBUG index - skipping headers +01/30/13 11:30:16,040 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:30:16,040 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:16,046 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:16,046 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:16,047 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:30:16,047 [1520] DEBUG index - Prepared sql query parameters : [6,bill_city] +01/30/13 11:30:16,049 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:30:16,049 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:30:23,199 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:23,328 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:23,328 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:23,329 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:23,329 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:23,329 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'Popup', + 'html' => 'Popup_picker', + 'form' => 'HelpDeskEditView', + 'popuptype' => 'set_return_emails', +) +01/30/13 11:30:23,329 [1520] INFO index - About to take action Popup +01/30/13 11:30:23,329 [1520] DEBUG index - in Popup +01/30/13 11:30:23,330 [1520] INFO index - current page is modules/Accounts/Popup.php +01/30/13 11:30:23,330 [1520] INFO index - current module is Accounts +01/30/13 11:30:23,364 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:23,364 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:23,364 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:23,364 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:23,364 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,364 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:23,365 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,365 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:23,365 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:23,376 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:23,376 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,376 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:23,376 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:23,377 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:23,377 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:23,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,378 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:23,378 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,378 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:23,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,379 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:23,379 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,379 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:23,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,380 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:23,380 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,380 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:23,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,381 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:23,381 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,381 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:23,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,382 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:23,382 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,382 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:23,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,383 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:23,383 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,383 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:23,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,384 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:23,384 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,384 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:23,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,385 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:23,385 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,385 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:23,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,386 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:23,386 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,386 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:23,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,387 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:23,387 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,387 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:23,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,388 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:23,388 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,388 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,389 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:23,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,390 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:23,390 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,390 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:23,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,391 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:23,391 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,391 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:23,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,392 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:23,392 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,392 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:23,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,393 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:23,393 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,393 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:23,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,394 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:23,394 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,394 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:23,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,395 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:23,395 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,395 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:23,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,396 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:23,396 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,396 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:23,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,397 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:23,397 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,397 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:23,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,398 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:23,398 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,398 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:23,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,399 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:23,399 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,399 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:23,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,400 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:23,400 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:23,400 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:23,404 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:23,404 [1520] DEBUG index - Prepared sql query parameters : [285,1,Accounts,Popup,,2013-01-30 11:30:23] +01/30/13 11:30:23,409 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:23,409 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:23,409 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:23,409 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:23,411 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:23,411 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:23,413 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:23,413 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:23,415 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:23,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:23,415 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:23,416 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:23,416 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:23,416 [1520] DEBUG index - skipping headers +01/30/13 11:30:23,416 [1520] DEBUG index - Entering isPermitted(Accounts,Popup,) method ... +01/30/13 11:30:23,416 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:23,423 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:30:23,423 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:30:23,423 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,423 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,425 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:30:23,425 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:30:23,426 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,426 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,426 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,426 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:23,426 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:30:23,435 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,435 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:23,435 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:23,436 [1520] DEBUG account_list - Entering AlphabeticalSearch(Accounts,Popup,accountname,true,basic,set_return_emails,,,,,) method ... +01/30/13 11:30:23,436 [1520] DEBUG account_list - Exiting AlphabeticalSearch method ... +01/30/13 11:30:23,436 [1520] DEBUG account_list - Entering getListQuery(Accounts,) method ... +01/30/13 11:30:23,437 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,437 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,437 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,437 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,440 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:30:23,440 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:30:23,440 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,440 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,440 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Entering getColumnFields(Accounts) method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - in getColumnFields Accounts +01/30/13 11:30:23,441 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Exiting getColumnFields method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Exiting getListQuery method ... +01/30/13 11:30:23,441 [1520] DEBUG account_list - Entering getSearchListHeaderValues(Accounts,Accounts,,,,,) method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Entering getURLstring(Accounts) method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Exiting getURLstring method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,442 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:30:23,443 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:30:23,443 [1520] DEBUG account_list - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:30:23,443 [1520] DEBUG account_list - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:30:23,443 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:30:23,443 [1520] DEBUG account_list - Exiting getSearchListHeaderValues method ... +01/30/13 11:30:23,443 [1520] DEBUG account_list - Entering getOrderBy() method ... +01/30/13 11:30:23,443 [1520] DEBUG account_list - Exiting getOrderBy method ... +01/30/13 11:30:23,443 [1520] DEBUG account_list - Entering getSortOrder() method ... +01/30/13 11:30:23,443 [1520] DEBUG account_list - Exiting getSortOrder() method ... +01/30/13 11:30:23,444 [1520] DEBUG account_list - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 +01/30/13 11:30:23,448 [1520] DEBUG account_list - query being executed : SELECT vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_account.accountname, vtiger_account.email1, vtiger_account.email2, vtiger_account.website, vtiger_account.phone, vtiger_accountbillads.bill_city, vtiger_accountscf.* FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_account.accountid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid INNER JOIN vtiger_accountshipads ON vtiger_account.accountid = vtiger_accountshipads.accountaddressid INNER JOIN vtiger_accountscf ON vtiger_account.accountid = vtiger_accountscf.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_account vtiger_account2 ON vtiger_account.parentid = vtiger_account2.accountid WHERE vtiger_account.accountid > 0 AND vtiger_crmentity.deleted = 0 LIMIT 0,20 +01/30/13 11:30:23,454 [1520] DEBUG account_list - Entering function initSortByField (Accounts) +01/30/13 11:30:23,454 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,454 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,454 [1520] DEBUG account_list - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:30:23,454 [1520] DEBUG account_list - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:30:23,458 [1520] DEBUG account_list - Exiting initSortByField +01/30/13 11:30:23,458 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,458 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,458 [1520] DEBUG account_list - Prepared sql query being executed : SELECT tablename,fieldlabel,fieldname FROM vtiger_field WHERE tabid=? AND uitype IN (13,104) +01/30/13 11:30:23,458 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,461 [1520] DEBUG account_list - Entering getSearchListViewHeader(Accounts,Accounts,&popuptype=set_return_emails,ASC,) method ... +01/30/13 11:30:23,461 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,461 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,461 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,461 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:30:23,462 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,462 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:30:23,463 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:30:23,463 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,463 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,464 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,464 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,464 [1520] DEBUG account_list - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:30:23,464 [1520] DEBUG account_list - Exiting getSearchListViewHeader method ... +01/30/13 11:30:23,465 [1520] DEBUG account_list - Entering getSearchListViewEntries(Accounts,Accounts,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +2,1,vtiger,,,www.vtiger.com,(514) 467-1983,San Mateo,2 +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,Array) method ... +01/30/13 11:30:23,465 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,465 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,466 [1520] DEBUG account_list - Prepared sql query being executed : SELECT uitype, columnname, fieldname + FROM vtiger_field + WHERE tabid=? + AND fieldname IN (?,?,?,?) and vtiger_field.presence in (0,2) +01/30/13 11:30:23,466 [1520] DEBUG account_list - Prepared sql query parameters : [6,accountname,bill_city,assigned_user_id,email1] +01/30/13 11:30:23,469 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,2,0,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,470 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,470 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,470 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,471 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,471 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,471 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,471 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,471 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,472 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,472 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,472 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,472 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,472 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,473 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,473 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,476 [1520] DEBUG account_list - Entering popup_from_html(vtiger,1) method ... +01/30/13 11:30:23,476 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,476 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,477 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,2,0,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,477 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,477 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,477 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,478 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,478 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,478 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,478 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,479 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,479 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,479 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,2,0,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,480 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,480 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,480 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,481 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,481 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,481 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,482 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,484 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,484 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,486 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,487 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +4,1,t3M Invest A/S,,,www.t3minvesta/s.com,(098) 787-4975,San Mateo,4 +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,2,0,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,487 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,487 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,487 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,488 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,489 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,489 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,4,1,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,489 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,490 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,490 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,490 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,490 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,491 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,492 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,492 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,492 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,492 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,493 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,493 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,493 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,493 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,493 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,495 [1520] DEBUG account_list - Entering popup_from_html(t3M Invest A/S,1) method ... +01/30/13 11:30:23,496 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,496 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,496 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,4,1,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,497 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,497 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,497 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,497 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,498 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,498 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,498 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,498 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,498 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,499 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,4,1,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,499 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,499 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,499 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,500 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,500 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,501 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,501 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,501 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,503 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,503 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,505 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,506 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +6,1,EDFG Group Limited,,,www.edfggrouplimited.com,(441) 471-1690,San Mateo,6 +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,4,1,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,506 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,506 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,506 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,507 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,508 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,508 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,508 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,6,2,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,509 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,509 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,509 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,509 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,510 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,511 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,511 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,511 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,511 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,512 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,512 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,512 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,512 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,512 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,515 [1520] DEBUG account_list - Entering popup_from_html(EDFG Group Limited,1) method ... +01/30/13 11:30:23,515 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,515 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,516 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,6,2,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,516 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,516 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,516 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,517 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,518 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,6,2,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,518 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,518 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,518 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,519 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,519 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,519 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,519 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,519 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,520 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,520 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,520 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,520 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,520 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,522 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,522 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,524 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,525 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +8,1,vtigerCRM Inc,,,www.vtigercrminc.com,(074) 633-7602,San Mateo,8 +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,6,2,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,525 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,525 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,526 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,526 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,526 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,526 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,527 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,8,3,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,528 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,528 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,528 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,529 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,529 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,529 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,529 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,529 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,530 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,531 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,531 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,531 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,531 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,531 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,531 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,534 [1520] DEBUG account_list - Entering popup_from_html(vtigerCRM Inc,1) method ... +01/30/13 11:30:23,534 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,534 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,535 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,8,3,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,535 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,535 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,535 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,536 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,537 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,8,3,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,537 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,537 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,537 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,538 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,538 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,538 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,538 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,539 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,539 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,539 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,539 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,539 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,539 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,542 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,542 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,543 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,544 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +10,1,X-CEED INC 99,,,www.x-ceedinc99.com,(285) 823-7048,Sunnyvale,10 +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,8,3,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,544 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,544 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,544 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,545 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,545 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,545 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,545 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,545 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,546 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,546 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,546 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,546 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,10,4,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,547 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,547 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,547 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,548 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,549 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,549 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,549 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,549 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,550 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,550 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,550 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,550 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,550 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,553 [1520] DEBUG account_list - Entering popup_from_html(X-CEED INC 99,1) method ... +01/30/13 11:30:23,553 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,553 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,553 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,10,4,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,554 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,554 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,554 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,555 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,556 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,10,4,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,556 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,556 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,556 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,557 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,558 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,558 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,558 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,558 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,560 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,560 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,562 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,563 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +12,1,demovtiger,,,www.demovtiger.com,(428) 978-1511,San Mateo,12 +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,10,4,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,563 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,563 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,563 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,564 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,565 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,565 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,12,5,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,565 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,565 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,566 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,566 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,566 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,566 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,567 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,567 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,567 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,567 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,567 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,568 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,568 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,568 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,568 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,568 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,569 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,569 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,569 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,569 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,572 [1520] DEBUG account_list - Entering popup_from_html(demovtiger,1) method ... +01/30/13 11:30:23,572 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,572 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,573 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,12,5,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,573 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,573 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,573 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,574 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,575 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,12,5,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,575 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,575 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,575 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,576 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,577 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,577 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,577 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,577 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,579 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,579 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,581 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,582 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +14,1,usable-vtiger,,,www.usable-vtiger.com,(525) 520-9262,Sunnyvale,14 +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,12,5,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,582 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,582 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,582 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,583 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,584 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,584 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,14,6,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,584 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,584 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,584 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,585 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,585 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,585 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,585 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,586 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,586 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,586 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,586 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,586 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,587 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,587 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,587 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,587 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,587 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,588 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,588 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,588 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,591 [1520] DEBUG account_list - Entering popup_from_html(usable-vtiger,1) method ... +01/30/13 11:30:23,591 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,591 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,591 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,14,6,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,592 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,592 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,592 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,593 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,594 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,14,6,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,594 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,594 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,594 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,595 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,595 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,595 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,596 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,596 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,596 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,596 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,596 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,596 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,596 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,599 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,599 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,601 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,601 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +16,1,gooduivtiger,,,www.gooduivtiger.com,(014) 238-1914,Sunnyvale,16 +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,14,6,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,602 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,602 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,602 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,602 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,603 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,16,7,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,604 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,604 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,604 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,605 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,605 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,605 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,605 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,605 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,606 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,606 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,606 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,606 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,606 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,607 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,607 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,610 [1520] DEBUG account_list - Entering popup_from_html(gooduivtiger,1) method ... +01/30/13 11:30:23,610 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,610 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,610 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,16,7,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,610 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,611 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,611 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,611 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,611 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,612 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,612 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,612 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,612 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,612 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,16,7,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,613 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,613 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,613 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,613 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,614 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,614 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,614 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,614 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,616 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,617 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,618 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,619 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +18,1,vtigeruser,,,www.vtigeruser.com,(022) 725-7394,San Mateo,18 +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,16,7,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,619 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,619 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,619 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,620 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,620 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,620 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,620 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,620 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,621 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,621 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,621 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,621 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,accountname,Accounts,Accounts,18,8,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,622 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,622 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,622 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,622 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,623 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,624 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,624 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,624 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,624 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,625 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,625 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,625 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,625 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,625 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,627 [1520] DEBUG account_list - Entering popup_from_html(vtigeruser,1) method ... +01/30/13 11:30:23,627 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,627 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,628 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,bill_city,Accounts,Accounts,18,8,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,628 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,628 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,628 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,629 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,630 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,assigned_user_id,Accounts,Accounts,18,8,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,630 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,630 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,630 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,631 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,632 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,632 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,632 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,632 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,634 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,634 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,636 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,637 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +20,1,samplevtiger,,,www.samplevtiger.com,(230) 985-2245,Sunnyvale,20 +,email1,Accounts,Accounts,18,8,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,637 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,637 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,637 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,638 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,accountname,Accounts,Accounts,20,9,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,639 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,640 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,640 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,640 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,640 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,641 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,641 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/30/13 11:30:23,641 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,641 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,641 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,642 [1520] DEBUG account_list - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/30/13 11:30:23,642 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,642 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,642 [1520] DEBUG account_list - Exiting getFieldVisibilityPermission method ... +01/30/13 11:30:23,642 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,643 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,643 [1520] DEBUG account_list - Prepared sql query being executed : SELECT fieldid,fieldlabel,columnname FROM vtiger_field WHERE tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/30/13 11:30:23,643 [1520] DEBUG account_list - Prepared sql query parameters : [6] +01/30/13 11:30:23,645 [1520] DEBUG account_list - Entering popup_from_html(samplevtiger,1) method ... +01/30/13 11:30:23,645 [1520] DEBUG account_list - Exiting popup_from_html method ... +01/30/13 11:30:23,645 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,645 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,bill_city,Accounts,Accounts,20,9,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,646 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,646 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,646 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,647 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,assigned_user_id,Accounts,Accounts,20,9,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,648 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,648 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,648 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Entering getOwnerName(1) method ... +01/30/13 11:30:23,649 [1520] INFO account_list - in getOwnerName 1 +01/30/13 11:30:23,649 [1520] DEBUG account_list - Entering getEntityName(Users) method ... +01/30/13 11:30:23,649 [1520] DEBUG account_list - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:23,650 [1520] DEBUG account_list - Prepared sql query parameters : [Users] +01/30/13 11:30:23,652 [1520] DEBUG account_list - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:30:23,652 [1520] DEBUG account_list - Prepared sql query parameters : [1] +01/30/13 11:30:23,654 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,654 [1520] DEBUG account_list - Entering getValue(Array,crmid,smownerid,accountname,email1,email2,website,phone,bill_city,accountid +,email1,Accounts,Accounts,20,9,search,set_return_emails,HelpDeskEditView,) method ... +01/30/13 11:30:23,654 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,654 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,655 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,655 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:23,655 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,655 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Exiting return_module_language method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Entering getTabid(Accounts) method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Exiting getTabid method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Exiting getValue method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Exiting getSearchListViewEntries method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Entering getParentTab() method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Exiting getParentTab method ... +01/30/13 11:30:23,656 [1520] DEBUG account_list - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:23,657 [1520] DEBUG account_list - Exiting getParentTabFromModule method ... +01/30/13 11:30:38,917 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:39,044 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:39,045 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:39,045 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:39,045 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:39,045 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'website', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:30:39,046 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:30:39,046 [1520] DEBUG index - in TooltipAjax +01/30/13 11:30:39,046 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:30:39,046 [1520] INFO index - current module is Tooltip +01/30/13 11:30:39,080 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:39,080 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:39,080 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:39,080 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:39,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:39,081 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:39,081 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:39,081 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:39,081 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:39,089 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:39,090 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:39,090 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:39,090 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:39,090 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:39,091 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:39,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,091 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:39,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,092 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:39,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,092 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:39,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,093 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:39,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,093 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:39,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,094 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:39,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,094 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:39,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,095 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:39,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,095 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:39,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,096 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:39,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,096 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:39,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,097 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:39,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,097 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:39,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,098 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:39,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,098 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:39,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,099 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:39,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,099 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:39,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,100 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:39,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,100 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:39,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,101 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:39,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,101 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,102 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:39,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,103 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:39,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,103 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:39,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,104 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:39,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,104 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:39,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,105 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:39,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,105 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:39,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,106 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:39,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,106 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:39,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,107 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:39,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,107 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:39,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,108 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:39,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,108 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:39,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,109 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:39,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,109 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:39,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,110 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:39,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,110 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:39,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,111 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:39,111 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,111 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:39,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,112 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:39,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,112 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:39,112 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,113 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:39,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,113 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:39,113 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:39,114 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:39,118 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:39,118 [1520] DEBUG index - Prepared sql query parameters : [286,1,Tooltip,TooltipAjax,,2013-01-30 11:30:39] +01/30/13 11:30:39,121 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:39,121 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:39,121 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:39,121 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:39,123 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:39,123 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:39,125 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:39,125 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:39,127 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:39,127 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:30:39,127 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:30:39,128 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:39,128 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:39,128 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:39,128 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:39,128 [1520] DEBUG index - skipping headers +01/30/13 11:30:39,129 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:30:39,130 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:39,136 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:39,136 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:39,136 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:30:39,136 [1520] DEBUG index - Prepared sql query parameters : [6,website] +01/30/13 11:30:39,139 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:30:39,139 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:30:49,405 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:49,540 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:49,540 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:49,541 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:49,541 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:49,541 [1520] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'phone', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/30/13 11:30:49,541 [1520] INFO index - About to take action TooltipAjax +01/30/13 11:30:49,541 [1520] DEBUG index - in TooltipAjax +01/30/13 11:30:49,542 [1520] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/30/13 11:30:49,542 [1520] INFO index - current module is Tooltip +01/30/13 11:30:49,576 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:49,576 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:49,576 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:49,576 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:49,576 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:49,577 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:49,577 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:49,577 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:49,577 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:49,585 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:49,586 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:49,586 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:49,586 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:49,586 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:49,587 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:49,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,587 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:49,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,588 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:49,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,588 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:49,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,589 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:49,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,589 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:49,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,590 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:49,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,590 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:49,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,591 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:49,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,592 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:49,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,592 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:49,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,592 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:49,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,593 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:49,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,593 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:49,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,594 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:49,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,594 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:49,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,595 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:49,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,595 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:49,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,596 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:49,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,596 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:49,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,597 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:49,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,597 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:49,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,598 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:49,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,598 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:49,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,599 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:49,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,599 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:49,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,599 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:49,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,600 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:49,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,600 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:49,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,601 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:49,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,601 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:49,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,602 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:49,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,602 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:49,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,603 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:49,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,603 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:49,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,604 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:49,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,604 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:49,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,605 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:49,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,605 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:49,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,606 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:49,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,606 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:49,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,607 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:49,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,607 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:49,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,608 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:49,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,608 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:49,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,609 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:49,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,609 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:49,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:49,610 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:49,618 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:49,618 [1520] DEBUG index - Prepared sql query parameters : [287,1,Tooltip,TooltipAjax,,2013-01-30 11:30:49] +01/30/13 11:30:49,621 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:49,621 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:49,621 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:49,621 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:49,623 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:49,623 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:49,625 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:49,625 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:49,627 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:49,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/30/13 11:30:49,627 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/30/13 11:30:49,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:49,628 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:49,628 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:49,628 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:49,628 [1520] DEBUG index - skipping headers +01/30/13 11:30:49,629 [1520] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/30/13 11:30:49,630 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:49,636 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:49,636 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:49,636 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/30/13 11:30:49,636 [1520] DEBUG index - Prepared sql query parameters : [6,phone] +01/30/13 11:30:49,639 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/30/13 11:30:49,639 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:30:58,706 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:30:58,838 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:30:58,838 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:30:58,838 [1520] DEBUG index - ****Starting for new session +01/30/13 11:30:58,839 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:30:58,839 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'MailerExport', + 'search_url' => '', + 'idlist' => '8:4:2:6', + 'change_owner' => '', + 'change_status' => '', + 'where_export' => '', + 'step' => 'ask', + 'excludedRecords' => '', + 'numOfRows' => '', + 'allids' => '', + 'selectedboxes' => '', + 'allselectedboxes' => '8;4;2;6;', + 'current_page_boxes' => '2;4;6;8;10;12;14;16;18;20', + 'viewname' => '4', + 'pagenum' => '1', + 'selected_id' => '8', +) +01/30/13 11:30:58,839 [1520] INFO index - About to take action MailerExport +01/30/13 11:30:58,839 [1520] DEBUG index - in MailerExport +01/30/13 11:30:58,839 [1520] INFO index - current page is modules/Accounts/MailerExport.php +01/30/13 11:30:58,839 [1520] INFO index - current module is Accounts +01/30/13 11:30:58,874 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:30:58,874 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:30:58,874 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:30:58,874 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:58,874 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:58,875 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:58,875 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:58,875 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:30:58,875 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:30:58,887 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:30:58,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:58,887 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:30:58,887 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:30:58,888 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:30:58,888 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:30:58,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,889 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:30:58,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,889 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:30:58,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,890 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:30:58,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,890 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:30:58,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,891 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:30:58,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,891 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:30:58,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,892 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:30:58,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,892 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:30:58,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,893 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:30:58,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,893 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:30:58,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,894 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:30:58,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,894 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:30:58,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,895 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:30:58,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,895 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:30:58,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,896 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:30:58,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,896 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:30:58,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,897 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:30:58,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,897 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:30:58,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,898 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:30:58,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,898 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:30:58,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,899 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:30:58,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,899 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,900 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:30:58,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,901 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:30:58,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,901 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:30:58,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,902 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:30:58,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,902 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:30:58,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,903 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:30:58,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,903 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:30:58,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,904 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:30:58,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,904 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:30:58,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,905 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:30:58,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,905 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:30:58,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,906 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:30:58,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,906 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:30:58,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,907 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:30:58,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,907 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:30:58,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,908 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:30:58,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,908 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:30:58,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,909 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:30:58,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,909 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:30:58,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,910 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:30:58,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,910 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:30:58,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,911 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:30:58,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:30:58,911 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:30:58,920 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:30:58,920 [1520] DEBUG index - Prepared sql query parameters : [288,1,Accounts,MailerExport,,2013-01-30 11:30:58] +01/30/13 11:30:58,927 [1520] DEBUG index - Current user is: admin +01/30/13 11:30:58,927 [1520] DEBUG index - Current theme is: softed +01/30/13 11:30:58,928 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:30:58,928 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:30:58,930 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:30:58,930 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:30:58,932 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:30:58,932 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:30:58,933 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:30:58,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:58,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,934 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:30:58,934 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:30:58,934 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:30:58,935 [1520] DEBUG index - including headers +01/30/13 11:30:58,935 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:58,935 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:30:58,938 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:30:58,938 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:30:58,944 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:30:58,945 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:30:58,945 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,946 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:30:58,946 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,946 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:30:58,946 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,946 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:30:58,947 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,947 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:30:58,947 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,947 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:30:58,948 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:30:58,949 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:30:58,949 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:30:58,955 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:58,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,955 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:30:58,955 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:30:58,956 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,956 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:30:58,956 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,956 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:30:58,956 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:30:58,957 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:30:58,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,958 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:30:58,958 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:30:58,958 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:30:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,960 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:30:58,960 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:30:58,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:30:58,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,961 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:30:58,961 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:30:58,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,962 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:30:58,962 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:30:58,963 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:30:58,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,964 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:30:58,964 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:30:58,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:30:58,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,965 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:30:58,965 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:30:58,965 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,966 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:30:58,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,966 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:30:58,966 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:30:58,967 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:30:58,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,968 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:30:58,968 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:30:58,968 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:30:58,969 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,969 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:30:58,969 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:30:58,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,970 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:30:58,970 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,970 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:30:58,970 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:30:58,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:30:58,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,971 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:30:58,971 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:30:58,972 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,972 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:30:58,973 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,973 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:30:58,973 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:30:58,973 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,973 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:30:58,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,974 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:30:58,974 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:30:58,974 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,975 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:30:58,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,975 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:30:58,975 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:30:58,976 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,976 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:30:58,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,977 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:30:58,977 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:30:58,977 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:30:58,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,978 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:30:58,978 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:30:58,979 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:30:58,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:58,979 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:30:58,979 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:30:58,980 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,980 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:30:58,980 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:30:58) method ... +01/30/13 11:30:58,980 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:30:58,980 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:30:58) method ... +01/30/13 11:30:58,981 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:30:58,981 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:30:58,981 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:30:58,981 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:30:58,982 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:30:58,982 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:30:58,982 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:30:58,982 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:30:58,985 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,985 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,986 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,987 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,988 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,989 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,990 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,991 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,992 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,993 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:58,994 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:30:58,999 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:30:58,1000 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:58,1000 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:30:58,1000 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:30:59,002 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:30:59,002 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:30:59,002 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,003 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:30:59,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,004 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:30:59,004 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,004 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:30:59,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,005 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:30:59,005 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,005 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:30:59,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,006 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:30:59,007 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,007 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:30:59,007 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,007 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:30:59,008 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,008 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:30:59,008 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,008 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:30:59,008 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,009 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:30:59,009 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,009 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:30:59,009 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,009 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:30:59,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,010 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:30:59,010 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,010 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:30:59,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,011 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:30:59,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,011 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:30:59,011 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,012 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:30:59,012 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,012 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:30:59,012 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,012 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:30:59,013 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,013 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:30:59,013 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,013 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:30:59,014 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,014 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:30:59,014 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,014 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:30:59,014 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,014 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:30:59,015 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:30:59,015 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:30:59,018 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:30:59,018 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,019 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:30:59,019 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,019 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:30:59,020 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,020 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:30:59,021 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,021 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:30:59,022 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,022 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:30:59,022 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:30:59,034 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:30:59,034 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:30:59,034 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:30:59,034 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:30:59,037 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:30:59,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:59,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,043 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:30:59,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:30:59,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,044 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:30:59,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:30:59,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,044 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:30:59,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:59,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,044 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:30:59,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:59,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,044 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:30:59,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:30:59,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,045 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:30:59,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:30:59,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,045 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:30:59,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:30:59,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,045 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:30:59,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:30:59,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,046 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:30:59,046 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:30:59,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,047 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:30:59,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:30:59,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,047 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:30:59,049 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:30:59,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,050 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:30:59,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:30:59,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,051 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:30:59,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:30:59,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,051 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:30:59,051 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:30:59,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,052 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:30:59,052 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:30:59,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,053 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:30:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:30:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,053 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:30:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:30:59,053 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,053 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:30:59,053 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:30:59,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,054 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:30:59,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:30:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,055 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:30:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:30:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,055 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:30:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:30:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,055 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:30:59,055 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:30:59,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,055 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:30:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:30:59,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,056 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:30:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:30:59,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,056 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:30:59,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:30:59,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,057 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:30:59,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:30:59,057 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,057 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:30:59,057 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:30:59,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,058 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:30:59,058 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:30:59,058 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,058 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:30:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:30:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,059 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:30:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:30:59,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,059 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:30:59,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:30:59,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,060 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:30:59,060 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:30:59,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,060 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:30:59,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:30:59,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,061 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:30:59,062 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:59,062 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,062 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:30:59,062 [1520] DEBUG index - Entering isPermitted(Accounts,MailerExport,) method ... +01/30/13 11:30:59,063 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:30:59,064 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:59,064 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,064 [1520] DEBUG index - query being executed : SELECT columnname,fieldlabel,uitype FROM vtiger_field WHERE tablename='vtiger_contactscf' and vtiger_field.presence in (0,2) +01/30/13 11:30:59,073 [1520] DEBUG index - query being executed : SELECT fieldid, columnname, fieldlabel FROM vtiger_field WHERE tablename='vtiger_contactdetails' AND uitype='56' and vtiger_field.presence in (0,2) +01/30/13 11:30:59,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:59,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,076 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:30:59,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:59,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,077 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:30:59,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:59,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,077 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:30:59,077 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:30:59,077 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,077 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:30:59,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:30:59,080 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:30:59,080 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:30:59,082 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:30:59,082 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:30:59,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:09,901 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:31:10,038 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:31:10,038 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:31:10,039 [1520] DEBUG index - ****Starting for new session +01/30/13 11:31:10,039 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:31:10,039 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:31:10,039 [1520] INFO index - About to take action index +01/30/13 11:31:10,039 [1520] DEBUG index - in index +01/30/13 11:31:10,039 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:31:10,040 [1520] INFO index - current module is Accounts +01/30/13 11:31:10,073 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:10,073 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:10,073 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:10,073 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,074 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,074 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:10,074 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:10,085 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,085 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,086 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,086 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:10,086 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:10,087 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:10,087 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,087 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:10,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,088 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:10,088 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,088 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:10,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,089 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:10,089 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,089 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:10,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,090 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:10,090 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,090 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:10,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,091 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:10,091 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,091 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:10,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,092 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:10,092 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,093 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:10,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,093 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:10,093 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,093 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:10,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,094 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:10,094 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,094 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:10,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,095 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:10,095 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,095 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:10,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,096 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:10,096 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,096 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:10,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,097 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:10,097 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,097 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:10,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,098 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:10,098 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,098 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:10,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,099 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:10,099 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,099 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:10,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,100 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:10,100 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,100 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:10,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,101 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:10,101 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,101 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:10,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,102 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:10,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,102 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:10,102 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,103 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:10,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,103 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:10,103 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,104 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:10,104 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,104 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:10,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,105 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:10,105 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,105 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:10,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,106 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:10,106 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,106 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:10,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,107 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:10,107 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,107 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:10,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,108 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:10,108 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,108 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:10,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,109 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:10,109 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,109 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:10,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,110 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:10,110 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,110 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:10,116 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:31:10,116 [1520] DEBUG index - Prepared sql query parameters : [289,1,Accounts,index,,2013-01-30 11:31:10] +01/30/13 11:31:10,118 [1520] DEBUG index - Current user is: admin +01/30/13 11:31:10,118 [1520] DEBUG index - Current theme is: softed +01/30/13 11:31:10,118 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:31:10,119 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:31:10,120 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:31:10,121 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:10,122 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:10,122 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:10,124 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:10,124 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,125 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,125 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:31:10,125 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:31:10,125 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:31:10,125 [1520] DEBUG index - including headers +01/30/13 11:31:10,125 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,126 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,129 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:10,129 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:10,131 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:31:10,132 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:31:10,132 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,132 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:31:10,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,133 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:31:10,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,133 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:31:10,133 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,134 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:31:10,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,134 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:31:10,134 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,134 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:31:10,135 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:31:10,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,143 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:10,143 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,143 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:10,144 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,144 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:31:10,144 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:31:10,144 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,145 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:31:10,145 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:31:10,146 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,146 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:10,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,147 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:31:10,147 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:31:10,148 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,148 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:10,148 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,148 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:31:10,148 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:31:10,149 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:10,150 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,150 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:31:10,150 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:31:10,150 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,150 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:10,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,151 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:31:10,151 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:31:10,151 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,152 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:31:10,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,152 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:31:10,152 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:31:10,153 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,153 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:10,153 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,153 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:31:10,153 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:31:10,154 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:10,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,155 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:31:10,155 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:31:10,155 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:10,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,156 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:31:10,156 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:31:10,157 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,157 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:10,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,157 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:31:10,157 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:31:10,158 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:10,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,158 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:31:10,158 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:31:10,159 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:10,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,160 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:31:10,160 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:31:10,160 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,160 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:10,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,161 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:31:10,161 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:31:10,161 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,162 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:10,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,162 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:31:10,162 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:31:10,163 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,163 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:10,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,164 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:31:10,164 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:31:10,164 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:10,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,165 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:31:10,165 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:31:10,166 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:10,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,166 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:31:10,166 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:31:10,167 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,167 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:31:10,167 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:31:10) method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:31:10) method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,168 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,169 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,169 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:31:10,169 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:31:10,169 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:31:10,172 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,173 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,174 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,174 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,175 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,176 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,176 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,177 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,178 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,179 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,180 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,181 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,182 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,183 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,183 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:31:10,186 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:31:10,187 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,187 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:31:10,187 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:10,189 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,189 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,190 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:31:10,190 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,190 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:31:10,190 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,191 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,192 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,192 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,192 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:31:10,192 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,192 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:31:10,193 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,193 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:31:10,193 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,193 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:31:10,194 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,194 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:31:10,194 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,194 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:31:10,195 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,195 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:31:10,195 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,195 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:31:10,196 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,196 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:31:10,196 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,196 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:31:10,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,197 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:31:10,197 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,197 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:31:10,197 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,198 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:31:10,198 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,198 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:31:10,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,199 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:31:10,199 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,199 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:31:10,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,200 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:31:10,200 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,200 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:31:10,200 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:31:10,201 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,202 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:31:10,202 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,202 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:31:10,202 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,202 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:31:10,203 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,203 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:31:10,203 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:31:10,203 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:10,209 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:31:10,209 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,209 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:31:10,210 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,210 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:31:10,211 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,211 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:31:10,212 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,212 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:31:10,213 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,213 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:10,213 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:31:10,215 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:31:10,215 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,215 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:31:10,215 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:31:10,218 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:31:10,224 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,224 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,224 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,225 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:31:10,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:10,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,225 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:31:10,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,226 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:10,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,226 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:31:10,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:10,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,226 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:31:10,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:10,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,227 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:31:10,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:10,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,227 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:31:10,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:10,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,228 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:31:10,228 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:10,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,228 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:31:10,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:31:10,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,229 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:31:10,230 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:10,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,231 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:31:10,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:31:10,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,231 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:31:10,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:31:10,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,232 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:31:10,232 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:31:10,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,233 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:31:10,233 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:10,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,233 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:31:10,233 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:10,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,233 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:31:10,233 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:31:10,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,234 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:31:10,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:31:10,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,234 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:31:10,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:31:10,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,235 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:31:10,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:10,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,236 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:31:10,236 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:10,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,236 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:31:10,236 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:10,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,236 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:31:10,236 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:10,236 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,237 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:31:10,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:10,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,237 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:31:10,237 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:10,237 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,237 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:31:10,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:10,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,238 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:31:10,238 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:10,238 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,238 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:31:10,238 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:10,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,239 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:10,239 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:10,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,239 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:31:10,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:10,239 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,239 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:31:10,239 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:10,240 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,240 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:31:10,240 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:10,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,241 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:31:10,241 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:10,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,241 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:31:10,242 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,242 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,242 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:31:10,242 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:31:10,243 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,247 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,247 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,247 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,248 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,248 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:31:10,248 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,249 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:31:10,249 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,249 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:31:10,250 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,250 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:31:10,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,251 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:31:10,251 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,251 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:31:10,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,252 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:10,252 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,253 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:31:10,253 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,253 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:31:10,253 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,253 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,254 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,254 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,254 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,254 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:10,254 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:10,267 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,267 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,267 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,267 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:31:10,268 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,268 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,268 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:31:10,268 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:31:10,271 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:31:10,272 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,272 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,272 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,273 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:31:10,273 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:31:10,274 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:31:10,275 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:10,275 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:31:10,275 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:10,276 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:10,276 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:31:10,276 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:31:10,287 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:10,287 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:10,289 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:10,289 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:10,291 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:10,291 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:31:10,291 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:31:10,292 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:31:10,292 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:31:10,293 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:31:10,293 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:10,294 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:10,294 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:31:10,297 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:10,297 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:31:10,298 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,298 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:10,300 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,301 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,301 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,301 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,301 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,301 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,302 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:31:10,302 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:31:10,302 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,304 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:10,304 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:31:10,304 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:31:10,304 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,304 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,305 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:31:10,305 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:10,308 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,308 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,309 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:31:10,309 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,310 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:31:10,310 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:31:10,312 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:31:10,313 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,313 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:31:10,313 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:31:10,313 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:31:10,313 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:10,313 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:31:10,314 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:31:10,314 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:31:10,314 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:10,314 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:31:10,314 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:31:10,314 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,315 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:10,315 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:10,316 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,316 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,316 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:10,317 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:10,319 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,319 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:31:10,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,319 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:31:10,319 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,319 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:31:10,320 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,321 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:31:10,321 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:10,330 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:31:10,330 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:31:10,347 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:31:10,351 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:31:10,351 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:31:10,353 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:10,353 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:10,353 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,353 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:10,354 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:10,355 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:10,356 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,357 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,358 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,359 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,360 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:10,361 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:31:10,365 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:10,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,365 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:31:10,369 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:10,369 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:10,410 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,411 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:31:10,413 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,413 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:31:10,417 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,418 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:31:10,420 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,420 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:31:10,428 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:10,428 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:31:10,506 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,507 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:31:10,509 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,509 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:31:10,511 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,511 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:31:10,513 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,513 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:31:10,515 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,515 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:31:10,518 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,518 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:31:10,519 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,520 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:31:10,521 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,521 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:31:10,524 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,524 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:31:10,527 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:10,527 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:31:10,574 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,574 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:31:10,576 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,576 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:31:10,578 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,578 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:31:10,580 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,580 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:31:10,587 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:31:10,587 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:10,590 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,590 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:31:10,597 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,597 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:31:10,611 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:10,611 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:31:10,664 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,664 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:31:10,666 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,666 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:31:10,673 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,673 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:31:10,675 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,676 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:31:10,677 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,677 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:31:10,679 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,679 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:31:10,681 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,681 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:31:10,690 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,690 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:31:10,699 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,699 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:31:10,701 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,702 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:31:10,704 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,704 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:31:10,709 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:10,709 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:31:10,712 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:10,716 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:10,717 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:10,720 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:10,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:10,721 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,721 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:31:10,721 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:10,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,722 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:31:10,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:10,722 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,722 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:31:10,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:10,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,723 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:31:10,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:10,723 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,723 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:31:10,723 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:10,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,724 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:31:10,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:10,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,724 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:31:10,724 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:10,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,725 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:31:10,725 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:10,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,725 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:10,725 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:10,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,726 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:10,726 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:10,726 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,726 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:31:10,727 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:10,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,727 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:31:10,727 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:10,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,727 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:31:10,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:10,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,728 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:31:10,728 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:10,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,728 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:31:10,729 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:10,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,729 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:31:10,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,729 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:31:10,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,730 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:31:10,730 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:10,730 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,730 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:31:10,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:10,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,731 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:31:10,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,731 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,732 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,732 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:10,732 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:10,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,733 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:31:10,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:10,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,733 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:31:10,733 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:10,733 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,734 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:31:10,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:10,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,734 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:31:10,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:10,734 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,735 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:31:10,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:10,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,735 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:31:10,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:10,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,736 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:31:10,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:10,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,736 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:31:10,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:10,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,737 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:31:10,737 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:10,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,737 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:31:10,737 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:10,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,738 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:31:10,738 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:10,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,738 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:31:10,738 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,739 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:31:10,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:10,739 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,739 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:31:10,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:31:10,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,741 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:31:10,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:31:10,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,741 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:31:10,741 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:10,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,741 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:31:10,741 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:10,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,742 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:31:10,742 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:10,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,742 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:31:10,742 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:10,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,742 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:31:10,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:10,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,742 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:31:10,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:10,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,743 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:31:10,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:10,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,743 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:31:10,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:10,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,743 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:31:10,743 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:10,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,743 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:31:10,744 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:10,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,744 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:31:10,744 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:10,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,744 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:31:10,744 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:10,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,744 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:31:10,744 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:10,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,745 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:31:10,745 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:10,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,745 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:31:10,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:10,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,745 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:31:10,745 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:10,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,745 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:31:10,745 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:10,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,746 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:31:10,746 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:10,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,746 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:31:10,746 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,747 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,813 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:31:10,813 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:31:10,821 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:10,822 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:10,823 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:31:10,823 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,826 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:31:10,827 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,838 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:31:10,838 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,842 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:10,842 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:10,847 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:10,847 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:10,847 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:10,848 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,848 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,848 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,848 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:10,849 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,849 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,849 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:10,849 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,849 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:10,849 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:10,852 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:31:10,852 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:10,857 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,858 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,858 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,858 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,858 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,859 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,859 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,859 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,860 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,860 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,860 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,860 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,860 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,861 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,861 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,861 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,861 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,862 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,862 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,862 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,862 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,862 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,863 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,863 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,863 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,863 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,864 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,864 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,864 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,864 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,866 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,866 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:31:10,869 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:31:10,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,873 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,873 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,875 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,876 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:31:10,876 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:31:10,876 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,876 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,877 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,877 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,877 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,878 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,879 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,879 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,879 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:10,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,880 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:10,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,881 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:10,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,881 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,881 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:10,881 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,882 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:10,882 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,882 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,882 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:10,883 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,884 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,884 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,884 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,884 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:31:10,885 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:31:10,886 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:10,886 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:10,888 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:31:10,888 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:31:10,891 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:31:10,891 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,891 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:31:10,891 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:10,896 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,896 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,897 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,897 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,898 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,898 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,899 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,899 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,899 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,899 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,899 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,899 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,900 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,900 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,901 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,901 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,901 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,901 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,902 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,902 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,902 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,902 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,903 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,903 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,904 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,904 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,904 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,904 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,905 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,905 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,905 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,905 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,906 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,906 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,906 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,906 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,910 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,910 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,910 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,910 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,910 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,910 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,910 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,910 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,911 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,911 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:31:10,914 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,914 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,914 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,915 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,915 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,916 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,916 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,916 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,916 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,916 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,917 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,917 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,917 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,918 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,918 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,918 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,919 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,919 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,920 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,920 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,920 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,921 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,921 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,921 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,921 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,922 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,922 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,922 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,922 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,922 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,923 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,923 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,923 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,924 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,927 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,927 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,927 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,927 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,927 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,928 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,928 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,928 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,928 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:10,930 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,930 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,930 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,931 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,931 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,931 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,931 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,932 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,932 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,932 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,932 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,932 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,932 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,932 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,933 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,933 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,934 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,934 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,934 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,935 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,935 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,935 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,935 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,936 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,936 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,936 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,937 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,938 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,939 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,939 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,939 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,939 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,939 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,939 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,940 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,943 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,943 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,943 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,944 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,944 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,944 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,944 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:10,946 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,946 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,947 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,947 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,947 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,948 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,948 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,948 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,948 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,949 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,949 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,949 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,949 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,950 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,950 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,950 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,951 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,951 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,951 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,951 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,952 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,952 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,952 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,952 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,953 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,953 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,953 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,954 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,954 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,954 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,955 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,955 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,955 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,955 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,955 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,955 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,955 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,956 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,959 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,959 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,959 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,960 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,960 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,960 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,960 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:31:10,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,963 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,963 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,964 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,964 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,964 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,965 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,965 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,966 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,966 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,966 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,966 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,967 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,967 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,967 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,967 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,968 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,968 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,968 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,968 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,969 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,969 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,970 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,970 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,970 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,971 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,971 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,971 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,971 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,971 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,971 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,972 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,972 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,972 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,973 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,976 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,976 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,976 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,976 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,977 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,977 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,977 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,977 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:31:10,979 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,979 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,979 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,980 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,980 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,980 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,980 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,981 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,981 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:10,981 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,982 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,982 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,982 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,983 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,983 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,983 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,983 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,984 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,984 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,984 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,984 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,985 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,985 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,985 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,986 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,987 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,987 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,987 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,988 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:10,988 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:10,988 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:10,988 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:10,988 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:10,988 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:10,989 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:10,992 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:10,992 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:10,993 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:10,993 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:10,993 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:10,993 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:10,993 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:10,993 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:10,993 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:10,993 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:31:11,004 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,004 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,004 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,005 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,005 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,005 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,005 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,006 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,006 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,007 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,007 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,007 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,007 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,008 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,008 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,008 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,009 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,009 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,009 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,009 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,010 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,010 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,010 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,010 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,011 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,011 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:11,011 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,012 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,012 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,012 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,013 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,013 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:11,013 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:11,014 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,014 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,014 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,014 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,015 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,018 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:11,018 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:11,018 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,018 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,018 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:11,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,019 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:11,019 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:11,019 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:31:11,022 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,022 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,022 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,023 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,023 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,023 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,023 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,024 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,024 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,025 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,025 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,025 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,025 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,026 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,026 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,026 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,027 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,027 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,027 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,027 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,028 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,028 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,028 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,028 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,029 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,029 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:11,029 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,030 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,030 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,030 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,030 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,031 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:11,031 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:11,031 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,031 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,032 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,032 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,032 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,036 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:11,036 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:11,036 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:11,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,036 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:11,037 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:11,037 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:31:11,041 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,041 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,041 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,042 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,042 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,042 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,042 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,043 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,043 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,044 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,044 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,044 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,045 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,045 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,045 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,045 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,046 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,046 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,046 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,046 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,047 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,047 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,047 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,047 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,048 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,048 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:11,049 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,049 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,050 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,050 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,050 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,050 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:11,050 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:11,051 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,051 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,051 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,051 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,052 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,055 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:11,055 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:11,055 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,055 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,055 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:11,055 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,055 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,055 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:11,056 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:11,056 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:31:11,058 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,058 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,058 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,059 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,059 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,059 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,060 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,060 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,061 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,061 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,061 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,061 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,062 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,062 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,062 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,062 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,063 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,063 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,063 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,063 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,064 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,064 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,064 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,064 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,065 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,065 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:11,065 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,066 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,066 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,066 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,066 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,067 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,067 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,067 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:11,067 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:11,067 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,067 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:11,068 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:11,068 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:11,068 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:11,071 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:11,072 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:11,072 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,072 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:11,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,072 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:11,072 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:11,072 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:11,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,075 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:11,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,075 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:11,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,075 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:11,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,075 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,075 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:11,075 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,076 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:11,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,076 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:11,076 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:31:11,076 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:31:11,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,077 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:11,077 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,077 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,081 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,082 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,082 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,082 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:11,082 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,082 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,089 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,089 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,090 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,090 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,090 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:11,090 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,090 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,092 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,092 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,092 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,092 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:11,092 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,093 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,095 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,095 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:11,095 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,095 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,097 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,097 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,097 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,097 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:11,097 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,097 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,101 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,101 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:11,101 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,101 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,105 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,105 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:11,105 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,105 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,107 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,107 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,107 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,107 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:11,107 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,108 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,109 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,109 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:11,109 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,109 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,111 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,111 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,111 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,111 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:11,111 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,111 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,118 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,119 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,119 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,119 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,119 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:11,119 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,119 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,130 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,130 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,130 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,130 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:11,131 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,131 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,133 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,133 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,133 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,133 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:11,134 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,134 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,138 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,138 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,138 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,138 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:11,138 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,138 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,140 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,140 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,140 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,140 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:11,141 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,141 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,142 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,143 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,143 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,143 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,143 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:11,143 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,143 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,145 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,145 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,145 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,145 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:11,145 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,145 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,147 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,147 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,147 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,147 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:11,147 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,147 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,149 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,149 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,149 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,149 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:11,149 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,150 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,151 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,151 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,151 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,152 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,152 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:31:11,152 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,152 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,155 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,155 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:31:11,156 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,156 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,165 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,165 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:31:11,165 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,166 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:11,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,170 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:11,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,170 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:11,170 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,170 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,172 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,172 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,172 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,173 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,173 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:11,173 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,173 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,174 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,174 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,175 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,175 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,175 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,175 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:11,175 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,175 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,177 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,177 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:11,177 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,177 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,179 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,179 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:11,179 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,179 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,181 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,181 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:11,181 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,181 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,183 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,183 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,183 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:11,183 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,184 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,185 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,185 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,186 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,186 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,186 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,186 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:11,186 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,186 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,188 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,188 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,188 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,189 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,189 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:11,189 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,189 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,191 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,191 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,191 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,191 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:11,191 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,191 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,196 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,196 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,196 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,196 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:11,196 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,196 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,198 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,198 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,198 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,198 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:11,198 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,198 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:11,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,200 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:11,200 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,200 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,200 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:11,200 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:11,201 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:31:11,206 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,206 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:11,206 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:31:11,206 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:31:11,206 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:31:11,209 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:31:11,209 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:31:11,209 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:31:11,209 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:11,211 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:31:11,211 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:31:11,211 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:31:11,211 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,211 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,211 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:31:11,212 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:31:11,222 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:31:11,222 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:31:11,222 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:11,225 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,225 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,226 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:11,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,226 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:11,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,226 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:11,226 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,226 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,227 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:11,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,227 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:11,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,227 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:11,227 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,227 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,227 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,228 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,228 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,228 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,228 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:11,228 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,229 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:11,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,229 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:11,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,229 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:11,229 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,229 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,230 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:11,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,230 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:11,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,230 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:11,230 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,230 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,230 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:11,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,231 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:11,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,231 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:11,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,231 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,231 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:31:11,231 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,232 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,232 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,232 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:11,232 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,232 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,233 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:11,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,233 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:11,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,233 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:11,233 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,233 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,233 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:11,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,234 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:11,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,234 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:11,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,234 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,234 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:11,234 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,235 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:11,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,235 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:11,235 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,235 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,235 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:11,235 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,235 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,236 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:31:11,236 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:31:11,238 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:31:11,238 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:31:11,238 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:31:11,238 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:31:11,238 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:31:11,238 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:31:11,238 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:11,244 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:11,244 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:11,244 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:31:11,244 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:31:11,248 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:31:11,248 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:11,248 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:31:11,248 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:31:11,249 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:11,250 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:31:11,250 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:11,250 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:11,253 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,253 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,253 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,254 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:31:11,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,254 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:31:11,254 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,254 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,254 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,255 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,255 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,255 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,255 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,255 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,256 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,256 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,256 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,256 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,256 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,257 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,259 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:31:11,260 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:31:11,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,260 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:31:11,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,260 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:31:11,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,260 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:31:11,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,261 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:31:11,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,261 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:31:11,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,261 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:31:11,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,262 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:31:11,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,262 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:31:11,265 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:11,265 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:11,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,265 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:31:11,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,265 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,266 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:11,266 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:11,266 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:11,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,266 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:31:11,266 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:11,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:11,266 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:31:11,269 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:31:11,269 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:11,269 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:13,483 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:31:13,619 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:31:13,619 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:31:13,619 [1520] DEBUG index - ****Starting for new session +01/30/13 11:31:13,620 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:31:13,620 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:31:13,620 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:31:13,620 [1520] DEBUG index - in CalendarAjax +01/30/13 11:31:13,620 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:31:13,620 [1520] INFO index - current module is Calendar +01/30/13 11:31:13,655 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:13,655 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:13,655 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:13,655 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:13,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:13,656 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:13,656 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:13,656 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:13,656 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:13,664 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:13,664 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:13,664 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:13,664 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:13,665 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:13,665 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:13,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,666 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:13,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,667 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:13,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,667 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:13,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,667 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:13,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,668 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:13,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,668 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:13,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,669 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:13,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,669 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:13,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,670 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:13,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,670 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:13,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,671 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:13,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,671 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:13,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,672 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:13,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,673 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:13,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,673 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:13,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,674 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:13,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,674 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:13,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,675 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:13,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,675 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:13,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,676 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:13,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,676 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:13,676 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,676 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:13,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,677 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:13,677 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,677 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:13,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,678 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:13,678 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,678 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:13,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,679 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:13,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,679 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:13,679 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,680 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:13,680 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,680 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:13,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,681 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:13,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,681 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:13,681 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,682 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:13,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,682 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:13,682 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,683 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:13,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,683 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:13,683 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,684 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:13,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,684 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:13,684 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,685 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:13,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,685 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:13,685 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,686 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:13,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,686 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:13,686 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,687 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:13,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,687 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:13,687 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,687 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:13,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,688 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:13,688 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:13,688 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:13,689 [1520] DEBUG index - Current user is: admin +01/30/13 11:31:13,689 [1520] DEBUG index - Current theme is: softed +01/30/13 11:31:13,689 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:31:13,689 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:31:13,691 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:31:13,691 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:13,693 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:13,693 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:13,694 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:13,695 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:13,695 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:13,695 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:31:13,695 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:31:13,695 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:31:13,696 [1520] DEBUG index - skipping headers +01/30/13 11:31:13,697 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:31:13,697 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:13,701 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:13,702 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:31:13,702 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:31:13,702 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:31:13,706 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:32')) +01/30/13 11:31:13,708 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:31:23,872 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:31:24,003 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:31:24,003 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:31:24,003 [1520] DEBUG index - ****Starting for new session +01/30/13 11:31:24,004 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:31:24,004 [1520] DEBUG index - array ( + 'search_field' => 'accountname', + 'searchtype' => 'BasicSearch', + 'search_text' => 'v', + 'parenttab' => 'Marketing', + 'query' => 'true', + 'file' => 'index', + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'ajax' => 'true', + 'search' => 'true', +) +01/30/13 11:31:24,004 [1520] INFO index - About to take action AccountsAjax +01/30/13 11:31:24,004 [1520] DEBUG index - in AccountsAjax +01/30/13 11:31:24,004 [1520] INFO index - current page is modules/Accounts/AccountsAjax.php +01/30/13 11:31:24,004 [1520] INFO index - current module is Accounts +01/30/13 11:31:24,038 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:24,038 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:24,038 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:24,038 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,039 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,039 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:24,039 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:24,047 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,047 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,047 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,047 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:24,048 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:24,048 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:24,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,049 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:24,049 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,049 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:24,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,050 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:24,050 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,050 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:24,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,051 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:24,051 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,051 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:24,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,052 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:24,052 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,052 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:24,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,053 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:24,053 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,053 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:24,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,054 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:24,054 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,054 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:24,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,055 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:24,055 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,055 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:24,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,056 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:24,056 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,056 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:24,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,057 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:24,057 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,057 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:24,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,058 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:24,058 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,058 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:24,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,059 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:24,059 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,059 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,060 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:24,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,061 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:24,061 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,061 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:24,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,062 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:24,062 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,062 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:24,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,063 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:24,063 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,063 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:24,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,064 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:24,064 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,064 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:24,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,065 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:24,065 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,065 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:24,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,066 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:24,066 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,066 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:24,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,067 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:24,067 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,067 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:24,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,068 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:24,068 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,068 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:24,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,069 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:24,069 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,069 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:24,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,070 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:24,070 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,070 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:24,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,071 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:24,071 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,071 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:24,074 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:31:24,074 [1520] DEBUG index - Prepared sql query parameters : [290,1,Accounts,AccountsAjax,,2013-01-30 11:31:24] +01/30/13 11:31:24,088 [1520] DEBUG index - Current user is: admin +01/30/13 11:31:24,088 [1520] DEBUG index - Current theme is: softed +01/30/13 11:31:24,088 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:31:24,088 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:31:24,090 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:31:24,090 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:24,092 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:24,092 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:24,093 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:24,094 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,094 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:31:24,094 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:31:24,094 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:31:24,094 [1520] DEBUG index - skipping headers +01/30/13 11:31:24,095 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:31:24,096 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,103 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,103 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,104 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:31:24,104 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,104 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,105 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:31:24,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,105 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:31:24,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,106 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:31:24,106 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,106 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:31:24,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,107 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:31:24,107 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,108 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:24,108 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,108 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,109 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,109 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,109 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:24,110 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:24,117 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,117 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,117 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:31:24,117 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,117 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,118 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:31:24,118 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:31:24,122 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:31:24,122 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,123 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,123 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,124 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:31:24,124 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,124 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:31:24,125 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,125 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:31:24,125 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:31:24,125 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:31:24,125 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:31:24,125 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:24,125 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:31:24,126 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:24,127 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:24,127 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:31:24,127 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:31:24,129 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:24,129 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:24,132 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:24,132 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:24,134 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:24,134 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:31:24,134 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:31:24,135 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:31:24,135 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:31:24,137 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:31:24,137 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:24,138 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:24,138 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:31:24,139 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:24,139 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:31:24,140 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,140 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:24,143 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,143 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,143 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,143 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,143 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,143 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,144 [1520] DEBUG index - Entering isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/30/13 11:31:24,144 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:31:24,145 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,148 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:24,148 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:31:24,148 [1520] DEBUG index - Exiting isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/30/13 11:31:24,149 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,149 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,149 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:31:24,149 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:24,157 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,157 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,158 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:31:24,158 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,160 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:31:24,160 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:31:24,161 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:31:24,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,162 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:31:24,162 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:31:24,162 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:31:24,163 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:24,163 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:31:24,163 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:31:24,163 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:31:24,163 [1520] DEBUG index - Entering when status=0 +01/30/13 11:31:24,163 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:31:24,163 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:31:24,164 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,164 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:24,164 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:24,167 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,167 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,167 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:24,167 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:24,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,169 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:31:24,169 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,169 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,170 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:31:24,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,171 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:31:24,171 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:24,175 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:31:24,175 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:31:24,189 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:31:24,192 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:31:24,192 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:31:24,194 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,195 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,196 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:24,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:24,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:24,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:24,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:24,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:24,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,203 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:24,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:24,203 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:24,203 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:31:24,211 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:24,211 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,211 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:31:24,215 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:24,215 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:24,262 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,262 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:31:24,268 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,268 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:31:24,269 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,270 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:31:24,274 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,274 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:31:24,277 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:24,277 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:31:24,358 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,358 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:31:24,360 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,361 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:31:24,365 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,365 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:31:24,367 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,368 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:31:24,370 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,370 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:31:24,372 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,372 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:31:24,375 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,375 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:31:24,377 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,378 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:31:24,380 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,380 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:31:24,386 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:24,386 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:31:24,436 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,437 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:31:24,441 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,442 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:31:24,447 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,447 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:31:24,451 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,451 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:31:24,455 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:31:24,455 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:24,462 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,462 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:31:24,464 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,465 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:31:24,468 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:31:24,468 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:31:24,516 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,516 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:31:24,519 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,520 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:31:24,522 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,522 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:31:24,526 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,526 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:31:24,528 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,528 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:31:24,536 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,537 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:31:24,539 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,539 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:31:24,542 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,542 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:31:24,544 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,544 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:31:24,546 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,547 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:31:24,548 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,548 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:31:24,550 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:31:24,551 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:31:24,552 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:24,557 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:24,557 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:24,560 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:24,561 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:24,563 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,564 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:31:24,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:24,564 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,564 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:31:24,564 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:24,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,565 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:31:24,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:24,566 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,566 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:31:24,566 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:24,567 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,567 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:31:24,567 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:24,568 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,568 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:31:24,568 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:24,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,569 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:31:24,569 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:24,569 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,570 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:31:24,570 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:24,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,571 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:24,571 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:24,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,571 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:24,571 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:24,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,572 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:31:24,572 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:24,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,572 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:31:24,572 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:24,572 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,573 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:31:24,573 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:24,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,573 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:31:24,573 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:24,573 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,573 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:31:24,573 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:24,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,574 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:31:24,574 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:24,574 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,574 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:31:24,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:24,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,575 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:31:24,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:24,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,575 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:31:24,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:24,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,576 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:31:24,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,576 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,576 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,576 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:24,576 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:24,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,577 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:31:24,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:24,577 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,577 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:31:24,577 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:24,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,578 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:31:24,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:24,578 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,578 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:31:24,578 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:24,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,579 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:31:24,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:24,579 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,579 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:31:24,579 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:24,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,580 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:31:24,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:24,580 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,580 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:31:24,580 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:24,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,581 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:31:24,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:24,581 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,581 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:31:24,581 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:24,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,582 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:31:24,582 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:24,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,582 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:31:24,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:24,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,582 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:31:24,582 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:24,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,583 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:31:24,583 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:31:24,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,584 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:31:24,584 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:31:24,584 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,584 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:31:24,584 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:24,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,585 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:31:24,585 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:24,585 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,585 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:31:24,585 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:24,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,586 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:31:24,586 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:24,586 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,586 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:31:24,586 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:24,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,587 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:31:24,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:24,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,587 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:31:24,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:24,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,588 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:31:24,588 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:24,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,588 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:31:24,588 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:24,588 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,589 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:31:24,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:24,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,589 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:31:24,589 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:24,589 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,589 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:31:24,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:24,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,590 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:31:24,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:24,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,590 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:31:24,590 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:24,590 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,591 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:31:24,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:24,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,591 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:31:24,591 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:24,591 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,591 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:31:24,591 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:24,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,592 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:31:24,592 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:24,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,592 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:31:24,593 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:24,593 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:24,658 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:31:24,658 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:31:24,660 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:24,660 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:24,661 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:31:24,662 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,676 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:31:24,677 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,680 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:31:24,680 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,745 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:31:24,746 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:24,755 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:24,756 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:24,756 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:24,756 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,756 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,757 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:24,757 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,757 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,757 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:24,757 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,758 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:31:24,758 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:24,760 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:31:24,760 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:24,763 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,763 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,763 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,763 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,764 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,764 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,764 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,764 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,764 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,765 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,765 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,765 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,765 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,765 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,766 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,766 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,766 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,766 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,766 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,767 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,767 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,767 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,767 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,767 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,768 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,768 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,768 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,768 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,768 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,769 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,769 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,769 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,769 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,770 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,770 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,770 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,770 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,770 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,771 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,772 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,772 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,772 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE '%v%') ) AND vtiger_account.accountid > 0 +01/30/13 11:31:24,776 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE '%v%') ) AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:31:24,780 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,780 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,783 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,785 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:24,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,786 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:24,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,786 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:24,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,786 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:24,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,787 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:24,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,787 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:24,787 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,788 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:31:24,789 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:31:24,789 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:24,789 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:24,791 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?) +01/30/13 11:31:24,791 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1] +01/30/13 11:31:24,794 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:31:24,795 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,795 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:31:24,795 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:24,801 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,802 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,803 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,803 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,805 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,805 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,805 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,807 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,807 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,808 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,809 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,810 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,810 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,811 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,812 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,814 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,814 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,815 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,815 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,815 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,815 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,816 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,816 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,822 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,822 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,822 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,822 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,823 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,823 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,823 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,823 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,823 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,823 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:31:24,825 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,825 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,826 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,826 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,828 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,828 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,828 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,829 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,829 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,830 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,830 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,832 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,832 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,833 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,833 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,835 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,835 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,837 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,837 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,837 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,837 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,838 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,844 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,844 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,844 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,844 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,844 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,844 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,845 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,845 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:31:24,847 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,847 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,848 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,849 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,850 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,850 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,850 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,850 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,850 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,851 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,851 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,852 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,852 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,854 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,854 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,855 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,855 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,857 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,858 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,859 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,859 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,859 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,859 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,859 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,860 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,860 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,866 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,866 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,866 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,866 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,866 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,866 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,866 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,866 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,866 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,867 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:31:24,869 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,869 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,870 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,870 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,871 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,871 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,871 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,873 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,873 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,874 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,874 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,875 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,875 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,876 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,877 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,879 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,879 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,880 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,880 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,880 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,880 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,881 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,881 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,881 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,888 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,888 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,888 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,888 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,888 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,888 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,889 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,889 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,889 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:31:24,894 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,894 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,895 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,895 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,896 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,896 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,896 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,896 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,896 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,898 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,898 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,899 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,899 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,900 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,900 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,901 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,902 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,904 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,904 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,905 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,905 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,906 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,906 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,912 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,912 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,912 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,912 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,912 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,913 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,913 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,913 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,913 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,913 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:31:24,915 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,915 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,916 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,916 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,917 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,918 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,918 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,918 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,918 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,919 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,919 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,920 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,921 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,922 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,922 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,923 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,923 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,925 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,926 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,927 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,927 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,927 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,927 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,927 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,928 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,928 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,934 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,934 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,934 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,934 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,934 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,934 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,934 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,934 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,934 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,934 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:31:24,941 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,941 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,942 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,942 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,943 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,943 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,943 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,944 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,944 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,945 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,945 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,946 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,946 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,947 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,947 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,948 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,951 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,951 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,952 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,952 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,953 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,953 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,953 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,959 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,959 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,959 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,960 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,960 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,960 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,960 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:31:24,962 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,962 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,965 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:24,965 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,965 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,966 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,966 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,967 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,967 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,968 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,968 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,969 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:24,970 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,972 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,972 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,973 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,974 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:31:24,974 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:31:24,974 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:24,975 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:24,975 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:24,981 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:24,981 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:24,981 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:24,981 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:24,981 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:24,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,982 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:31:24,982 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:31:24,982 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:31:24,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,990 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:24,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,990 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:24,990 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,990 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,990 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:24,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,991 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:24,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,991 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:24,991 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,991 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,991 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:24,991 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:31:24,992 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:31:24,992 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,992 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,992 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:24,992 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:24,992 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:24,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,994 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:24,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,994 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:24,995 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:24,995 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:24,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,996 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:24,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,997 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:24,997 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:24,997 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:24,998 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,998 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:24,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:24,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:24,999 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:24,999 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:24,999 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,000 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,001 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,001 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:25,001 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,001 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,003 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,003 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,004 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:25,004 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,004 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,005 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,006 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:25,006 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,006 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,008 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,008 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:25,008 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,008 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,011 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,011 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:25,011 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,012 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,014 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,014 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:25,014 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,014 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,018 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,019 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:25,019 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,019 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,020 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,021 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:25,021 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,021 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,023 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,023 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:25,023 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,023 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,025 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,025 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:25,025 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,026 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,027 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,028 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:25,028 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,028 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,029 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,029 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,030 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:25,030 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,030 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,031 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,031 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:25,032 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,032 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,036 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,036 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,036 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,037 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,037 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,037 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:25,037 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,037 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,043 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,043 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,043 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,043 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:25,044 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,044 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,045 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,046 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:25,046 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,046 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,049 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,049 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:31:25,049 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,050 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,051 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,051 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,051 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,052 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:31:25,052 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,052 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,054 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,054 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,054 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,054 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:31:25,054 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,054 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:31:25,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,056 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:25,056 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,056 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,056 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:25,056 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,057 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,060 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,060 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,061 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,061 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,061 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,061 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:25,061 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,061 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,071 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,071 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,072 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,072 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,072 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,072 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:25,072 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,072 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,074 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,074 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,074 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,074 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:25,074 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,074 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,076 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,076 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,076 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,077 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:25,077 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,077 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,079 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,079 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:25,079 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,079 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,080 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,081 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,081 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,081 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,081 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:25,081 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,081 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,093 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,093 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,093 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,094 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,094 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:25,094 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,094 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,095 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,095 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,096 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,096 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,096 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,096 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:25,096 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,096 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,098 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,098 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,098 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,098 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:25,098 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,098 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,100 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,101 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,101 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,101 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,101 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:25,101 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,101 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,105 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,105 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,105 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,105 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:25,105 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,105 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:31:25,108 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,108 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,108 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:25,109 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,109 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,109 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:25,109 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:31:25,109 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:31:25,115 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,115 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,115 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:25,115 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:31:25,116 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:31:25,116 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:25,116 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:25,116 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:31:25,116 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:31:25,116 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:31:25,119 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:31:25,119 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:31:25,119 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:31:25,119 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:25,121 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:31:25,121 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:31:25,121 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:31:25,121 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:25,121 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:25,121 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:31:25,121 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:31:25,149 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:31:25,149 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:31:25,149 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:25,153 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,154 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:25,154 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,154 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,154 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:25,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,155 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:25,155 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,155 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,156 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:25,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,156 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,156 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:25,156 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,157 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:25,157 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,157 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,157 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:25,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,158 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:25,158 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,158 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,159 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:25,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,159 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,159 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:25,159 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,160 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:25,160 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,160 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,160 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:25,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,161 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:25,161 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,161 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,161 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:25,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,162 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:25,162 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,162 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,163 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:25,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,163 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,163 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:25,163 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,164 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:25,164 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,164 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,164 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:25,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,165 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:31:25,165 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,165 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,166 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:25,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,166 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,166 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:25,166 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,167 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:25,167 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,167 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,167 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:25,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,168 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:25,168 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,168 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,168 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:25,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,169 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:25,169 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,169 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,170 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:25,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,170 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:25,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,170 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:25,170 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,170 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,170 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:25,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,171 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:25,171 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,171 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,171 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:25,171 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:25,171 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:25,171 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:31:25,171 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:31:25,176 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:31:25,176 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:31:25,176 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:31:25,176 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:31:25,176 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:31:25,176 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:31:25,176 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:25,181 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:25,181 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:25,181 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:31:25,183 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:31:25,183 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:31:25,185 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:31:25,186 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:25,186 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:31:25,186 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:31:25,186 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:25,203 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:31:25,203 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:25,203 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:25,206 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:25,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:25,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,207 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:31:25,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,207 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:25,207 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,207 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,207 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:25,208 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:25,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:25,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,208 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:31:25,208 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:25,208 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:25,208 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:31:53,802 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:31:53,937 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:31:53,937 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:31:53,938 [1520] DEBUG index - ****Starting for new session +01/30/13 11:31:53,938 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:31:53,938 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:31:53,938 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:31:53,939 [1520] DEBUG index - in CalendarAjax +01/30/13 11:31:53,939 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:31:53,939 [1520] INFO index - current module is Calendar +01/30/13 11:31:53,977 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:53,977 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:53,977 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:53,977 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:53,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:53,978 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:53,978 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:53,978 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:53,978 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:53,989 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:53,989 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:53,989 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:53,989 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:53,989 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:53,990 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:53,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,990 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:53,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,991 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:53,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,991 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:53,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,992 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:53,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,992 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:53,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,993 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:53,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,993 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:53,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,994 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:53,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,994 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:53,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,995 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:53,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:53,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,996 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:53,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,996 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:53,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,997 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:53,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,997 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:53,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,998 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:53,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,998 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:53,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,998 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:53,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,999 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:53,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,999 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:53,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:53,1000 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:54,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,000 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,001 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:54,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,002 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:54,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,002 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:54,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,003 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:54,003 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,003 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:54,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,004 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:54,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,004 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:54,004 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,005 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:54,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,005 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:54,005 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,005 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:54,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,006 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:54,006 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,006 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:54,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,007 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:54,007 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,008 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:54,008 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,008 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:54,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,009 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:54,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,009 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:54,009 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,010 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:54,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,010 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:54,010 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,011 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:54,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,011 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:54,011 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,012 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:54,012 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:54,012 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:54,012 [1520] DEBUG index - Current user is: admin +01/30/13 11:31:54,012 [1520] DEBUG index - Current theme is: softed +01/30/13 11:31:54,013 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:31:54,013 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:31:54,014 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:31:54,014 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:54,016 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:54,016 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:54,018 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:54,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:54,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:54,019 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:31:54,020 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:31:54,020 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:31:54,020 [1520] DEBUG index - skipping headers +01/30/13 11:31:54,021 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:31:54,021 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:54,026 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:54,027 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:31:54,027 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:31:54,027 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:31:54,033 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:32')) +01/30/13 11:31:54,042 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:31:58,145 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:31:58,274 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:31:58,275 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:31:58,275 [1520] DEBUG index - ****Starting for new session +01/30/13 11:31:58,275 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:31:58,275 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'EditView', + 'return_action' => 'DetailView', + 'parenttab' => 'Marketing', +) +01/30/13 11:31:58,275 [1520] INFO index - About to take action EditView +01/30/13 11:31:58,276 [1520] DEBUG index - in EditView +01/30/13 11:31:58,276 [1520] INFO index - current page is modules/Accounts/EditView.php +01/30/13 11:31:58,276 [1520] INFO index - current module is Accounts +01/30/13 11:31:58,313 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:31:58,313 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:31:58,313 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:31:58,314 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:58,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,314 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:58,314 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,314 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:58,314 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:31:58,326 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:31:58,326 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,326 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:58,326 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:31:58,327 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:31:58,328 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:31:58,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,328 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:31:58,328 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,329 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:31:58,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,329 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:31:58,329 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,329 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:58,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,330 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:31:58,330 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,330 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:31:58,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,331 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:31:58,331 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,331 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:31:58,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,332 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:31:58,332 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,332 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:31:58,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,333 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:31:58,333 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,333 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:31:58,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,334 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:31:58,334 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,334 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:31:58,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,335 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:31:58,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,335 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:31:58,335 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,336 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:31:58,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,336 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:31:58,336 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,337 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:31:58,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,337 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:31:58,337 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,337 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:31:58,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,338 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:31:58,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,338 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:31:58,338 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,339 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:31:58,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,339 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:31:58,339 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,339 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:31:58,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,340 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:31:58,340 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,340 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:31:58,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,341 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:31:58,341 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,341 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:31:58,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,342 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:31:58,342 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,342 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:31:58,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,343 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:31:58,343 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,343 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:31:58,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,344 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:31:58,344 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,344 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:31:58,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,345 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:31:58,345 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,345 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:31:58,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,346 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:31:58,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,346 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:31:58,346 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,347 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:31:58,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,347 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:31:58,347 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,347 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:31:58,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,348 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:31:58,348 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,348 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:31:58,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,349 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:31:58,349 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,349 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:31:58,353 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:31:58,353 [1520] DEBUG index - Prepared sql query parameters : [291,1,Accounts,EditView,,2013-01-30 11:31:58] +01/30/13 11:31:58,375 [1520] DEBUG index - Current user is: admin +01/30/13 11:31:58,376 [1520] DEBUG index - Current theme is: softed +01/30/13 11:31:58,376 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:31:58,376 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:31:58,378 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:31:58,378 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:31:58,380 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:31:58,380 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:31:58,381 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:31:58,381 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,382 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:31:58,382 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:31:58,382 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:31:58,382 [1520] DEBUG index - including headers +01/30/13 11:31:58,382 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:31:58,383 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:31:58,386 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,386 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,389 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:31:58,389 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:31:58,390 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,390 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:31:58,390 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,390 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:31:58,391 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,391 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:31:58,391 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,391 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:31:58,391 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,392 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:31:58,392 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,392 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:31:58,392 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,392 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:31:58,393 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:31:58,393 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:31:58,393 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:31:58,393 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:31:58,404 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,404 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,404 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:58,404 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:58,404 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,405 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:58,405 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,405 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:31:58,405 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:31:58,406 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,406 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:58,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,407 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:31:58,407 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:31:58,407 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,407 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:58,408 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,409 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:31:58,409 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:31:58,409 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,409 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:58,410 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,410 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:31:58,410 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:31:58,410 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,411 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:58,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,411 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:31:58,411 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:31:58,412 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:58,412 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,412 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:31:58,413 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:31:58,413 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,413 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:31:58,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,414 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:31:58,414 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:31:58,414 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,414 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:58,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,415 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:31:58,415 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:31:58,416 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:58,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,417 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:31:58,417 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:31:58,417 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:58,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,418 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:31:58,418 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:31:58,419 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,419 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:58,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,419 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:31:58,419 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:31:58,420 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:58,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,421 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:31:58,421 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:31:58,421 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,421 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:58,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,422 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:31:58,422 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:31:58,422 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,423 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:58,423 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,423 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:31:58,423 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:31:58,424 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,424 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:58,424 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,424 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:31:58,424 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:31:58,425 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,425 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:58,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,426 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:31:58,426 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:31:58,427 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,427 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:58,427 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,427 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:31:58,427 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:31:58,428 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:58,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,429 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:31:58,429 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:31:58,429 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,429 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:31:58,429 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:31:58) method ... +01/30/13 11:31:58,430 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:31:58,430 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:31:58) method ... +01/30/13 11:31:58,430 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:31:58,430 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:58,430 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:58,431 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:31:58,431 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:31:58,432 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:31:58,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,437 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,438 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,439 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,440 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,441 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,442 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,443 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,444 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,445 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,446 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,446 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,446 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:31:58,452 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:31:58,452 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,453 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:31:58,453 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:58,454 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:31:58,455 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:31:58,455 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:31:58,455 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,456 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:31:58,456 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,456 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:31:58,456 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,456 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:31:58,457 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,457 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,457 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,457 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,458 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,459 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:31:58,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,460 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:31:58,460 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,460 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,461 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:31:58,462 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,462 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:31:58,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,462 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:31:58,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,463 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:31:58,463 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,463 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:31:58,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,464 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:31:58,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,464 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:31:58,464 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,465 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:31:58,465 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,465 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:31:58,465 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,465 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:31:58,466 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,466 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:31:58,466 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,466 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:31:58,467 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,467 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:31:58,467 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,467 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:31:58,467 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,468 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:31:58,468 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:31:58,468 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:31:58,474 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:31:58,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,475 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:31:58,475 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,476 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:31:58,476 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,476 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:31:58,477 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,477 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:31:58,478 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,478 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:58,478 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:31:58,480 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:31:58,480 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,481 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:31:58,481 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:31:58,484 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:31:58,490 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,490 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,490 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:58,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:31:58,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,491 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:31:58,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:31:58,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,491 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:31:58,491 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,491 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,492 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:58,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:31:58,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,492 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:31:58,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:31:58,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,492 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:31:58,492 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:31:58,492 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,493 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:31:58,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:31:58,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,493 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:31:58,493 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:31:58,493 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,494 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:31:58,494 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:31:58,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,494 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:31:58,494 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:31:58,494 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,495 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:31:58,497 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:31:58,497 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,497 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:31:58,497 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:31:58,498 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,498 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:31:58,498 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:31:58,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,499 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:31:58,499 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:31:58,499 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,499 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:31:58,499 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:31:58,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,500 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:31:58,500 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:31:58,500 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,500 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:31:58,500 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:31:58,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,501 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:31:58,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:31:58,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,501 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:31:58,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:31:58,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,502 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:31:58,502 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:31:58,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,502 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:31:58,502 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:31:58,502 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,503 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:31:58,503 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:31:58,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,503 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:31:58,503 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:31:58,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,503 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:31:58,503 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:31:58,503 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,504 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:31:58,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:31:58,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,504 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:31:58,504 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:31:58,504 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,504 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:31:58,505 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:31:58,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,505 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:31:58,505 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:31:58,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,505 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:31:58,506 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:31:58,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,506 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:31:58,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:31:58,506 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,506 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:31:58,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:31:58,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,507 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:31:58,507 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:31:58,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,508 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:31:58,508 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:31:58,508 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,509 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:31:58,509 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,509 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,509 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:31:58,510 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:58,510 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,511 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:31:58,512 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:31:58,512 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,512 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,512 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,512 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:31:58,512 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:58,529 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,529 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,530 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:31:58,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:31:58,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Entering setObjectValuesFromRequest(Accounts) method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Exiting setObjectValuesFromRequest method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Entering getView() method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Exiting getView method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,) method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,532 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:31:58,532 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:58,534 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,534 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,535 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,535 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:31:58,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,535 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,535 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,535 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,536 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,536 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,536 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:31:58,536 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/30/13 11:31:58,545 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:31:58,545 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:31:58,546 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,546 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,546 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:58,546 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,547 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:31:58,547 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,547 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,547 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:58,548 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,548 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:31:58,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,549 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:58,549 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,549 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:31:58,550 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,550 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,550 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:58,550 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,550 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:31:58,551 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,551 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,551 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:58,551 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,552 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:31:58,552 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,552 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,552 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:58,553 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,553 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:31:58,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,554 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:58,554 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,554 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:31:58,555 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,555 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,555 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:58,555 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,556 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:31:58,556 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,556 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,556 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:58,557 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,557 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:31:58,558 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,558 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,558 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:58,558 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,558 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:31:58,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,559 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:58,559 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,560 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:31:58,560 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,560 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,560 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:58,560 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,561 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:31:58,561 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,562 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,562 [1520] DEBUG index - Entering getRoleInformation(H2) method ... +01/30/13 11:31:58,562 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:31:58,562 [1520] DEBUG index - Prepared sql query parameters : [H2] +01/30/13 11:31:58,566 [1520] DEBUG index - Exiting getRoleInformation method ... +01/30/13 11:31:58,566 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/30/13 11:31:58,566 [1520] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/30/13 11:31:58,569 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,569 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,569 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,569 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,580 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #494 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #494 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,581 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,581 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,586 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,586 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,586 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,586 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,589 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,590 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,590 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,590 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,594 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,595 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,595 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,595 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:31:58,597 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,597 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,617 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,617 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:31:58,618 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:31:58,618 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:31:58,618 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:31:58,618 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:31:58,618 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:31:58,619 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:31:58,619 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:31:58,619 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:31:58,619 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:31:58,619 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:31:58,620 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:31:58,620 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:31:58,620 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:31:58,620 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:31:58,620 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:31:58,621 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:31:58,621 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:31:58,621 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:31:58,621 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:31:58,621 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:31:58,622 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:31:58,622 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:31:58,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,622 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:58,623 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,624 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:31:58,625 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,625 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,625 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,625 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,626 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,626 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,631 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #502 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #502 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,633 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,633 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,636 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,636 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,636 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,637 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,643 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,643 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,644 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,644 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,648 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,649 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,649 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,649 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:31:58,652 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,653 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,662 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,662 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:31:58,662 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:31:58,662 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:31:58,663 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:31:58,663 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:31:58,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,663 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:58,664 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,665 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:31:58,666 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,666 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,666 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,666 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,667 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,667 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,671 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #510 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #510 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,673 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,673 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,676 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,676 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,676 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,676 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,680 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,680 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,681 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,681 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,684 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,685 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,685 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,685 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:31:58,688 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,688 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,702 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,702 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:31:58,702 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:31:58,702 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:31:58,702 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:31:58,703 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:31:58,703 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:31:58,703 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:31:58,703 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:31:58,703 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:31:58,704 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:31:58,704 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:31:58,704 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,704 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:58,705 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,706 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,707 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,707 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:58,707 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,708 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:31:58,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,710 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:58,710 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,711 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:31:58,712 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:31:58,712 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:31:58,712 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:31:58,713 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:31:58,715 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:31:58,715 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:31:58,715 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:31:58,715 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:31:58,715 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,716 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:58,716 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,716 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:31:58,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,717 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,717 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:58,717 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:31:58,717 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:31:58,719 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:31:58,719 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:58,720 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:58,720 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:31:58,720 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:31:58,722 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,723 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,725 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,725 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,727 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:58,727 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:58,727 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:58,727 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:58,728 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:58,728 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:58,728 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:58,729 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:58,729 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:31:58,733 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:58,733 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:58,733 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:58,733 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:58,733 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:58,733 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:58,733 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,734 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:31:58,735 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,735 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:58,735 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,736 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:31:58,736 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,736 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,737 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:58,737 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,737 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:31:58,738 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,738 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,738 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:58,738 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,739 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:31:58,740 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,740 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,740 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,741 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:31:58,741 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,741 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,742 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,742 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:31:58,743 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,743 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:58,743 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,744 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:31:58,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,744 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,744 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:58,745 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,745 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:31:58,746 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,746 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:58,746 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,746 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:31:58,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,747 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,747 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:58,747 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,748 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,748 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,748 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:58,748 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,749 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,749 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,750 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:58,750 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,750 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:31:58,751 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,751 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:58,751 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,751 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:31:58,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,752 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:58,752 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,753 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:31:58,753 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,753 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:58,753 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,754 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,754 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,754 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,754 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,755 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,755 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,755 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,755 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,755 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:31:58,755 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:31:58,755 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,BAS) method ... +01/30/13 11:31:58,756 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,756 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,756 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:31:58,756 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:58,759 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,759 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,760 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:31:58,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,760 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,760 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,760 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,761 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:31:58,761 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,BAS] +01/30/13 11:31:58,768 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0, +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0, +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/30/13 11:31:58,768 [1520] DEBUG index - Entering getOutputHtml(2,accountname,Account Name,100,Array,1,Accounts) method ... +01/30/13 11:31:58,769 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,769 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,769 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:58,769 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,770 [1520] DEBUG index - Entering getOutputHtml(4,account_no,Account No,100,Array,1,Accounts) method ... +01/30/13 11:31:58,770 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,770 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,770 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:58,770 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,771 [1520] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/30/13 11:31:58,771 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,772 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,772 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:58,772 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,772 [1520] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/30/13 11:31:58,773 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,773 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,773 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:58,773 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,774 [1520] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/30/13 11:31:58,774 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,774 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,774 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:58,774 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,775 [1520] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/30/13 11:31:58,775 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,775 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,775 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:58,776 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,776 [1520] DEBUG index - Entering getOutputHtml(51,account_id,Member Of,100,Array,1,Accounts) method ... +01/30/13 11:31:58,777 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,777 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,777 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:58,777 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,777 [1520] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/30/13 11:31:58,778 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,778 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,778 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:58,778 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,779 [1520] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/30/13 11:31:58,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,779 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,779 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:58,779 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:31:58,779 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:31:58,781 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:31:58,781 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:58,782 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:58,782 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:31:58,782 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:31:58,787 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,787 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,789 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,789 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,791 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:58,791 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:58,791 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:58,791 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:58,791 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:58,791 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:58,792 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:31:58,792 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:31:58,792 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:31:58,794 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:31:58,794 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:31:58,794 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:31:58,794 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:31:58,794 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:31:58,794 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:31:58,795 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,795 [1520] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/30/13 11:31:58,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,796 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:58,796 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,796 [1520] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/30/13 11:31:58,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,797 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:58,797 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,798 [1520] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/30/13 11:31:58,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,798 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,798 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,799 [1520] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/30/13 11:31:58,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,799 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,800 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,800 [1520] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/30/13 11:31:58,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,801 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:58,801 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,801 [1520] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/30/13 11:31:58,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,802 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:58,802 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,803 [1520] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/30/13 11:31:58,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,803 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:58,803 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,804 [1520] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/30/13 11:31:58,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,805 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:58,805 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,805 [1520] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,806 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:58,806 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,806 [1520] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,807 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:58,807 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,808 [1520] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/30/13 11:31:58,808 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,808 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:58,809 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,809 [1520] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/30/13 11:31:58,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,810 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:58,810 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,810 [1520] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/30/13 11:31:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,811 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:58,811 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,811 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,811 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,812 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,812 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,812 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,812 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,812 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,812 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,813 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,813 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,813 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Entering getBlocks(Accounts,create_view,,Array,ADV) method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,813 [1520] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/30/13 11:31:58,813 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:58,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,816 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,816 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,817 [1520] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/30/13 11:31:58,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,817 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:31:58,817 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,817 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,817 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:31:58,818 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype in (1,4) AND info_type = ? and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/30/13 11:31:58,818 [1520] DEBUG index - Prepared sql query parameters : [6,9,10,11,12,ADV] +01/30/13 11:31:58,823 [1520] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +,Array,6,Array) method ... +01/30/13 11:31:58,824 [1520] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/30/13 11:31:58,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,825 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:58,825 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,825 [1520] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/30/13 11:31:58,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,826 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:58,826 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,826 [1520] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/30/13 11:31:58,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,827 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:58,827 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,828 [1520] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/30/13 11:31:58,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,828 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:58,828 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,829 [1520] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/30/13 11:31:58,830 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,830 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,830 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,830 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,830 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,830 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,836 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #631 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #631 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,837 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,837 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,838 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,838 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,839 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,839 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,842 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,842 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,842 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,842 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,846 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,846 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,847 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,847 [1520] DEBUG index - Prepared sql query parameters : [industry] +01/30/13 11:31:58,848 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,848 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,868 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,868 [1520] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/30/13 11:31:58,868 [1520] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/30/13 11:31:58,869 [1520] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/30/13 11:31:58,869 [1520] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/30/13 11:31:58,869 [1520] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/30/13 11:31:58,869 [1520] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/30/13 11:31:58,869 [1520] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/30/13 11:31:58,870 [1520] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/30/13 11:31:58,870 [1520] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/30/13 11:31:58,870 [1520] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/30/13 11:31:58,870 [1520] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/30/13 11:31:58,870 [1520] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/30/13 11:31:58,871 [1520] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/30/13 11:31:58,871 [1520] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/30/13 11:31:58,871 [1520] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/30/13 11:31:58,871 [1520] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/30/13 11:31:58,871 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:31:58,872 [1520] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/30/13 11:31:58,872 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:31:58,872 [1520] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/30/13 11:31:58,872 [1520] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/30/13 11:31:58,873 [1520] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/30/13 11:31:58,873 [1520] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/30/13 11:31:58,873 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,873 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:58,873 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,874 [1520] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/30/13 11:31:58,876 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,876 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,876 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,876 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,876 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,876 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,881 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #639 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #639 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,883 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,883 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,885 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,885 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,885 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,886 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,889 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,889 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,889 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,890 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,894 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,895 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,895 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,895 [1520] DEBUG index - Prepared sql query parameters : [rating] +01/30/13 11:31:58,896 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,896 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/30/13 11:31:58,905 [1520] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/30/13 11:31:58,905 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,905 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,906 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:58,906 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,906 [1520] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/30/13 11:31:58,907 [1520] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/30/13 11:31:58,907 [1520] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/30/13 11:31:58,907 [1520] DEBUG index - Exiting getRoleSubordinates method ... +01/30/13 11:31:58,907 [1520] DEBUG index - Entering getRoleUsers(H3) method ... +01/30/13 11:31:58,907 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,907 [1520] DEBUG index - Prepared sql query parameters : [H3] +01/30/13 11:31:58,911 [1520] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 291 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #647 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #647 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/30/13 11:31:58,912 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:31:58,912 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:31:58,914 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,914 [1520] DEBUG index - Entering getRoleUsers(H4) method ... +01/30/13 11:31:58,914 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,914 [1520] DEBUG index - Prepared sql query parameters : [H4] +01/30/13 11:31:58,918 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,918 [1520] DEBUG index - Entering getRoleUsers(H5) method ... +01/30/13 11:31:58,918 [1520] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/30/13 11:31:58,918 [1520] DEBUG index - Prepared sql query parameters : [H5] +01/30/13 11:31:58,921 [1520] DEBUG index - Exiting getRoleUsers method ... +01/30/13 11:31:58,922 [1520] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/30/13 11:31:58,922 [1520] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/30/13 11:31:58,922 [1520] DEBUG index - Prepared sql query parameters : [accounttype] +01/30/13 11:31:58,924 [1520] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/30/13 11:31:58,924 [1520] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/30/13 11:31:58,937 [1520] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/30/13 11:31:58,937 [1520] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/30/13 11:31:58,937 [1520] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/30/13 11:31:58,937 [1520] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/30/13 11:31:58,937 [1520] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/30/13 11:31:58,938 [1520] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/30/13 11:31:58,938 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,938 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,939 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:58,939 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,939 [1520] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/30/13 11:31:58,940 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,940 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,940 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:58,940 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,941 [1520] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/30/13 11:31:58,941 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,941 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,942 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:58,942 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,942 [1520] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/30/13 11:31:58,943 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:31:58,944 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,944 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,944 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:58,944 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,944 [1520] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/30/13 11:31:58,945 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,945 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,945 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:58,945 [1520] DEBUG index - Exiting getOutputHtml method ... +01/30/13 11:31:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,946 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,946 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,946 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,946 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:31:58,946 [1520] DEBUG index - Exiting getBlockInformation method ... +01/30/13 11:31:58,946 [1520] DEBUG index - Exiting getBlocks method ... +01/30/13 11:31:58,947 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:31:58,947 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:31:58,948 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,948 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:31:58,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,949 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:31:58,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,950 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:31:58,950 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,950 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:31:58,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,951 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:31:58,951 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,952 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:31:58,952 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,952 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:31:58,953 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:31:58,953 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:31:58,954 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,954 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:31:58,954 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:31:58,954 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/30/13 11:31:58,954 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:58,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,957 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:31:58,957 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,957 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,957 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:31:58,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,958 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:31:58,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,958 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:31:58,958 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,958 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,958 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:31:58,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,959 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:31:58,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,959 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:31:58,959 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,959 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:31:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,960 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:31:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,960 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:31:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,960 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,960 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:31:58,960 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,961 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:31:58,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,961 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:31:58,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,961 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,961 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:31:58,961 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,962 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:31:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,962 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:31:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,962 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:31:58,962 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,962 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,963 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:31:58,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,963 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:31:58,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,963 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:31:58,963 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,963 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,964 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:31:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,964 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:31:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,964 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:31:58,964 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,964 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,965 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:31:58,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,965 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:31:58,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,965 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:31:58,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,965 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:31:58,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,966 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:31:58,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,966 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:31:58,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,966 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:31:58,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,967 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:31:58,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,967 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,967 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:31:58,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,968 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:31:58,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:58,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:58,968 [1520] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/30/13 11:31:58,968 [1520] DEBUG index - Entering split_validationdataArray(Array) method ... +01/30/13 11:31:58,968 [1520] DEBUG index - Exiting split_validationdataArray method ... +01/30/13 11:31:58,968 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:31:58,968 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:31:58,969 [1520] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/30/13 11:31:58,969 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:58,969 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:58,969 [1520] DEBUG index - Exiting getModuleSequenceFieldName... +01/30/13 11:31:58,969 [1520] DEBUG index - function getTranslatedString(MSG_AUTO_GEN_ON_SAVE) - translated to (自动生成编号) +01/30/13 11:31:58,969 [1520] DEBUG index - Prepared sql query being executed : SELECT prefix, cur_id from vtiger_modentity_num where semodule = ? and active=1 +01/30/13 11:31:58,969 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:31:59,029 [1520] DEBUG index - Prepared sql query being executed : select account_no from vtiger_account where account_no = ? +01/30/13 11:31:59,029 [1520] DEBUG index - Prepared sql query parameters : [ACC11] +01/30/13 11:31:59,031 [1520] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/30/13 11:31:59,066 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:59,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:59,067 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/30/13 11:31:59,067 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:59,076 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:31:59,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:31:59,076 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/30/13 11:31:59,076 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:31:59,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,087 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:31:59,087 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,087 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,088 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:59,088 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,088 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:31:59,088 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:31:59,089 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:31:59,089 [1520] DEBUG index - Exiting return_module_language method ... diff --git a/logs/vtigercrm.log.6 b/logs/vtigercrm.log.6 new file mode 100644 index 0000000..adfd5de --- /dev/null +++ b/logs/vtigercrm.log.6 @@ -0,0 +1,35860 @@ +01/18/13 11:04:44,357 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:44,357 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:44,358 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'potentialname', + 'id' => '3', + 'modname' => 'Potentials', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:04:44,358 [76] INFO index - About to take action TooltipAjax +01/18/13 11:04:44,358 [76] DEBUG index - in TooltipAjax +01/18/13 11:04:44,358 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:04:44,358 [76] INFO index - current module is Tooltip +01/18/13 11:04:44,395 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:44,395 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:44,395 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:44,395 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:44,396 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,396 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:44,396 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,396 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:44,396 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:44,405 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:44,405 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,405 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:44,405 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:44,406 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:44,407 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:44,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,407 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:44,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,408 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:44,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,408 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:44,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,409 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:44,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,409 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:44,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,410 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:44,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,411 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:44,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,411 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:44,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,412 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:44,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,412 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:44,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,413 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:44,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,413 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:44,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,414 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:44,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,414 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:44,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,415 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:44,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,415 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:44,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,416 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:44,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,417 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:44,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,417 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:44,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,418 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:44,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,418 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:44,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,419 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:44,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,419 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:44,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,419 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:44,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,420 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:44,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,420 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:44,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,421 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:44,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,421 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:44,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,422 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:44,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,422 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:44,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,423 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:44,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,423 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:44,424 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,424 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:44,424 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,424 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:44,425 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,425 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:44,425 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,425 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:44,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,426 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:44,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,426 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:44,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,427 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:44,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,427 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:44,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,428 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:44,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,428 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:44,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,429 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:44,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,430 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:44,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,430 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:44,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,431 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:44,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,431 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:44,437 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:44,437 [76] DEBUG index - Prepared sql query parameters : [255,1,Tooltip,TooltipAjax,,2013-01-18 11:04:44] +01/18/13 11:04:44,440 [76] DEBUG index - Current user is: admin +01/18/13 11:04:44,441 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:44,441 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:44,441 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:44,443 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:44,443 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:44,445 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:44,446 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:44,447 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:44,448 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:04:44,448 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:04:44,449 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,449 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:44,449 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:44,449 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:44,449 [76] DEBUG index - skipping headers +01/18/13 11:04:44,450 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:04:44,451 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:44,458 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:44,458 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,458 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:04:44,458 [76] DEBUG index - Prepared sql query parameters : [2,potentialname] +01/18/13 11:04:44,461 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:04:44,461 [76] DEBUG index - Prepared sql query parameters : [110] +01/18/13 11:04:52,130 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:52,276 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:52,276 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:52,276 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:52,276 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:52,277 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:04:52,277 [76] INFO index - About to take action CalendarAjax +01/18/13 11:04:52,277 [76] DEBUG index - in CalendarAjax +01/18/13 11:04:52,277 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:04:52,277 [76] INFO index - current module is Calendar +01/18/13 11:04:52,310 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:52,310 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:52,310 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:52,310 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:52,311 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:52,311 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:52,311 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:52,311 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:52,311 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:52,322 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:52,322 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:52,322 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:52,322 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:52,323 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:52,324 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:52,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,324 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:52,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,325 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:52,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,325 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:52,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,326 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:52,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,326 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:52,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,327 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:52,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,327 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:52,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,328 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:52,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,328 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:52,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,329 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:52,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,329 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:52,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,330 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:52,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,330 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:52,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,331 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:52,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,331 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:52,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,332 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:52,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,332 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:52,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,333 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:52,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,333 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:52,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,334 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:52,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,335 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:52,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,335 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:52,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,336 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:52,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,336 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:52,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,336 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:52,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,337 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:52,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,337 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:52,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,338 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:52,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,338 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:52,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,339 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:52,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,339 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:52,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,340 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:52,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,340 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:52,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,341 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:52,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,341 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:52,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,342 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:52,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,342 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:52,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,343 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:52,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,343 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:52,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,344 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:52,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,344 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:52,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,345 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:52,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,345 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:52,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,346 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:52,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,346 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:52,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,347 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:52,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:52,347 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:52,347 [76] DEBUG index - Current user is: admin +01/18/13 11:04:52,348 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:52,348 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:52,348 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:52,350 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:52,350 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:52,352 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:52,352 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:52,354 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:52,354 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:52,355 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:52,355 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:52,355 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:52,355 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:52,355 [76] DEBUG index - skipping headers +01/18/13 11:04:52,357 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:04:52,357 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:52,363 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:52,363 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:04:52,363 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:04:52,364 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:04:52,368 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:05')) +01/18/13 11:04:52,371 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:05:12,541 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:05:12,695 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:05:12,695 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:05:12,696 [76] DEBUG index - ****Starting for new session +01/18/13 11:05:12,696 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:05:12,696 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/18/13 11:05:12,696 [76] INFO index - About to take action index +01/18/13 11:05:12,697 [76] DEBUG index - in index +01/18/13 11:05:12,709 [76] INFO index - current page is modules/Accounts/index.php +01/18/13 11:05:12,709 [76] INFO index - current module is Accounts +01/18/13 11:05:12,743 [76] DEBUG user - Entering Users() method ... +01/18/13 11:05:12,743 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:05:12,743 [76] DEBUG index - in getColumnFields Users +01/18/13 11:05:12,744 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:12,744 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,744 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:12,744 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,744 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:05:12,745 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:05:12,755 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:12,755 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,755 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:12,755 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:05:12,756 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:05:12,757 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:05:12,757 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,757 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:05:12,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,758 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:05:12,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,758 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:05:12,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,759 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:12,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,759 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:05:12,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,760 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:05:12,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,760 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:05:12,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,761 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:05:12,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,762 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:05:12,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,762 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:05:12,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,763 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:05:12,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,763 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:05:12,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,764 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:05:12,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,764 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:05:12,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,765 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:05:12,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,765 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:05:12,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,766 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:05:12,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,766 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:05:12,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,767 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:05:12,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,767 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:05:12,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,768 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:05:12,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,768 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:05:12,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,769 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:05:12,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,769 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:05:12,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,769 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:05:12,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,770 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:05:12,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,770 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:05:12,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,771 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:05:12,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,771 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:05:12,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,772 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:05:12,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,772 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:05:12,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,773 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:05:12,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,773 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:05:12,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,774 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:05:12,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,774 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:05:12,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,775 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:05:12,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,775 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:05:12,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,776 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:05:12,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,777 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:05:12,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,777 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:05:12,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,778 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:05:12,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,778 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:05:12,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,779 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:05:12,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,779 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:05:12,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,780 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:05:12,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,780 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:05:12,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:12,781 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:05:12,784 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:05:12,785 [76] DEBUG index - Prepared sql query parameters : [256,1,Accounts,index,,2013-01-18 11:05:12] +01/18/13 11:05:12,788 [76] DEBUG index - Current user is: admin +01/18/13 11:05:12,788 [76] DEBUG index - Current theme is: softed +01/18/13 11:05:12,788 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:05:12,788 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:05:12,791 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:05:12,791 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:05:12,793 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:05:12,793 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:05:12,795 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:05:12,795 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:12,796 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,796 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:05:12,796 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:05:12,796 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:05:12,796 [76] DEBUG index - including headers +01/18/13 11:05:12,796 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:12,797 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:12,801 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:05:12,801 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:05:12,804 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:05:12,805 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:05:12,806 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,806 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:05:12,806 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,806 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:05:12,807 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,807 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:05:12,807 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,807 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:05:12,808 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,808 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:05:12,808 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,808 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:05:12,809 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,809 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:05:12,809 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:05:12,809 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:05:12,809 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:05:12,809 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:05:12,816 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:12,816 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,816 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:05:12,817 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:12,817 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,817 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:05:12,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,818 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:05:12,818 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:05:12,819 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,819 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:12,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,820 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:05:12,820 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:05:12,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,821 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:05:12,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,822 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:05:12,822 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:05:12,823 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,823 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:05:12,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,824 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:05:12,824 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:05:12,824 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,824 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:05:12,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,825 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:05:12,825 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:05:12,826 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,826 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:05:12,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,827 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:05:12,827 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:05:12,827 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,827 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:05:12,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,828 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:05:12,828 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:05:12,829 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,829 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:05:12,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,829 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:05:12,830 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:05:12,830 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,830 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:05:12,831 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,831 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:05:12,831 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:05:12,832 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,832 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:05:12,832 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,833 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:05:12,833 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:05:12,833 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,833 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:05:12,834 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,834 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:05:12,834 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:05:12,834 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,835 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:05:12,835 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,835 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:05:12,835 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:05:12,836 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,836 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:05:12,837 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,837 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:05:12,837 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:05:12,837 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,838 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:05:12,838 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,838 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:05:12,838 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:05:12,839 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,839 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:05:12,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,839 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:05:12,840 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:05:12,840 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,840 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:05:12,841 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,842 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:05:12,842 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:05:12,842 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,842 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:05:12,843 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,843 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:05:12,843 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:05:12,844 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,844 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:05:12,844 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,844 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:05:12,844 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:05:12,845 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,845 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:05:12,845 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:05:12) method ... +01/18/13 11:05:12,846 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:05:12,846 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:05:12) method ... +01/18/13 11:05:12,846 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:05:12,846 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:12,846 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:12,846 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:12,847 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:12,847 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:05:12,848 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:05:12,848 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:05:12,851 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,851 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,851 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,852 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,852 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,852 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,852 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,852 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,852 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,852 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,853 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,853 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,853 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,853 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,853 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,853 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,854 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,854 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,854 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,854 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,854 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,854 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,854 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,855 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,855 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,855 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,855 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,855 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,855 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,855 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,856 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,856 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,856 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,856 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,856 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,856 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,856 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,857 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,857 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,857 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,857 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,857 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,857 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,857 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,858 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,858 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,858 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,858 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,858 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,858 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,858 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,859 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,859 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,859 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,859 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,859 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,859 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,859 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,860 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,860 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,860 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,860 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,860 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,860 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,860 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,861 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,861 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:05:12,870 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:05:12,871 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,871 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:05:12,871 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:05:12,873 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:12,873 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:12,874 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:05:12,874 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,874 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:05:12,875 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,875 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:05:12,875 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,875 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:05:12,876 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,876 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,876 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,876 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:12,877 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,877 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:05:12,877 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,877 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:05:12,878 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,878 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:05:12,878 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,878 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:05:12,879 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,879 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:05:12,879 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,879 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:05:12,879 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,880 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:05:12,880 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,880 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:05:12,880 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,880 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:05:12,880 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,881 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:05:12,881 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,881 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:05:12,881 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,881 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:05:12,882 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,882 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:05:12,882 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,883 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:05:12,883 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,883 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:05:12,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,884 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:05:12,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,884 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:05:12,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,884 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:05:12,885 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,885 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:05:12,885 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,885 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:05:12,886 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,886 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:05:12,886 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,886 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:05:12,887 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,887 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:05:12,887 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,887 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:05:12,887 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,888 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:05:12,888 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:05:12,888 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:05:12,893 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:05:12,894 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,894 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:05:12,895 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,895 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:05:12,896 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,896 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:05:12,897 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,897 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:05:12,898 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,898 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:05:12,898 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:05:12,901 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:05:12,901 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,901 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:05:12,901 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:05:12,909 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:05:12,917 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:12,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,917 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:12,918 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:12,918 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,919 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:05:12,919 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:05:12,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,919 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:05:12,919 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:12,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,919 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:12,919 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:05:12,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,920 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:05:12,920 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:05:12,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,920 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:05:12,920 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:05:12,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,920 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:05:12,920 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:05:12,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,921 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:05:12,921 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:05:12,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,922 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:05:12,922 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:05:12,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,922 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:05:12,922 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:05:12,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,923 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:05:12,925 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:05:12,926 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,926 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:05:12,926 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:05:12,926 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,927 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:05:12,927 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:05:12,927 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,927 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:05:12,927 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:05:12,928 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,928 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:05:12,928 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:05:12,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,929 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:05:12,929 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:05:12,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,929 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:05:12,929 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:05:12,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,930 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:05:12,930 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:05:12,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,930 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:05:12,930 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:05:12,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,931 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:05:12,931 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:05:12,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,931 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:05:12,931 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:05:12,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,932 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:05:12,932 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:05:12,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,932 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:05:12,932 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:05:12,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,932 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:05:12,932 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:05:12,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,932 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:05:12,933 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:05:12,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,933 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:05:12,933 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:05:12,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,934 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:05:12,934 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:05:12,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,934 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:05:12,934 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:05:12,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,935 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:05:12,935 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:05:12,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,935 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:05:12,935 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:05:12,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,935 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:05:12,935 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:05:12,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,936 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:05:12,936 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:05:12,937 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,937 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:05:12,937 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:05:12,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,938 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:05:12,938 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:12,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:12,938 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:05:12,939 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:05:12,939 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,944 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:12,944 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:12,944 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:12,945 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:12,945 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:05:12,945 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:12,946 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,946 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:05:12,946 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,946 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:05:12,947 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,947 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:05:12,948 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,948 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:05:12,948 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,948 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:05:12,949 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,949 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:05:12,949 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,950 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:05:12,950 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,950 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:05:12,950 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:12,951 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:12,951 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,951 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,951 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,951 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,951 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:05:12,951 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:12,960 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,960 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,961 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:12,961 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 11:05:12,961 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,961 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,961 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:05:12,961 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 11:05:12,966 [76] DEBUG index - Exiting initSortByField +01/18/13 11:05:12,966 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:12,967 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,967 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:12,968 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,968 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:05:12,969 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,969 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:05:12,969 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:12,970 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 11:05:12,970 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 11:05:12,970 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 11:05:12,970 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 11:05:12,970 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:05:12,970 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 11:05:12,971 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:05:12,972 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:05:12,972 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:05:12,972 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:05:12,974 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:05:12,974 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:05:12,976 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:05:12,976 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:05:12,978 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:05:12,978 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:05:12,978 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:05:12,979 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:05:12,979 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:05:12,979 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:05:12,979 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 11:05:12,979 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 11:05:12,980 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:05:12,980 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:05:12,981 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:05:12,981 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:05:12,982 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:05:12,982 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:05:12,985 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:05:12,985 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:05:12,985 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:05:12,985 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:05:12,985 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:05:12,985 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:05:12,986 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 11:05:12,986 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:12,986 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:05:12,989 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:12,989 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:12,989 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,989 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,989 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:12,990 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,990 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,991 [76] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:05:12,991 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:05:12,991 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:12,994 [76] DEBUG index - Entering when status=0 +01/18/13 11:05:12,994 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:05:12,994 [76] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:05:12,995 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,995 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,995 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 11:05:12,995 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:12,998 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:12,999 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:12,999 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 11:05:12,999 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:13,002 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 11:05:13,002 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:05:13,006 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 11:05:13,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,007 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 11:05:13,007 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 11:05:13,008 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:05:13,008 [76] DEBUG index - Entering when status=0 +01/18/13 11:05:13,008 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:05:13,008 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:05:13,008 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:05:13,009 [76] DEBUG index - Entering when status=0 +01/18/13 11:05:13,009 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:05:13,009 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:05:13,009 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,009 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,009 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:05:13,009 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:13,011 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,011 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:05:13,012 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:13,014 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,014 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:05:13,014 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,014 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,015 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,015 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,015 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,015 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,015 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:05:13,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,016 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:05:13,016 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,016 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:05:13,016 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:05:13,020 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:05:13,021 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:05:13,039 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 11:05:13,043 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:05:13,043 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:05:13,045 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:05:13,046 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:05:13,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,046 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,047 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,047 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,047 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,047 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,047 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:05:13,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,048 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:05:13,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,049 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:05:13,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:05:13,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:05:13,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:05:13,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:05:13,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:05:13,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,050 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,051 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,051 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,051 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,051 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,051 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:05:13,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,052 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:05:13,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,053 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:05:13,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,054 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:05:13,055 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 11:05:13,059 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:05:13,059 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:13,059 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 11:05:13,064 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:05:13,064 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:05:13,100 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,100 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 11:05:13,102 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,102 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 11:05:13,104 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,104 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 11:05:13,108 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:13,108 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 11:05:13,111 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:05:13,111 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:05:13,165 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,165 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 11:05:13,171 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,171 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 11:05:13,178 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,178 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 11:05:13,182 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,182 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 11:05:13,185 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,185 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 11:05:13,194 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,194 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 11:05:13,197 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,198 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 11:05:13,203 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,203 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 11:05:13,210 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:13,211 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 11:05:13,213 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:05:13,213 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:05:13,247 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,247 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 11:05:13,249 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,250 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 11:05:13,252 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,252 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 11:05:13,254 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,254 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 11:05:13,256 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 11:05:13,256 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:05:13,258 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,259 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 11:05:13,260 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:13,260 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 11:05:13,263 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:05:13,263 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:05:13,349 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,349 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 11:05:13,351 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,352 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 11:05:13,353 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,354 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 11:05:13,355 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,355 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 11:05:13,357 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,357 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 11:05:13,359 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,359 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 11:05:13,361 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,361 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 11:05:13,363 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,363 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 11:05:13,365 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,365 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 11:05:13,368 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,368 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 11:05:13,370 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,370 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 11:05:13,372 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:05:13,372 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 11:05:13,378 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:05:13,381 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:05:13,381 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:05:13,383 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:05:13,384 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:05:13,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,384 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:05:13,384 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:05:13,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,384 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:05:13,384 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:05:13,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,384 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:05:13,385 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:05:13,385 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,385 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:05:13,385 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:05:13,385 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,385 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:05:13,385 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:05:13,385 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,385 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 11:05:13,385 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:05:13,385 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,386 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:05:13,386 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:05:13,386 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,386 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 11:05:13,386 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:05:13,386 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,386 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:05:13,386 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:05:13,386 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,386 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 11:05:13,387 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:05:13,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,387 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:05:13,387 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:05:13,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,387 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 11:05:13,387 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:05:13,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,387 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:05:13,387 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:05:13,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,388 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 11:05:13,388 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:05:13,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,388 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:05:13,388 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:05:13,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,388 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:05:13,388 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:13,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,388 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:05:13,388 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:13,389 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,389 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:05:13,389 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:05:13,389 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,389 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:05:13,389 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:05:13,389 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,389 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:05:13,389 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,389 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,389 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,390 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,390 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:05:13,390 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:05:13,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,390 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:05:13,390 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:05:13,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,390 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:05:13,390 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:05:13,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,391 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:05:13,391 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:05:13,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,391 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:05:13,391 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:05:13,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,391 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:05:13,391 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:05:13,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,391 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:05:13,391 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:05:13,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,392 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:05:13,392 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:05:13,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,392 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:05:13,392 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:05:13,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,392 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:05:13,392 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:05:13,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,392 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 11:05:13,393 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:05:13,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,393 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:05:13,393 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:05:13,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,393 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:05:13,393 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:13,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,393 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 11:05:13,393 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:13,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,394 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:05:13,394 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:05:13,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,395 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 11:05:13,395 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:05:13,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,396 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 11:05:13,396 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:05:13,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,396 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:05:13,396 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:05:13,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,396 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 11:05:13,396 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:05:13,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,397 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 11:05:13,397 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:05:13,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,397 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:05:13,397 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:05:13,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,397 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:05:13,397 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:05:13,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,397 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:05:13,398 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:05:13,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,398 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:05:13,398 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:05:13,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,398 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:05:13,398 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:05:13,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,398 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 11:05:13,398 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:05:13,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,398 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:05:13,399 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:05:13,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,399 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:05:13,399 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:05:13,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,399 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:05:13,399 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:05:13,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,399 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:05:13,399 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:05:13,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,400 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:05:13,400 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:05:13,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,400 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:05:13,400 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:05:13,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,400 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:05:13,400 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:05:13,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,400 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:05:13,400 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:05:13,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,401 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 11:05:13,401 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:13,401 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:13,438 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:05:13,438 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 11:05:13,442 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:13,442 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:13,443 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 11:05:13,443 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:13,445 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 11:05:13,446 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:13,447 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 11:05:13,447 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:13,449 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:05:13,449 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:05:13,451 [76] DEBUG user - Entering Users() method ... +01/18/13 11:05:13,451 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:05:13,451 [76] DEBUG index - in getColumnFields Users +01/18/13 11:05:13,451 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:13,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,452 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,452 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:05:13,452 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:13,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,452 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:13,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,452 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:05:13,452 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:05:13,454 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 11:05:13,454 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:05:13,456 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,457 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,457 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,457 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,457 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,457 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,457 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,457 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,457 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,458 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,458 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,458 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,458 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,458 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,458 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,458 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,458 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,458 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,458 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,459 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,459 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,459 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,459 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,459 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,459 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,459 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,459 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,460 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,460 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,460 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,460 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,460 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,460 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,461 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,461 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,462 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/18/13 11:05:13,466 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 11:05:13,470 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,470 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,471 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,472 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,472 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 11:05:13,473 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:05:13,473 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,473 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,473 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,473 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,474 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,474 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,475 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:05:13,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,475 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:05:13,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,475 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:05:13,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,476 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:05:13,476 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,476 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:05:13,476 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,476 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:05:13,476 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,477 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,477 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,477 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 11:05:13,478 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:05:13,478 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:05:13,478 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:05:13,482 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/18/13 11:05:13,482 [76] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/18/13 11:05:13,484 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:05:13,485 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,485 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:05:13,485 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:05:13,487 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,488 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,488 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,489 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,489 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,489 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,489 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,490 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,490 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,490 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,490 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,491 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,491 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,491 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,492 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,492 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,492 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,492 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,493 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,493 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,493 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,493 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,494 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,494 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,494 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,494 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,495 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,495 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,496 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,496 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,496 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,496 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,497 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,497 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,497 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,497 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,498 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,498 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,498 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,498 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,499 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,503 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,503 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,503 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,503 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,503 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,504 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,504 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,504 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,504 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,504 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:05:13,506 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,507 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,507 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,508 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,508 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,508 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,508 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,509 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,509 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,509 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,509 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,510 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,510 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,510 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,511 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,511 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,511 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,511 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,512 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,512 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,512 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,512 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,513 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,513 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,514 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,514 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,514 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,515 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,515 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,515 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,515 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,515 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,516 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,516 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,516 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,517 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,517 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,517 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,517 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,517 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,518 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,518 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,522 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,522 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,522 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,523 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,523 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,523 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,523 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,523 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,523 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:13,526 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,526 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,527 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,528 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,528 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,528 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,528 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,529 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,529 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,529 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,529 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,529 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,530 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,530 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,530 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,531 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,531 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,531 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,532 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,532 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,532 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,532 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,533 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,533 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,533 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,533 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,534 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,534 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,535 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,535 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,535 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,535 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,536 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,536 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,536 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,536 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,536 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,537 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,537 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,537 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,538 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,542 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,542 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,542 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,542 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,542 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,542 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,543 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,543 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,543 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,543 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:13,545 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,545 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,545 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,546 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,547 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,547 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,547 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,548 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,548 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,548 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,548 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,548 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,548 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,549 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,549 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,550 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,550 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,550 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,551 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,551 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,551 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,551 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,552 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,552 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,552 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,552 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,553 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,553 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,554 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,554 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,554 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,554 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,555 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,555 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,555 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,555 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,555 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,556 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,556 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,556 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,556 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,557 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,561 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,561 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,562 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,562 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,562 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,562 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,562 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,562 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,562 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,562 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:05:13,565 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,565 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,565 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,566 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,566 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,566 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,566 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,567 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,567 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,567 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,567 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,568 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,568 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,568 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,569 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,569 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,569 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,569 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,570 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,570 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,570 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,570 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,571 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,571 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,572 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,572 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,572 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,573 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,573 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,573 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,573 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,573 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,574 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,574 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,575 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,575 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,575 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,575 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,575 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,576 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,576 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,576 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,580 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,580 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,580 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,581 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,581 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,581 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,581 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,581 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,581 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,581 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:05:13,585 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,585 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,585 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,586 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,586 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,586 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,586 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,587 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,587 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,588 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,588 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,588 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,588 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,588 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,589 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,589 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,589 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,589 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,590 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,590 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,591 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,591 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,592 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,592 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,592 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,592 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,593 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,593 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,594 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,594 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,594 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,594 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,595 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,595 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,595 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,595 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,595 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,596 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,596 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,596 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,596 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,597 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,601 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,601 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,601 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,601 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,601 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,602 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,602 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,602 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,602 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,602 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:05:13,604 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,604 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,605 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,606 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,606 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,606 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,606 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,607 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,607 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,607 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,607 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,607 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,608 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,608 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,608 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,609 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,609 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,609 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,610 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,610 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,610 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,610 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,611 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,611 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,611 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,611 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,612 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,612 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,613 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,613 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,613 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,613 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,614 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,614 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,614 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,614 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,614 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,615 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,615 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,615 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,615 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,616 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,620 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,620 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,620 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,620 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,621 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,621 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,621 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,621 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,621 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,621 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:05:13,623 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,623 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,623 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,624 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,625 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,625 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,625 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,626 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,626 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,626 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,626 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,626 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,626 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,626 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,627 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,628 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,628 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,628 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,629 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,629 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,629 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,629 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,630 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,630 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,630 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,630 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,631 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,631 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,632 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,632 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,632 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,632 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,633 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,633 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,633 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,633 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,633 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,634 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,634 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,634 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,634 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,635 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,638 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,639 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,639 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,639 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,639 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,639 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,639 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,639 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,640 [76] DEBUG index - Prepared sql query parameters : [16] +01/18/13 11:05:13,642 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,642 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,642 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,643 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,643 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,643 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,643 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,644 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,644 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,644 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,645 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,645 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,645 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,645 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,646 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,646 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,646 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,646 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,647 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,647 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,647 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,647 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,648 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,649 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,649 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,649 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,649 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,650 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,650 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,650 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,650 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,650 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,651 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,651 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,651 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,652 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,652 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,652 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,652 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,652 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,653 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,653 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,657 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,657 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,657 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,658 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,658 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,658 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,658 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,658 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,658 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 11:05:13,663 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,663 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,663 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,664 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,664 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,664 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,664 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,665 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,666 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,666 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,666 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,666 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,667 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,667 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,667 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,667 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,668 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,668 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,668 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,668 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,669 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,669 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,670 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,670 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,670 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,671 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:05:13,671 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,671 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,671 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,671 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,672 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,672 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,672 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,673 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:05:13,673 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:05:13,673 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,673 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:05:13,673 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:05:13,674 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:05:13,674 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:05:13,678 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:05:13,678 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:05:13,678 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,678 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,679 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:13,679 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,679 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,679 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:05:13,679 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:05:13,679 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:05:13,684 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,684 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,684 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:05:13,684 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,684 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,684 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:05:13,684 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,685 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:05:13,685 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,685 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:05:13,685 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,685 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:05:13,685 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,685 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:05:13,686 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 11:05:13,686 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 11:05:13,686 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,686 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,686 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:05:13,686 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,686 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,689 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,689 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,689 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,689 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:05:13,689 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,689 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,691 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,691 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,692 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,692 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,692 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:05:13,692 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,692 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,694 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,694 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,694 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,694 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,694 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,694 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:05:13,695 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,695 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,696 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,696 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,697 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,697 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,697 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:05:13,697 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,697 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,698 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,699 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,699 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,699 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:05:13,699 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,699 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,701 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,701 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,701 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,701 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,701 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,702 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:05:13,702 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,702 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,703 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,703 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,703 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,704 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,704 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,704 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:05:13,704 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,704 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,705 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,706 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,706 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,706 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,706 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,706 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:05:13,706 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,706 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,708 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,708 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,708 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,708 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,708 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,708 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:05:13,709 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,709 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,711 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,711 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,711 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,712 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:05:13,712 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,712 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,713 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,714 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,714 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,714 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,714 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,714 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:05:13,714 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,714 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,716 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,716 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,716 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,716 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,716 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,717 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:05:13,717 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,717 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,719 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,719 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,719 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,719 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,719 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,719 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:05:13,719 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,719 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,736 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,737 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,737 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,737 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,737 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,737 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:05:13,737 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,737 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,739 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,739 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,740 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,740 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,740 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:05:13,740 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,740 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,742 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,742 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,742 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,743 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,743 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,743 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:05:13,743 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,743 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,745 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,745 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,745 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:05:13,745 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,745 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,746 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,747 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,747 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,747 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,747 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,747 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:05:13,747 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,747 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,749 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,749 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,749 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,749 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,749 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,749 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:05:13,749 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,749 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,751 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,751 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,751 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,751 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,751 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,751 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:05:13,751 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,752 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,756 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,756 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,756 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,756 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:05:13,756 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,757 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,759 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,759 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,759 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,759 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:05:13,759 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,759 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:05:13,761 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,761 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:05:13,761 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,761 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:05:13,762 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,762 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,763 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,763 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,764 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,764 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,764 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:05:13,764 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,764 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,766 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,766 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,766 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,766 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:05:13,767 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,767 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,768 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,769 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,769 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,769 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,769 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:05:13,769 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,769 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,772 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,772 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,772 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,772 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:05:13,772 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,772 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,774 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,774 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,774 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,775 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:05:13,775 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,775 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,776 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,777 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,777 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,777 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:05:13,777 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,777 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,780 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,780 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,780 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,780 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,780 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,780 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:05:13,780 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,780 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,784 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,784 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,784 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,784 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,785 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,785 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:05:13,785 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,785 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,787 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,787 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,787 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,787 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,787 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,787 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:05:13,787 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,788 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,791 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,791 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,791 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,791 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,791 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,791 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:05:13,791 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,791 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,793 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,793 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,793 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,793 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,793 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,794 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:05:13,794 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,794 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:05:13,796 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,796 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,796 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:05:13,796 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,796 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,796 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:05:13,796 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:05:13,797 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:05:13,798 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,798 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,798 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:05:13,799 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 11:05:13,799 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 11:05:13,799 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,799 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,799 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 11:05:13,799 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 11:05:13,799 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 11:05:13,802 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 11:05:13,802 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:05:13,802 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 11:05:13,802 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:05:13,804 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:05:13,804 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:05:13,804 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:05:13,805 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,805 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,805 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 11:05:13,805 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:05:13,815 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:05:13,815 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:05:13,816 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:13,819 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,819 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:05:13,819 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,820 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:05:13,820 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,820 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:05:13,820 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,820 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:05:13,820 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,821 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:05:13,821 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,821 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:05:13,821 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,821 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:05:13,821 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,822 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:05:13,822 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,822 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:05:13,822 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,822 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:05:13,822 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,822 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:05:13,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,823 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:05:13,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,823 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:05:13,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,823 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:05:13,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,824 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:05:13,824 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,824 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:05:13,824 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,824 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:05:13,824 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,825 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:05:13,825 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,825 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:05:13,825 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,825 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:05:13,825 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,825 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:05:13,826 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,826 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:05:13,826 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,826 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:05:13,826 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,826 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:05:13,827 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,827 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:05:13,827 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,827 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:05:13,827 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,827 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:05:13,827 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,828 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:05:13,828 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,828 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:05:13,828 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,828 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:05:13,828 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,829 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:05:13,829 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,829 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:05:13,829 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,829 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:05:13,829 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,829 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,829 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 11:05:13,830 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 11:05:13,832 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:05:13,832 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:05:13,832 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:05:13,832 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:05:13,832 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:05:13,832 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:05:13,832 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:05:13,839 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:13,839 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:13,839 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 11:05:13,839 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 11:05:13,842 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:05:13,843 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:13,843 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:05:13,844 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:05:13,844 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:05:13,846 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:05:13,846 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:05:13,846 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:05:13,851 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,851 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,851 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,852 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:05:13,852 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,852 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,852 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:05:13,852 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,852 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,852 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,852 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,852 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,852 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,853 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,853 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,853 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,853 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,853 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,853 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,853 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,854 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,854 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,854 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,855 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,855 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,855 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,859 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:05:13,859 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:05:13,859 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,859 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,859 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:05:13,859 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,859 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,859 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:05:13,860 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,860 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,860 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:05:13,860 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,860 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,860 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:05:13,860 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,860 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,861 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:05:13,861 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,861 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,861 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:05:13,861 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,861 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,861 [76] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/18/13 11:05:13,861 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,861 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,861 [76] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/18/13 11:05:13,866 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:13,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,866 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,866 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,866 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:05:13,866 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,866 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,867 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,867 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,867 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,867 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:05:13,867 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:13,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:13,867 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,868 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,868 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:05:13,868 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:05:13,868 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:13,868 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 11:05:13,869 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:05:13,869 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:05:13,870 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:15,510 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:05:15,656 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:05:15,657 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:05:15,657 [76] DEBUG index - ****Starting for new session +01/18/13 11:05:15,657 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:05:15,657 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'website', + 'id' => '12', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:05:15,657 [76] INFO index - About to take action TooltipAjax +01/18/13 11:05:15,658 [76] DEBUG index - in TooltipAjax +01/18/13 11:05:15,658 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:05:15,658 [76] INFO index - current module is Tooltip +01/18/13 11:05:15,692 [76] DEBUG user - Entering Users() method ... +01/18/13 11:05:15,692 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:05:15,692 [76] DEBUG index - in getColumnFields Users +01/18/13 11:05:15,692 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:15,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:15,693 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:15,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:15,693 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:05:15,693 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:05:15,701 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:15,701 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:15,701 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:15,701 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:05:15,702 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:05:15,703 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:05:15,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,703 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:05:15,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,704 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:05:15,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,704 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:05:15,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,705 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:15,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,705 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:05:15,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,706 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:05:15,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,706 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:05:15,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,707 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:05:15,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,707 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:05:15,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,708 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:05:15,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,709 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:05:15,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,709 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:05:15,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,709 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:05:15,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,710 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:05:15,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,710 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:05:15,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,711 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:05:15,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,711 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:05:15,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,712 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:05:15,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,712 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:05:15,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,713 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:05:15,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,713 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:05:15,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,714 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:05:15,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,714 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:05:15,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,715 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:05:15,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,715 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:05:15,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,716 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:05:15,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,716 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:05:15,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,717 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:05:15,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,717 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:05:15,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,718 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:05:15,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,718 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:05:15,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,719 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:05:15,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,719 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:05:15,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,720 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:05:15,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,720 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:05:15,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,721 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:05:15,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,721 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:05:15,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,722 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:05:15,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,722 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:05:15,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,723 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:05:15,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,723 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:05:15,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,723 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:05:15,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,724 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:05:15,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,724 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:05:15,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,725 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:05:15,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,725 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:05:15,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:15,726 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:05:15,736 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:05:15,736 [76] DEBUG index - Prepared sql query parameters : [257,1,Tooltip,TooltipAjax,,2013-01-18 11:05:15] +01/18/13 11:05:15,739 [76] DEBUG index - Current user is: admin +01/18/13 11:05:15,740 [76] DEBUG index - Current theme is: softed +01/18/13 11:05:15,740 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:05:15,740 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:05:15,742 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:05:15,742 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:05:15,744 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:05:15,744 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:05:15,746 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:05:15,747 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:05:15,747 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:05:15,748 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:15,748 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:05:15,748 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:05:15,748 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:05:15,748 [76] DEBUG index - skipping headers +01/18/13 11:05:15,749 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:05:15,750 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:15,757 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:05:15,757 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:15,757 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:05:15,757 [76] DEBUG index - Prepared sql query parameters : [6,website] +01/18/13 11:05:15,760 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:05:15,760 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:05:53,133 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:05:53,286 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:05:53,287 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:05:53,287 [76] DEBUG index - ****Starting for new session +01/18/13 11:05:53,287 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:05:53,287 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:05:53,287 [76] INFO index - About to take action CalendarAjax +01/18/13 11:05:53,288 [76] DEBUG index - in CalendarAjax +01/18/13 11:05:53,288 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:05:53,288 [76] INFO index - current module is Calendar +01/18/13 11:05:53,321 [76] DEBUG user - Entering Users() method ... +01/18/13 11:05:53,321 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:05:53,321 [76] DEBUG index - in getColumnFields Users +01/18/13 11:05:53,321 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:53,322 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:53,322 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:53,322 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:53,322 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:05:53,322 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:05:53,331 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:05:53,331 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:05:53,331 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:05:53,331 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:05:53,332 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:05:53,332 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:05:53,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,333 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:05:53,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,333 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:05:53,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,334 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:05:53,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,335 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:05:53,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,335 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:05:53,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,336 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:05:53,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,336 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:05:53,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,337 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:05:53,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,337 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:05:53,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,338 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:05:53,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,338 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:05:53,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,339 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:05:53,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,339 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:05:53,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,340 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:05:53,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,340 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:05:53,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,341 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:05:53,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,341 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:05:53,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,342 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:05:53,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,342 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:05:53,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,343 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:05:53,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,343 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:05:53,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,344 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:05:53,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,344 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:05:53,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,344 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:05:53,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,345 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:05:53,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,345 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:05:53,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,346 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:05:53,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,346 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:05:53,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,347 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:05:53,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,347 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:05:53,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,348 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:05:53,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,348 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:05:53,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,349 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:05:53,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,349 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:05:53,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,350 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:05:53,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,350 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:05:53,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,351 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:05:53,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,351 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:05:53,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,352 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:05:53,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,352 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:05:53,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,353 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:05:53,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,353 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:05:53,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,354 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:05:53,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,354 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:05:53,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,355 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:05:53,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,355 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:05:53,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:05:53,356 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:05:53,356 [76] DEBUG index - Current user is: admin +01/18/13 11:05:53,356 [76] DEBUG index - Current theme is: softed +01/18/13 11:05:53,356 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:05:53,356 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:05:53,358 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:05:53,358 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:05:53,361 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:05:53,361 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:05:53,363 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:05:53,363 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:05:53,364 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:05:53,364 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:05:53,364 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:05:53,364 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:05:53,364 [76] DEBUG index - skipping headers +01/18/13 11:05:53,366 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:05:53,366 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:05:53,372 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:05:53,372 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:05:53,372 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:05:53,372 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:05:53,376 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:06')) +01/18/13 11:05:53,380 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:06:22,065 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:06:22,208 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:06:22,208 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:06:22,208 [76] DEBUG index - ****Starting for new session +01/18/13 11:06:22,208 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:06:22,209 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'assigned_user_id', + 'id' => '16', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:06:22,209 [76] INFO index - About to take action TooltipAjax +01/18/13 11:06:22,209 [76] DEBUG index - in TooltipAjax +01/18/13 11:06:22,209 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:06:22,209 [76] INFO index - current module is Tooltip +01/18/13 11:06:22,238 [76] DEBUG user - Entering Users() method ... +01/18/13 11:06:22,239 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:06:22,239 [76] DEBUG index - in getColumnFields Users +01/18/13 11:06:22,239 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:22,239 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:22,239 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:22,240 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:22,240 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:06:22,240 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:06:22,248 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:22,248 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:22,248 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:06:22,248 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:06:22,249 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:06:22,249 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:06:22,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,250 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:06:22,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,250 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:06:22,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,251 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:06:22,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,251 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:06:22,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,252 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:06:22,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,252 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:06:22,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,253 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:06:22,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,253 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:06:22,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,254 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:06:22,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,254 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:06:22,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,255 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:06:22,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,255 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:06:22,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,256 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:06:22,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,256 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:06:22,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,256 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:06:22,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,257 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:06:22,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,257 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:06:22,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,258 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:06:22,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,258 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:06:22,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,259 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:06:22,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,259 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:06:22,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,260 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:06:22,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,260 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:06:22,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,260 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:06:22,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,261 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:06:22,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,261 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:06:22,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,262 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:06:22,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,262 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:06:22,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,263 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:06:22,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,263 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:06:22,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,264 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:06:22,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,264 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:06:22,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,265 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:06:22,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,265 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:06:22,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,266 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:06:22,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,266 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:06:22,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,267 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:06:22,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,267 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:06:22,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,268 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:06:22,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,268 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:06:22,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,269 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:06:22,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,269 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:06:22,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,270 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:06:22,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,270 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:06:22,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,271 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:06:22,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,271 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:06:22,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:22,272 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:06:22,276 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:06:22,276 [76] DEBUG index - Prepared sql query parameters : [258,1,Tooltip,TooltipAjax,,2013-01-18 11:06:22] +01/18/13 11:06:22,281 [76] DEBUG index - Current user is: admin +01/18/13 11:06:22,281 [76] DEBUG index - Current theme is: softed +01/18/13 11:06:22,281 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:06:22,282 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:06:22,283 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:06:22,283 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:06:22,285 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:06:22,285 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:06:22,287 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:06:22,287 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:06:22,288 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:06:22,288 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:06:22,288 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:06:22,288 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:06:22,288 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:06:22,288 [76] DEBUG index - skipping headers +01/18/13 11:06:22,289 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:06:22,290 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:06:22,296 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:06:22,296 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:22,296 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:06:22,297 [76] DEBUG index - Prepared sql query parameters : [6,assigned_user_id] +01/18/13 11:06:22,301 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:06:22,301 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:06:33,483 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:06:33,617 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:06:33,618 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:06:33,618 [76] DEBUG index - ****Starting for new session +01/18/13 11:06:33,618 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:06:33,618 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:06:33,618 [76] INFO index - About to take action CalendarAjax +01/18/13 11:06:33,619 [76] DEBUG index - in CalendarAjax +01/18/13 11:06:33,619 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:06:33,619 [76] INFO index - current module is Calendar +01/18/13 11:06:33,648 [76] DEBUG user - Entering Users() method ... +01/18/13 11:06:33,648 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:06:33,648 [76] DEBUG index - in getColumnFields Users +01/18/13 11:06:33,648 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:33,649 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:33,649 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:33,649 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:33,649 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:06:33,649 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:06:33,658 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:06:33,659 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:06:33,659 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:06:33,659 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:06:33,659 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:06:33,660 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:06:33,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,660 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:06:33,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,661 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:06:33,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,661 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:06:33,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,662 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:06:33,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,662 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:06:33,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,663 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:06:33,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,663 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:06:33,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,664 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:06:33,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,664 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:06:33,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,665 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:06:33,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,665 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:06:33,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,666 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:06:33,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,666 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:06:33,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,667 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:06:33,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,667 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:06:33,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,668 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:06:33,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,668 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:06:33,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,669 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:06:33,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,669 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:06:33,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,669 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:06:33,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,670 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:06:33,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,670 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:06:33,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,671 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:06:33,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,671 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:06:33,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,671 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:06:33,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,672 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:06:33,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,672 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:06:33,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,673 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:06:33,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,673 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:06:33,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,674 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:06:33,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,674 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:06:33,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,675 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:06:33,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,675 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:06:33,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,676 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:06:33,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,676 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:06:33,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,677 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:06:33,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,677 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:06:33,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,678 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:06:33,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,678 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:06:33,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,679 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:06:33,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,679 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:06:33,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,680 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:06:33,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,680 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:06:33,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,680 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:06:33,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,681 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:06:33,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,681 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:06:33,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:06:33,682 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:06:33,682 [76] DEBUG index - Current user is: admin +01/18/13 11:06:33,682 [76] DEBUG index - Current theme is: softed +01/18/13 11:06:33,682 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:06:33,683 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:06:33,684 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:06:33,684 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:06:33,686 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:06:33,686 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:06:33,688 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:06:33,688 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:06:33,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:06:33,689 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:06:33,689 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:06:33,689 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:06:33,689 [76] DEBUG index - skipping headers +01/18/13 11:06:33,690 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:06:33,691 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:06:33,696 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:06:33,696 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:06:33,696 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:06:33,696 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:06:33,700 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:07')) +01/18/13 11:06:33,703 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:07:13,933 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:07:14,097 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:07:14,097 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:07:14,097 [76] DEBUG index - ****Starting for new session +01/18/13 11:07:14,098 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:07:14,098 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:07:14,098 [76] INFO index - About to take action CalendarAjax +01/18/13 11:07:14,098 [76] DEBUG index - in CalendarAjax +01/18/13 11:07:14,099 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:07:14,099 [76] INFO index - current module is Calendar +01/18/13 11:07:14,131 [76] DEBUG user - Entering Users() method ... +01/18/13 11:07:14,131 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:07:14,131 [76] DEBUG index - in getColumnFields Users +01/18/13 11:07:14,132 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:14,132 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:14,132 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:14,132 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:14,132 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:07:14,132 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:07:14,144 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:14,144 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:14,144 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:07:14,144 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:07:14,145 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:07:14,145 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:07:14,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,146 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:07:14,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,147 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:07:14,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,147 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:07:14,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,148 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:07:14,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,148 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:07:14,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,149 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:07:14,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,149 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:07:14,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,150 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:07:14,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,150 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:07:14,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,151 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:07:14,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,151 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:07:14,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,152 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:07:14,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,152 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:07:14,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,153 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:07:14,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,153 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:07:14,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,154 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:07:14,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,154 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:07:14,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,155 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:07:14,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,155 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:07:14,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,156 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:07:14,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,156 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:07:14,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,157 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:07:14,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,157 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:07:14,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,157 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:07:14,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,158 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:07:14,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,159 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:07:14,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,159 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:07:14,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,160 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:07:14,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,160 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:07:14,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,161 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:07:14,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,161 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:07:14,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,162 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:07:14,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,162 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:07:14,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,163 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:07:14,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,163 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:07:14,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,164 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:07:14,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,164 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:07:14,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,165 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:07:14,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,165 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:07:14,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,166 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:07:14,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,166 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:07:14,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,167 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:07:14,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,167 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:07:14,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,168 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:07:14,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,168 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:07:14,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,169 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:07:14,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:14,169 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:07:14,169 [76] DEBUG index - Current user is: admin +01/18/13 11:07:14,170 [76] DEBUG index - Current theme is: softed +01/18/13 11:07:14,170 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:07:14,170 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:07:14,171 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:07:14,172 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:07:14,174 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:07:14,174 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:07:14,175 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:07:14,176 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:07:14,176 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:07:14,176 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:07:14,176 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:07:14,176 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:07:14,177 [76] DEBUG index - skipping headers +01/18/13 11:07:14,178 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:07:14,178 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:07:14,183 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:07:14,183 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:07:14,184 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:07:14,184 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:07:14,193 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:08')) +01/18/13 11:07:14,206 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:07:54,335 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:07:54,469 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:07:54,469 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:07:54,469 [76] DEBUG index - ****Starting for new session +01/18/13 11:07:54,469 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:07:54,470 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:07:54,470 [76] INFO index - About to take action CalendarAjax +01/18/13 11:07:54,470 [76] DEBUG index - in CalendarAjax +01/18/13 11:07:54,470 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:07:54,470 [76] INFO index - current module is Calendar +01/18/13 11:07:54,501 [76] DEBUG user - Entering Users() method ... +01/18/13 11:07:54,501 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:07:54,501 [76] DEBUG index - in getColumnFields Users +01/18/13 11:07:54,501 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:54,502 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:54,502 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:54,502 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:54,502 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:07:54,502 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:07:54,510 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:07:54,511 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:07:54,511 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:07:54,511 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:07:54,511 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:07:54,512 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:07:54,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,512 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:07:54,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,513 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:07:54,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,513 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:07:54,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,514 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:07:54,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,514 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:07:54,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,515 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:07:54,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,515 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:07:54,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,516 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:07:54,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,516 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:07:54,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,517 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:07:54,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,517 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:07:54,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,518 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:07:54,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,518 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:07:54,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,519 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:07:54,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,519 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:07:54,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,520 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:07:54,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,520 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:07:54,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,521 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:07:54,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,521 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:07:54,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,522 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:07:54,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,522 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:07:54,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,523 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:07:54,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,523 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:07:54,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,524 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:07:54,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,524 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:07:54,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,525 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:07:54,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,525 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:07:54,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,526 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:07:54,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,526 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:07:54,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,527 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:07:54,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,527 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:07:54,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,528 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:07:54,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,528 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:07:54,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,529 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:07:54,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,529 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:07:54,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,530 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:07:54,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,530 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:07:54,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,531 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:07:54,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,531 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:07:54,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,532 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:07:54,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,532 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:07:54,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,533 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:07:54,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,533 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:07:54,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,534 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:07:54,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,534 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:07:54,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,535 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:07:54,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:07:54,535 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:07:54,535 [76] DEBUG index - Current user is: admin +01/18/13 11:07:54,536 [76] DEBUG index - Current theme is: softed +01/18/13 11:07:54,536 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:07:54,536 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:07:54,538 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:07:54,538 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:07:54,540 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:07:54,540 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:07:54,541 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:07:54,541 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:07:54,542 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:07:54,542 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:07:54,542 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:07:54,542 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:07:54,542 [76] DEBUG index - skipping headers +01/18/13 11:07:54,543 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:07:54,544 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:07:54,549 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:07:54,549 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:07:54,549 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:07:54,549 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:07:54,555 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:08')) +01/18/13 11:07:54,558 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:08:34,656 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:08:34,784 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:08:34,784 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:08:34,784 [76] DEBUG index - ****Starting for new session +01/18/13 11:08:34,785 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:08:34,785 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:08:34,785 [76] INFO index - About to take action CalendarAjax +01/18/13 11:08:34,785 [76] DEBUG index - in CalendarAjax +01/18/13 11:08:34,785 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:08:34,785 [76] INFO index - current module is Calendar +01/18/13 11:08:34,816 [76] DEBUG user - Entering Users() method ... +01/18/13 11:08:34,816 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:08:34,816 [76] DEBUG index - in getColumnFields Users +01/18/13 11:08:34,817 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:08:34,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:08:34,817 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:08:34,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:08:34,817 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:08:34,818 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:08:34,825 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:08:34,825 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:08:34,826 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:08:34,826 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:08:34,826 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:08:34,827 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:08:34,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,827 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:08:34,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,828 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:08:34,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,828 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:08:34,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,829 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:08:34,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,829 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:08:34,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,830 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:08:34,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,831 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:08:34,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,831 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:08:34,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,832 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:08:34,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,832 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:08:34,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,833 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:08:34,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,833 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:08:34,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,834 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:08:34,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,834 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:08:34,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,835 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:08:34,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,835 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:08:34,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,836 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:08:34,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,836 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:08:34,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,837 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:08:34,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,837 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:08:34,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,838 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:08:34,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,838 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:08:34,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,839 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:08:34,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,839 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:08:34,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,839 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:08:34,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,840 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:08:34,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,840 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:08:34,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,841 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:08:34,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,841 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:08:34,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,842 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:08:34,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,842 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:08:34,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,843 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:08:34,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,843 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:08:34,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,844 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:08:34,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,844 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:08:34,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,845 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:08:34,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,845 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:08:34,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,846 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:08:34,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,846 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:08:34,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,847 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:08:34,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,847 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:08:34,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,848 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:08:34,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,848 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:08:34,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,849 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:08:34,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,849 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:08:34,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,850 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:08:34,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:08:34,850 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:08:34,851 [76] DEBUG index - Current user is: admin +01/18/13 11:08:34,851 [76] DEBUG index - Current theme is: softed +01/18/13 11:08:34,851 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:08:34,851 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:08:34,853 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:08:34,853 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:08:34,855 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:08:34,855 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:08:34,857 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:08:34,857 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:08:34,858 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:08:34,858 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:08:34,858 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:08:34,858 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:08:34,858 [76] DEBUG index - skipping headers +01/18/13 11:08:34,859 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:08:34,860 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:08:34,865 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:08:34,865 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:08:34,865 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:08:34,865 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:08:34,869 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:09')) +01/18/13 11:08:34,872 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:09:14,967 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:09:15,096 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:09:15,096 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:09:15,096 [76] DEBUG index - ****Starting for new session +01/18/13 11:09:15,097 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:09:15,097 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:09:15,097 [76] INFO index - About to take action CalendarAjax +01/18/13 11:09:15,097 [76] DEBUG index - in CalendarAjax +01/18/13 11:09:15,097 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:09:15,097 [76] INFO index - current module is Calendar +01/18/13 11:09:15,128 [76] DEBUG user - Entering Users() method ... +01/18/13 11:09:15,129 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:09:15,129 [76] DEBUG index - in getColumnFields Users +01/18/13 11:09:15,129 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:15,129 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:15,129 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:15,129 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:15,130 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:09:15,130 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:09:15,138 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:15,138 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:15,138 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:09:15,138 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:09:15,138 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:09:15,139 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:09:15,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,140 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:09:15,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,140 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:09:15,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,141 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:09:15,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,141 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:09:15,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,142 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:09:15,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,142 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:09:15,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,143 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:09:15,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,143 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:09:15,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,144 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:09:15,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,144 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:09:15,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,145 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:09:15,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,145 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:09:15,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,146 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:09:15,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,146 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:09:15,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,147 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:09:15,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,147 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:09:15,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,148 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:09:15,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,148 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:09:15,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,149 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:09:15,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,149 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:09:15,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,150 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:09:15,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,150 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:09:15,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,151 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:09:15,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,151 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:09:15,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,151 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:09:15,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,152 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:09:15,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,152 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:09:15,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,153 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:09:15,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,153 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:09:15,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,154 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:09:15,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,154 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:09:15,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,155 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:09:15,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,155 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:09:15,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,156 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:09:15,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,156 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:09:15,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,157 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:09:15,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,157 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:09:15,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,158 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:09:15,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,158 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:09:15,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,159 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:09:15,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,159 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:09:15,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,160 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:09:15,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,160 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:09:15,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,161 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:09:15,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,161 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:09:15,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,162 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:09:15,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:15,162 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:09:15,163 [76] DEBUG index - Current user is: admin +01/18/13 11:09:15,163 [76] DEBUG index - Current theme is: softed +01/18/13 11:09:15,163 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:09:15,163 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:09:15,165 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:09:15,165 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:09:15,167 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:09:15,167 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:09:15,169 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:09:15,169 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:09:15,170 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:09:15,170 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:09:15,170 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:09:15,170 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:09:15,170 [76] DEBUG index - skipping headers +01/18/13 11:09:15,171 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:09:15,172 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:09:15,177 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:09:15,177 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:09:15,177 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:09:15,177 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:09:15,186 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:10')) +01/18/13 11:09:15,189 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:09:55,311 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:09:55,440 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:09:55,441 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:09:55,441 [76] DEBUG index - ****Starting for new session +01/18/13 11:09:55,441 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:09:55,441 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:09:55,442 [76] INFO index - About to take action CalendarAjax +01/18/13 11:09:55,442 [76] DEBUG index - in CalendarAjax +01/18/13 11:09:55,442 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:09:55,442 [76] INFO index - current module is Calendar +01/18/13 11:09:55,473 [76] DEBUG user - Entering Users() method ... +01/18/13 11:09:55,473 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:09:55,473 [76] DEBUG index - in getColumnFields Users +01/18/13 11:09:55,473 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:55,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:55,474 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:55,474 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:55,474 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:09:55,474 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:09:55,483 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:09:55,483 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:09:55,483 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:09:55,483 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:09:55,484 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:09:55,484 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:09:55,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,485 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:09:55,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,485 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:09:55,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,486 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:09:55,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,486 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:09:55,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,487 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:09:55,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,487 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:09:55,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,488 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:09:55,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,488 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:09:55,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,489 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:09:55,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,489 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:09:55,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,490 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:09:55,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,490 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:09:55,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,491 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:09:55,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,491 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:09:55,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,492 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:09:55,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,492 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:09:55,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,493 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:09:55,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,493 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:09:55,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,494 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:09:55,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,494 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:09:55,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,495 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:09:55,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,495 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:09:55,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,496 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:09:55,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,496 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:09:55,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,496 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:09:55,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,497 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:09:55,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,497 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:09:55,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,498 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:09:55,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,498 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:09:55,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,499 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:09:55,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,499 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:09:55,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,500 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:09:55,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,500 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:09:55,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,501 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:09:55,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,501 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:09:55,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,502 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:09:55,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,502 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:09:55,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,503 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:09:55,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,503 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:09:55,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,504 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:09:55,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,504 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:09:55,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,505 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:09:55,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,505 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:09:55,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,505 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:09:55,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,506 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:09:55,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,506 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:09:55,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:09:55,507 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:09:55,507 [76] DEBUG index - Current user is: admin +01/18/13 11:09:55,507 [76] DEBUG index - Current theme is: softed +01/18/13 11:09:55,508 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:09:55,508 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:09:55,509 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:09:55,510 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:09:55,511 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:09:55,512 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:09:55,513 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:09:55,513 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:09:55,514 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:09:55,514 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:09:55,514 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:09:55,514 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:09:55,514 [76] DEBUG index - skipping headers +01/18/13 11:09:55,515 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:09:55,516 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:09:55,521 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:09:55,522 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:09:55,522 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:09:55,522 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:09:55,527 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:10')) +01/18/13 11:09:55,530 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:10:35,633 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:10:35,762 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:10:35,762 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:10:35,763 [76] DEBUG index - ****Starting for new session +01/18/13 11:10:35,763 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:10:35,763 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:10:35,763 [76] INFO index - About to take action CalendarAjax +01/18/13 11:10:35,763 [76] DEBUG index - in CalendarAjax +01/18/13 11:10:35,764 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:10:35,764 [76] INFO index - current module is Calendar +01/18/13 11:10:35,795 [76] DEBUG user - Entering Users() method ... +01/18/13 11:10:35,795 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:10:35,795 [76] DEBUG index - in getColumnFields Users +01/18/13 11:10:35,795 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:10:35,795 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:10:35,795 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:10:35,796 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:10:35,796 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:10:35,796 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:10:35,804 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:10:35,804 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:10:35,804 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:10:35,804 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:10:35,805 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:10:35,805 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:10:35,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,806 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:10:35,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,806 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:10:35,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,807 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:10:35,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,807 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:10:35,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,808 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:10:35,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,808 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:10:35,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,809 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:10:35,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,809 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:10:35,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,809 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:10:35,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,810 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:10:35,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,810 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:10:35,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,811 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:10:35,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,811 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:10:35,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,812 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:10:35,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,812 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:10:35,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,813 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:10:35,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,813 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:10:35,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,814 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:10:35,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,814 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:10:35,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,815 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:10:35,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,815 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:10:35,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,816 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:10:35,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,816 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:10:35,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,816 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:10:35,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,817 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:10:35,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,817 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:10:35,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,818 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:10:35,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,818 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:10:35,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,819 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:10:35,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,819 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:10:35,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,820 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:10:35,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,820 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:10:35,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,821 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:10:35,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,821 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:10:35,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,821 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:10:35,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,822 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:10:35,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,822 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:10:35,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,823 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:10:35,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,823 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:10:35,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,824 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:10:35,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,824 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:10:35,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,825 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:10:35,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,825 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:10:35,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,826 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:10:35,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,826 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:10:35,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,827 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:10:35,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:10:35,827 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:10:35,828 [76] DEBUG index - Current user is: admin +01/18/13 11:10:35,828 [76] DEBUG index - Current theme is: softed +01/18/13 11:10:35,828 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:10:35,828 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:10:35,829 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:10:35,830 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:10:35,832 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:10:35,832 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:10:35,833 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:10:35,833 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:10:35,834 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:10:35,834 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:10:35,834 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:10:35,834 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:10:35,834 [76] DEBUG index - skipping headers +01/18/13 11:10:35,835 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:10:35,836 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:10:35,841 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:10:35,842 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:10:35,842 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:10:35,842 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:10:35,845 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:11')) +01/18/13 11:10:35,848 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:11:16,313 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:11:16,467 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:11:16,467 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:11:16,468 [76] DEBUG index - ****Starting for new session +01/18/13 11:11:16,468 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:11:16,469 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:11:16,469 [76] INFO index - About to take action CalendarAjax +01/18/13 11:11:16,469 [76] DEBUG index - in CalendarAjax +01/18/13 11:11:16,469 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:11:16,469 [76] INFO index - current module is Calendar +01/18/13 11:11:16,508 [76] DEBUG user - Entering Users() method ... +01/18/13 11:11:16,508 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:11:16,508 [76] DEBUG index - in getColumnFields Users +01/18/13 11:11:16,508 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:16,509 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:16,509 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:16,509 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:16,509 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:11:16,509 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:11:16,672 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:16,673 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:16,673 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:11:16,673 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:11:16,674 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:11:16,675 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:11:16,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,676 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:11:16,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,676 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:11:16,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,677 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:11:16,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,678 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:11:16,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,678 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:11:16,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,679 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:11:16,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,680 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:11:16,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,680 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:11:16,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,681 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:11:16,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,682 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:11:16,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,682 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:11:16,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,683 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:11:16,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,684 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:11:16,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,684 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:11:16,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,685 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:11:16,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,686 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:11:16,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,686 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:11:16,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,687 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:11:16,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,688 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:11:16,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,688 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:11:16,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,689 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:11:16,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,689 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:11:16,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,690 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:11:16,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,690 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:11:16,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,691 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:11:16,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,691 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:11:16,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,692 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:11:16,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,692 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:11:16,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,693 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:11:16,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,694 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:11:16,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,694 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:11:16,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,695 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:11:16,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,696 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:11:16,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,697 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:11:16,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,697 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:11:16,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,698 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:11:16,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,699 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:11:16,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,700 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:11:16,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,700 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:11:16,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,701 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:11:16,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,702 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:11:16,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,703 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:11:16,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,704 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:11:16,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,704 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:11:16,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,705 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:11:16,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,705 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:11:16,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:16,706 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:11:16,706 [76] DEBUG index - Current user is: admin +01/18/13 11:11:16,706 [76] DEBUG index - Current theme is: softed +01/18/13 11:11:16,706 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:11:16,706 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:11:16,709 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:11:16,709 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:11:16,711 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:11:16,711 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:11:16,713 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:11:16,713 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:11:16,714 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:11:16,714 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:11:16,714 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:11:16,714 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:11:16,714 [76] DEBUG index - skipping headers +01/18/13 11:11:16,716 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:11:16,716 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:11:16,721 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:11:16,722 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:11:16,722 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:11:16,722 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:11:16,808 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:12')) +01/18/13 11:11:16,883 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:11:57,951 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:11:58,258 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:11:58,259 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:11:58,259 [76] DEBUG index - ****Starting for new session +01/18/13 11:11:58,259 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:11:58,260 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:11:58,260 [76] INFO index - About to take action CalendarAjax +01/18/13 11:11:58,260 [76] DEBUG index - in CalendarAjax +01/18/13 11:11:58,260 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:11:58,260 [76] INFO index - current module is Calendar +01/18/13 11:11:58,297 [76] DEBUG user - Entering Users() method ... +01/18/13 11:11:58,297 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:11:58,298 [76] DEBUG index - in getColumnFields Users +01/18/13 11:11:58,298 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:58,298 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:58,299 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:58,299 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:58,299 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:11:58,299 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:11:58,377 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:11:58,377 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:11:58,378 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:11:58,378 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:11:58,379 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:11:58,379 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:11:58,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,380 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:11:58,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,381 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:11:58,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,381 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:11:58,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,382 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:11:58,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,382 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:11:58,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,383 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:11:58,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,383 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:11:58,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,384 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:11:58,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,385 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:11:58,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,385 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:11:58,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,386 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:11:58,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,386 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:11:58,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,387 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:11:58,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,387 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:11:58,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,388 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:11:58,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,389 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:11:58,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,389 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:11:58,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,390 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:11:58,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,391 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:11:58,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,391 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:11:58,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,392 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:11:58,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,392 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:11:58,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,393 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:11:58,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,393 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:11:58,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,393 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:11:58,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,394 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:11:58,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,394 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:11:58,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,395 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:11:58,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,395 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:11:58,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,396 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:11:58,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,396 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:11:58,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,397 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:11:58,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,398 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:11:58,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,399 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:11:58,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,399 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:11:58,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,400 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:11:58,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,401 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:11:58,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,401 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:11:58,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,402 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:11:58,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,402 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:11:58,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,403 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:11:58,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,404 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:11:58,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,404 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:11:58,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,404 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:11:58,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,405 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:11:58,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,405 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:11:58,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:11:58,406 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:11:58,406 [76] DEBUG index - Current user is: admin +01/18/13 11:11:58,406 [76] DEBUG index - Current theme is: softed +01/18/13 11:11:58,407 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:11:58,407 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:11:58,409 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:11:58,409 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:11:58,411 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:11:58,412 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:11:58,413 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:11:58,414 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:11:58,414 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:11:58,415 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:11:58,415 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:11:58,415 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:11:58,415 [76] DEBUG index - skipping headers +01/18/13 11:11:58,417 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:11:58,417 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:11:58,424 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:11:58,425 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:11:58,425 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:11:58,425 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:11:58,478 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:12')) +01/18/13 11:11:58,574 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:12:38,710 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:12:38,836 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:12:38,836 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:12:38,837 [76] DEBUG index - ****Starting for new session +01/18/13 11:12:38,837 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:12:38,837 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:12:38,837 [76] INFO index - About to take action CalendarAjax +01/18/13 11:12:38,837 [76] DEBUG index - in CalendarAjax +01/18/13 11:12:38,838 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:12:38,838 [76] INFO index - current module is Calendar +01/18/13 11:12:38,887 [76] DEBUG user - Entering Users() method ... +01/18/13 11:12:38,888 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:12:38,888 [76] DEBUG index - in getColumnFields Users +01/18/13 11:12:38,888 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:12:38,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:12:38,888 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:12:38,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:12:38,889 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:12:38,889 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:12:38,897 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:12:38,897 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:12:38,897 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:12:38,897 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:12:38,897 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:12:38,898 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:12:38,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,899 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:12:38,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,899 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:12:38,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,900 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:12:38,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,900 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:12:38,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,901 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:12:38,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,901 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:12:38,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,902 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:12:38,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,902 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:12:38,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,903 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:12:38,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,904 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:12:38,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,904 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:12:38,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,905 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:12:38,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,905 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:12:38,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,906 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:12:38,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,906 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:12:38,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,907 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:12:38,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,907 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:12:38,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,908 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:12:38,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,908 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:12:38,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,909 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:12:38,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,909 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:12:38,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,910 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:12:38,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,910 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:12:38,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,911 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:12:38,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,911 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:12:38,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,912 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:12:38,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,912 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:12:38,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,913 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:12:38,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,913 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:12:38,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,914 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:12:38,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,914 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:12:38,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,915 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:12:38,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,915 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:12:38,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,916 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:12:38,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,916 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:12:38,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,917 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:12:38,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,917 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:12:38,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,918 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:12:38,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,918 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:12:38,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,919 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:12:38,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,919 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:12:38,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,920 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:12:38,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,920 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:12:38,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,921 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:12:38,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,921 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:12:38,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,922 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:12:38,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:12:38,922 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:12:38,922 [76] DEBUG index - Current user is: admin +01/18/13 11:12:38,923 [76] DEBUG index - Current theme is: softed +01/18/13 11:12:38,923 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:12:38,923 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:12:38,924 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:12:38,925 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:12:38,927 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:12:38,927 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:12:38,928 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:12:38,928 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:12:38,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:12:38,929 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:12:38,929 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:12:38,929 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:12:38,929 [76] DEBUG index - skipping headers +01/18/13 11:12:38,930 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:12:38,931 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:12:38,935 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:12:38,936 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:12:38,936 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:12:38,936 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:12:38,940 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:13')) +01/18/13 11:12:38,944 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:13:19,042 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:13:19,169 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:13:19,169 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:13:19,169 [76] DEBUG index - ****Starting for new session +01/18/13 11:13:19,170 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:13:19,170 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:13:19,170 [76] INFO index - About to take action CalendarAjax +01/18/13 11:13:19,170 [76] DEBUG index - in CalendarAjax +01/18/13 11:13:19,170 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:13:19,170 [76] INFO index - current module is Calendar +01/18/13 11:13:19,217 [76] DEBUG user - Entering Users() method ... +01/18/13 11:13:19,217 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:13:19,217 [76] DEBUG index - in getColumnFields Users +01/18/13 11:13:19,217 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:19,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:19,217 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:19,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:19,218 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:13:19,218 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:13:19,225 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:19,225 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:19,226 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:13:19,226 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:13:19,226 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:13:19,227 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:13:19,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,227 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:13:19,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,228 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:13:19,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,229 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:13:19,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,229 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:13:19,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,230 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:13:19,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,230 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:13:19,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,231 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:13:19,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,231 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:13:19,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,232 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:13:19,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,232 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:13:19,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,233 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:13:19,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,233 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:13:19,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,234 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:13:19,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,234 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:13:19,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,235 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:13:19,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,235 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:13:19,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,236 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:13:19,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,236 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:13:19,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,237 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:13:19,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,237 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:13:19,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,238 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:13:19,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,238 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:13:19,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,239 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:13:19,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,239 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:13:19,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,239 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:13:19,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,240 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:13:19,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,240 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:13:19,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,241 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:13:19,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,242 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:13:19,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,242 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:13:19,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,243 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:13:19,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,243 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:13:19,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,244 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:13:19,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,244 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:13:19,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,245 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:13:19,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,245 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:13:19,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,246 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:13:19,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,246 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:13:19,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,247 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:13:19,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,248 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:13:19,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,248 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:13:19,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,249 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:13:19,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,249 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:13:19,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,250 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:13:19,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,250 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:13:19,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,251 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:13:19,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:19,251 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:13:19,252 [76] DEBUG index - Current user is: admin +01/18/13 11:13:19,252 [76] DEBUG index - Current theme is: softed +01/18/13 11:13:19,252 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:13:19,252 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:13:19,254 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:13:19,254 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:13:19,256 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:13:19,256 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:13:19,258 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:13:19,258 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:13:19,259 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:13:19,259 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:13:19,259 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:13:19,259 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:13:19,259 [76] DEBUG index - skipping headers +01/18/13 11:13:19,260 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:13:19,260 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:13:19,266 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:13:19,266 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:13:19,266 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:13:19,266 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:13:19,270 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:14')) +01/18/13 11:13:19,273 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:13:59,733 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:13:59,857 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:13:59,857 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:13:59,858 [76] DEBUG index - ****Starting for new session +01/18/13 11:13:59,858 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:13:59,858 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:13:59,858 [76] INFO index - About to take action CalendarAjax +01/18/13 11:13:59,858 [76] DEBUG index - in CalendarAjax +01/18/13 11:13:59,858 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:13:59,859 [76] INFO index - current module is Calendar +01/18/13 11:13:59,904 [76] DEBUG user - Entering Users() method ... +01/18/13 11:13:59,904 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:13:59,904 [76] DEBUG index - in getColumnFields Users +01/18/13 11:13:59,904 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:59,905 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:59,905 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:59,905 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:59,905 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:13:59,905 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:13:59,914 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:13:59,914 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:13:59,914 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:13:59,914 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:13:59,915 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:13:59,915 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:13:59,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,916 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:13:59,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,916 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:13:59,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,917 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:13:59,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,917 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:13:59,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,918 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:13:59,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,918 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:13:59,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,919 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:13:59,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,919 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:13:59,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,920 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:13:59,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,920 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:13:59,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,921 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:13:59,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,921 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:13:59,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,922 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:13:59,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,922 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:13:59,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,923 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:13:59,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,923 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:13:59,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,924 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:13:59,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,924 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:13:59,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,925 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:13:59,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,925 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:13:59,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,926 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:13:59,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,926 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:13:59,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,927 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:13:59,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,927 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:13:59,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,928 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:13:59,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,928 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:13:59,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,929 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:13:59,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,929 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:13:59,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,930 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:13:59,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,930 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:13:59,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,931 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:13:59,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,931 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:13:59,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,932 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:13:59,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,932 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:13:59,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,933 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:13:59,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,933 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:13:59,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,934 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:13:59,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,934 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:13:59,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,935 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:13:59,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,935 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:13:59,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,936 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:13:59,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,936 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:13:59,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,937 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:13:59,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,937 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:13:59,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,937 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:13:59,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,938 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:13:59,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:13:59,939 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:13:59,939 [76] DEBUG index - Current user is: admin +01/18/13 11:13:59,939 [76] DEBUG index - Current theme is: softed +01/18/13 11:13:59,939 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:13:59,940 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:13:59,941 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:13:59,941 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:13:59,943 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:13:59,943 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:13:59,945 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:13:59,945 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:13:59,946 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:13:59,946 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:13:59,946 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:13:59,946 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:13:59,946 [76] DEBUG index - skipping headers +01/18/13 11:13:59,947 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:13:59,948 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:13:59,952 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:13:59,952 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:13:59,952 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:13:59,953 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:13:59,958 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:14')) +01/18/13 11:13:59,962 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:14:40,511 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:14:40,643 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:14:40,644 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:14:40,644 [76] DEBUG index - ****Starting for new session +01/18/13 11:14:40,644 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:14:40,644 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:14:40,645 [76] INFO index - About to take action CalendarAjax +01/18/13 11:14:40,645 [76] DEBUG index - in CalendarAjax +01/18/13 11:14:40,645 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:14:40,645 [76] INFO index - current module is Calendar +01/18/13 11:14:40,692 [76] DEBUG user - Entering Users() method ... +01/18/13 11:14:40,692 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:14:40,692 [76] DEBUG index - in getColumnFields Users +01/18/13 11:14:40,692 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:14:40,692 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:14:40,693 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:14:40,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:14:40,693 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:14:40,693 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:14:40,702 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:14:40,703 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:14:40,703 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:14:40,703 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:14:40,703 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:14:40,704 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:14:40,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,705 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:14:40,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,705 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:14:40,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,706 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:14:40,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,706 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:14:40,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,707 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:14:40,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,707 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:14:40,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,708 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:14:40,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,708 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:14:40,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,709 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:14:40,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,709 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:14:40,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,710 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:14:40,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,710 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:14:40,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,711 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:14:40,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,711 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:14:40,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,712 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:14:40,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,713 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:14:40,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,713 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:14:40,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,714 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:14:40,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,714 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:14:40,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,715 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:14:40,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,715 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:14:40,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,716 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:14:40,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,716 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:14:40,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,716 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:14:40,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,717 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:14:40,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,717 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:14:40,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,718 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:14:40,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,718 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:14:40,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,719 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:14:40,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,719 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:14:40,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,720 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:14:40,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,720 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:14:40,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,721 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:14:40,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,722 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:14:40,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,722 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:14:40,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,723 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:14:40,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,723 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:14:40,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,724 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:14:40,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,724 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:14:40,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,725 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:14:40,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,726 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:14:40,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,726 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:14:40,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,727 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:14:40,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,727 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:14:40,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,728 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:14:40,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,728 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:14:40,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:14:40,729 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:14:40,729 [76] DEBUG index - Current user is: admin +01/18/13 11:14:40,729 [76] DEBUG index - Current theme is: softed +01/18/13 11:14:40,729 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:14:40,729 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:14:40,731 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:14:40,731 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:14:40,733 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:14:40,733 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:14:40,735 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:14:40,735 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:14:40,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:14:40,736 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:14:40,736 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:14:40,736 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:14:40,736 [76] DEBUG index - skipping headers +01/18/13 11:14:40,737 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:14:40,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:14:40,742 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:14:40,743 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:14:40,743 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:14:40,743 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:14:40,747 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:15')) +01/18/13 11:14:40,750 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:15:21,078 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:15:21,203 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:15:21,203 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:15:21,203 [76] DEBUG index - ****Starting for new session +01/18/13 11:15:21,204 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:15:21,204 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:15:21,204 [76] INFO index - About to take action CalendarAjax +01/18/13 11:15:21,204 [76] DEBUG index - in CalendarAjax +01/18/13 11:15:21,204 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:15:21,204 [76] INFO index - current module is Calendar +01/18/13 11:15:21,250 [76] DEBUG user - Entering Users() method ... +01/18/13 11:15:21,250 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:15:21,250 [76] DEBUG index - in getColumnFields Users +01/18/13 11:15:21,251 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:15:21,251 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:15:21,251 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:15:21,251 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:15:21,251 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:15:21,252 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:15:21,260 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:15:21,260 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:15:21,260 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:15:21,260 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:15:21,261 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:15:21,261 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:15:21,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,262 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:15:21,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,263 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:15:21,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,263 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:15:21,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,264 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:15:21,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,264 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:15:21,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,265 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:15:21,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,265 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:15:21,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,266 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:15:21,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,266 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:15:21,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,267 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:15:21,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,267 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:15:21,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,268 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:15:21,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,268 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:15:21,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,269 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:15:21,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,269 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:15:21,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,270 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:15:21,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,270 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:15:21,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,271 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:15:21,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,271 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:15:21,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,272 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:15:21,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,272 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:15:21,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,273 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:15:21,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,273 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:15:21,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,273 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:15:21,274 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,274 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:15:21,274 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,274 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:15:21,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,275 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:15:21,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,275 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:15:21,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,276 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:15:21,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,276 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:15:21,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,277 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:15:21,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,277 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:15:21,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,278 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:15:21,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,278 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:15:21,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,279 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:15:21,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,279 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:15:21,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,280 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:15:21,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,280 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:15:21,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,281 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:15:21,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,281 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:15:21,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,282 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:15:21,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,282 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:15:21,283 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,283 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:15:21,283 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,284 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:15:21,284 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,284 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:15:21,285 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,285 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:15:21,285 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:15:21,285 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:15:21,286 [76] DEBUG index - Current user is: admin +01/18/13 11:15:21,286 [76] DEBUG index - Current theme is: softed +01/18/13 11:15:21,286 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:15:21,286 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:15:21,288 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:15:21,288 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:15:21,290 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:15:21,290 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:15:21,291 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:15:21,291 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:15:21,292 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:15:21,292 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:15:21,292 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:15:21,292 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:15:21,292 [76] DEBUG index - skipping headers +01/18/13 11:15:21,293 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:15:21,294 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:15:21,298 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:15:21,299 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:15:21,299 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:15:21,299 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:15:21,303 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:16')) +01/18/13 11:15:21,306 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:16:01,607 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:16:01,736 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:16:01,736 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:16:01,736 [76] DEBUG index - ****Starting for new session +01/18/13 11:16:01,737 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:16:01,737 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:16:01,737 [76] INFO index - About to take action CalendarAjax +01/18/13 11:16:01,737 [76] DEBUG index - in CalendarAjax +01/18/13 11:16:01,737 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:16:01,737 [76] INFO index - current module is Calendar +01/18/13 11:16:01,784 [76] DEBUG user - Entering Users() method ... +01/18/13 11:16:01,784 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:16:01,784 [76] DEBUG index - in getColumnFields Users +01/18/13 11:16:01,784 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:01,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:01,785 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:01,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:01,785 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:16:01,785 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:16:01,793 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:01,793 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:01,794 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:16:01,794 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:16:01,794 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:16:01,795 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:16:01,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,795 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:16:01,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,796 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:16:01,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,796 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:16:01,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,797 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:16:01,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,797 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:16:01,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,798 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:16:01,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,799 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:16:01,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,799 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:16:01,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,800 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:16:01,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,800 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:16:01,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,801 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:16:01,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,801 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:16:01,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,802 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:16:01,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,802 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:16:01,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,803 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:16:01,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,803 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:16:01,804 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,804 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:16:01,804 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,804 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:16:01,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,805 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:16:01,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,805 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:16:01,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,806 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:16:01,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,806 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:16:01,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,807 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:16:01,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,807 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:16:01,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,807 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:16:01,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,808 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:16:01,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,809 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:16:01,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,809 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:16:01,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,810 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:16:01,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,810 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:16:01,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,811 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:16:01,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,811 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:16:01,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,812 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:16:01,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,812 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:16:01,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,813 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:16:01,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,813 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:16:01,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,814 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:16:01,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,814 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:16:01,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,815 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:16:01,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,815 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:16:01,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,816 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:16:01,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,816 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:16:01,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,817 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:16:01,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,817 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:16:01,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,818 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:16:01,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,818 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:16:01,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:01,819 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:16:01,819 [76] DEBUG index - Current user is: admin +01/18/13 11:16:01,819 [76] DEBUG index - Current theme is: softed +01/18/13 11:16:01,819 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:16:01,820 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:16:01,821 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:16:01,821 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:16:01,823 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:16:01,823 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:16:01,825 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:16:01,825 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:16:01,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:16:01,826 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:16:01,826 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:16:01,826 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:16:01,826 [76] DEBUG index - skipping headers +01/18/13 11:16:01,827 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:16:01,828 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:16:01,832 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:16:01,833 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:16:01,833 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:16:01,833 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:16:01,837 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:17')) +01/18/13 11:16:01,840 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:16:41,938 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:16:42,071 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:16:42,071 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:16:42,071 [76] DEBUG index - ****Starting for new session +01/18/13 11:16:42,072 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:16:42,072 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:16:42,072 [76] INFO index - About to take action CalendarAjax +01/18/13 11:16:42,072 [76] DEBUG index - in CalendarAjax +01/18/13 11:16:42,072 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:16:42,072 [76] INFO index - current module is Calendar +01/18/13 11:16:42,119 [76] DEBUG user - Entering Users() method ... +01/18/13 11:16:42,119 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:16:42,119 [76] DEBUG index - in getColumnFields Users +01/18/13 11:16:42,119 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:42,120 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:42,120 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:42,120 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:42,120 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:16:42,120 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:16:42,128 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:16:42,129 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:16:42,129 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:16:42,129 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:16:42,129 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:16:42,130 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:16:42,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,130 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:16:42,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,131 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:16:42,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,131 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:16:42,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,132 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:16:42,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,132 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:16:42,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,133 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:16:42,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,134 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:16:42,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,134 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:16:42,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,135 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:16:42,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,135 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:16:42,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,136 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:16:42,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,136 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:16:42,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,137 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:16:42,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,137 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:16:42,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,138 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:16:42,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,138 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:16:42,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,139 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:16:42,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,139 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:16:42,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,140 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:16:42,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,140 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:16:42,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,141 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:16:42,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,141 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:16:42,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,142 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:16:42,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,142 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:16:42,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,142 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:16:42,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,143 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:16:42,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,143 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:16:42,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,144 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:16:42,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,145 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:16:42,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,145 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:16:42,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,146 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:16:42,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,146 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:16:42,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,147 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:16:42,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,147 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:16:42,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,148 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:16:42,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,148 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:16:42,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,149 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:16:42,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,149 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:16:42,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,150 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:16:42,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,150 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:16:42,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,151 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:16:42,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,151 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:16:42,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,152 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:16:42,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,152 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:16:42,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,153 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:16:42,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,153 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:16:42,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:16:42,154 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:16:42,154 [76] DEBUG index - Current user is: admin +01/18/13 11:16:42,154 [76] DEBUG index - Current theme is: softed +01/18/13 11:16:42,154 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:16:42,154 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:16:42,156 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:16:42,156 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:16:42,158 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:16:42,159 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:16:42,160 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:16:42,160 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:16:42,161 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:16:42,161 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:16:42,161 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:16:42,161 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:16:42,161 [76] DEBUG index - skipping headers +01/18/13 11:16:42,162 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:16:42,163 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:16:42,167 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:16:42,168 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:16:42,168 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:16:42,168 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:16:42,172 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:17')) +01/18/13 11:16:42,175 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:17:22,602 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:17:22,727 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:17:22,727 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:17:22,727 [76] DEBUG index - ****Starting for new session +01/18/13 11:17:22,727 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:17:22,728 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:17:22,728 [76] INFO index - About to take action CalendarAjax +01/18/13 11:17:22,728 [76] DEBUG index - in CalendarAjax +01/18/13 11:17:22,728 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:17:22,728 [76] INFO index - current module is Calendar +01/18/13 11:17:22,776 [76] DEBUG user - Entering Users() method ... +01/18/13 11:17:22,776 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:17:22,776 [76] DEBUG index - in getColumnFields Users +01/18/13 11:17:22,776 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:17:22,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:17:22,777 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:17:22,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:17:22,777 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:17:22,777 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:17:22,785 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:17:22,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:17:22,786 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:17:22,786 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:17:22,786 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:17:22,787 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:17:22,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,788 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:17:22,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,788 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:17:22,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,789 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:17:22,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,789 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:17:22,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,790 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:17:22,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,790 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:17:22,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,791 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:17:22,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,791 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:17:22,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,792 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:17:22,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,792 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:17:22,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,793 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:17:22,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,793 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:17:22,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,794 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:17:22,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,794 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:17:22,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,795 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:17:22,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,795 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:17:22,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,796 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:17:22,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,796 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:17:22,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,797 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:17:22,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,797 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:17:22,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,798 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:17:22,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,798 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:17:22,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,799 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:17:22,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,799 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:17:22,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,800 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:17:22,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,800 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:17:22,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,801 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:17:22,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,801 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:17:22,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,802 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:17:22,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,802 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:17:22,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,803 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:17:22,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,803 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:17:22,804 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,804 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:17:22,804 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,804 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:17:22,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,805 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:17:22,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,805 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:17:22,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,806 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:17:22,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,806 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:17:22,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,807 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:17:22,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,807 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:17:22,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,808 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:17:22,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,808 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:17:22,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,809 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:17:22,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,809 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:17:22,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,810 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:17:22,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,810 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:17:22,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:17:22,811 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:17:22,811 [76] DEBUG index - Current user is: admin +01/18/13 11:17:22,811 [76] DEBUG index - Current theme is: softed +01/18/13 11:17:22,811 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:17:22,812 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:17:22,813 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:17:22,814 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:17:22,816 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:17:22,816 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:17:22,817 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:17:22,817 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:17:22,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:17:22,818 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:17:22,818 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:17:22,818 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:17:22,818 [76] DEBUG index - skipping headers +01/18/13 11:17:22,819 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:17:22,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:17:22,824 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:17:22,825 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:17:22,825 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:17:22,825 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:17:22,829 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:18')) +01/18/13 11:17:22,832 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:18:02,937 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:18:03,075 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:18:03,075 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:18:03,075 [76] DEBUG index - ****Starting for new session +01/18/13 11:18:03,076 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:18:03,076 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:18:03,076 [76] INFO index - About to take action CalendarAjax +01/18/13 11:18:03,076 [76] DEBUG index - in CalendarAjax +01/18/13 11:18:03,076 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:18:03,076 [76] INFO index - current module is Calendar +01/18/13 11:18:03,122 [76] DEBUG user - Entering Users() method ... +01/18/13 11:18:03,122 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:18:03,122 [76] DEBUG index - in getColumnFields Users +01/18/13 11:18:03,123 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:03,123 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:03,123 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:03,123 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:03,123 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:18:03,123 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:18:03,133 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:03,133 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:03,133 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:18:03,133 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:18:03,134 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:18:03,134 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:18:03,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,135 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:18:03,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,135 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:18:03,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,136 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:18:03,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,137 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:18:03,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,137 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:18:03,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,138 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:18:03,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,138 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:18:03,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,139 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:18:03,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,139 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:18:03,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,140 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:18:03,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,140 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:18:03,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,141 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:18:03,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,141 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:18:03,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,142 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:18:03,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,142 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:18:03,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,143 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:18:03,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,143 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:18:03,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,144 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:18:03,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,144 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:18:03,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,145 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:18:03,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,145 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:18:03,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,146 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:18:03,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,146 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:18:03,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,147 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:18:03,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,147 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:18:03,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,148 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:18:03,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,148 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:18:03,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,149 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:18:03,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,149 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:18:03,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,150 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:18:03,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,150 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:18:03,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,151 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:18:03,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,151 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:18:03,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,152 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:18:03,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,152 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:18:03,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,153 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:18:03,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,153 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:18:03,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,154 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:18:03,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,154 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:18:03,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,155 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:18:03,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,155 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:18:03,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,156 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:18:03,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,156 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:18:03,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,157 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:18:03,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,157 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:18:03,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,158 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:18:03,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:03,158 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:18:03,158 [76] DEBUG index - Current user is: admin +01/18/13 11:18:03,159 [76] DEBUG index - Current theme is: softed +01/18/13 11:18:03,159 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:18:03,159 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:18:03,161 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:18:03,161 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:18:03,163 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:18:03,163 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:18:03,164 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:18:03,165 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:18:03,165 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:18:03,165 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:18:03,165 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:18:03,166 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:18:03,166 [76] DEBUG index - skipping headers +01/18/13 11:18:03,167 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:18:03,167 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:18:03,171 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:18:03,172 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:18:03,172 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:18:03,172 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:18:03,177 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:19')) +01/18/13 11:18:03,181 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:18:43,281 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:18:43,413 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:18:43,413 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:18:43,413 [76] DEBUG index - ****Starting for new session +01/18/13 11:18:43,414 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:18:43,414 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:18:43,414 [76] INFO index - About to take action CalendarAjax +01/18/13 11:18:43,414 [76] DEBUG index - in CalendarAjax +01/18/13 11:18:43,414 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:18:43,415 [76] INFO index - current module is Calendar +01/18/13 11:18:43,461 [76] DEBUG user - Entering Users() method ... +01/18/13 11:18:43,461 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:18:43,461 [76] DEBUG index - in getColumnFields Users +01/18/13 11:18:43,461 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:43,461 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:43,461 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:43,462 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:43,462 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:18:43,462 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:18:43,470 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:18:43,470 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:18:43,470 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:18:43,470 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:18:43,471 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:18:43,472 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:18:43,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,472 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:18:43,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,473 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:18:43,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,473 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:18:43,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,474 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:18:43,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,474 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:18:43,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,475 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:18:43,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,475 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:18:43,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,476 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:18:43,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,476 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:18:43,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,477 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:18:43,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,477 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:18:43,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,478 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:18:43,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,478 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:18:43,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,479 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:18:43,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,479 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:18:43,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,480 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:18:43,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,481 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:18:43,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,481 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:18:43,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,482 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:18:43,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,482 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:18:43,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,483 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:18:43,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,483 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:18:43,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,484 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:18:43,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,484 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:18:43,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,484 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:18:43,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,485 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:18:43,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,485 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:18:43,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,486 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:18:43,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,486 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:18:43,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,487 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:18:43,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,487 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:18:43,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,488 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:18:43,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,488 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:18:43,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,489 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:18:43,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,489 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:18:43,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,490 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:18:43,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,490 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:18:43,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,491 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:18:43,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,491 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:18:43,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,492 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:18:43,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,492 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:18:43,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,493 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:18:43,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,494 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:18:43,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,494 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:18:43,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,495 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:18:43,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,495 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:18:43,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:18:43,496 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:18:43,496 [76] DEBUG index - Current user is: admin +01/18/13 11:18:43,496 [76] DEBUG index - Current theme is: softed +01/18/13 11:18:43,496 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:18:43,496 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:18:43,498 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:18:43,498 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:18:43,500 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:18:43,500 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:18:43,502 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:18:43,502 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:18:43,503 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:18:43,503 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:18:43,503 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:18:43,503 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:18:43,503 [76] DEBUG index - skipping headers +01/18/13 11:18:43,504 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:18:43,505 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:18:43,509 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:18:43,509 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:18:43,510 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:18:43,510 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:18:43,514 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:19')) +01/18/13 11:18:43,518 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:19:23,623 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:19:23,757 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:19:23,757 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:19:23,757 [76] DEBUG index - ****Starting for new session +01/18/13 11:19:23,758 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:19:23,758 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:19:23,758 [76] INFO index - About to take action CalendarAjax +01/18/13 11:19:23,758 [76] DEBUG index - in CalendarAjax +01/18/13 11:19:23,758 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:19:23,758 [76] INFO index - current module is Calendar +01/18/13 11:19:23,805 [76] DEBUG user - Entering Users() method ... +01/18/13 11:19:23,805 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:19:23,805 [76] DEBUG index - in getColumnFields Users +01/18/13 11:19:23,806 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:19:23,806 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:19:23,806 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:19:23,806 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:19:23,806 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:19:23,806 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:19:23,815 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:19:23,815 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:19:23,815 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:19:23,815 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:19:23,815 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:19:23,816 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:19:23,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,817 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:19:23,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,817 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:19:23,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,818 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:19:23,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,818 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:19:23,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,819 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:19:23,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,819 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:19:23,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,820 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:19:23,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,820 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:19:23,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,821 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:19:23,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,821 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:19:23,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,822 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:19:23,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,822 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:19:23,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,823 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:19:23,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,823 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:19:23,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,824 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:19:23,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,824 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:19:23,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,825 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:19:23,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,825 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:19:23,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,826 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:19:23,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,826 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:19:23,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,827 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:19:23,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,827 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:19:23,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,828 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:19:23,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,828 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:19:23,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,828 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:19:23,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,829 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:19:23,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,829 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:19:23,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,830 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:19:23,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,830 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:19:23,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,831 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:19:23,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,831 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:19:23,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,832 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:19:23,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,832 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:19:23,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,833 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:19:23,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,833 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:19:23,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,834 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:19:23,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,834 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:19:23,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,835 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:19:23,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,835 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:19:23,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,836 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:19:23,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,837 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:19:23,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,837 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:19:23,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,837 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:19:23,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,838 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:19:23,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,838 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:19:23,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,839 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:19:23,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:19:23,839 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:19:23,840 [76] DEBUG index - Current user is: admin +01/18/13 11:19:23,840 [76] DEBUG index - Current theme is: softed +01/18/13 11:19:23,840 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:19:23,840 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:19:23,842 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:19:23,842 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:19:23,844 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:19:23,845 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:19:23,846 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:19:23,846 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:19:23,847 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:19:23,847 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:19:23,847 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:19:23,847 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:19:23,847 [76] DEBUG index - skipping headers +01/18/13 11:19:23,848 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:19:23,849 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:19:23,854 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:19:23,854 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:19:23,854 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:19:23,854 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:19:23,858 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:20')) +01/18/13 11:19:23,865 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:20:03,958 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:20:04,092 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:20:04,092 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:20:04,093 [76] DEBUG index - ****Starting for new session +01/18/13 11:20:04,093 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:20:04,093 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:20:04,093 [76] INFO index - About to take action CalendarAjax +01/18/13 11:20:04,093 [76] DEBUG index - in CalendarAjax +01/18/13 11:20:04,094 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:20:04,094 [76] INFO index - current module is Calendar +01/18/13 11:20:04,141 [76] DEBUG user - Entering Users() method ... +01/18/13 11:20:04,141 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:20:04,141 [76] DEBUG index - in getColumnFields Users +01/18/13 11:20:04,141 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:04,142 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:04,142 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:04,142 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:04,142 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:20:04,142 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:20:04,151 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:04,151 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:04,151 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:20:04,151 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:20:04,152 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:20:04,152 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:20:04,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,153 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:20:04,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,154 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:20:04,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,154 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:20:04,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,155 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:20:04,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,155 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:20:04,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,156 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:20:04,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,156 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:20:04,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,157 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:20:04,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,157 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:20:04,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,158 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:20:04,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,158 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:20:04,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,159 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:20:04,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,159 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:20:04,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,160 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:20:04,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,160 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:20:04,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,161 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:20:04,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,161 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:20:04,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,162 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:20:04,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,162 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:20:04,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,163 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:20:04,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,163 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:20:04,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,164 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:20:04,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,164 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:20:04,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,164 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:20:04,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,165 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:20:04,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,165 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:20:04,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,166 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:20:04,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,166 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:20:04,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,167 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:20:04,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,167 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:20:04,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,168 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:20:04,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,169 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:20:04,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,169 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:20:04,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,170 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:20:04,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,170 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:20:04,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,171 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:20:04,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,171 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:20:04,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,172 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:20:04,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,172 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:20:04,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,173 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:20:04,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,173 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:20:04,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,174 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:20:04,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,174 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:20:04,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,175 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:20:04,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,175 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:20:04,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,176 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:20:04,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:04,176 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:20:04,177 [76] DEBUG index - Current user is: admin +01/18/13 11:20:04,177 [76] DEBUG index - Current theme is: softed +01/18/13 11:20:04,177 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:20:04,177 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:20:04,179 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:20:04,179 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:20:04,181 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:20:04,181 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:20:04,183 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:20:04,183 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:20:04,184 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:20:04,184 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:20:04,184 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:20:04,184 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:20:04,184 [76] DEBUG index - skipping headers +01/18/13 11:20:04,185 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:20:04,186 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:20:04,190 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:20:04,191 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:20:04,191 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:20:04,191 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:20:04,196 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:21')) +01/18/13 11:20:04,202 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:20:44,304 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:20:44,433 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:20:44,433 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:20:44,433 [76] DEBUG index - ****Starting for new session +01/18/13 11:20:44,434 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:20:44,434 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:20:44,434 [76] INFO index - About to take action CalendarAjax +01/18/13 11:20:44,434 [76] DEBUG index - in CalendarAjax +01/18/13 11:20:44,434 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:20:44,434 [76] INFO index - current module is Calendar +01/18/13 11:20:44,481 [76] DEBUG user - Entering Users() method ... +01/18/13 11:20:44,481 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:20:44,481 [76] DEBUG index - in getColumnFields Users +01/18/13 11:20:44,481 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:44,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:44,482 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:44,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:44,482 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:20:44,482 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:20:44,493 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:20:44,493 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:20:44,493 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:20:44,494 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:20:44,494 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:20:44,495 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:20:44,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,495 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:20:44,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,496 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:20:44,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,496 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:20:44,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,497 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:20:44,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,497 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:20:44,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,498 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:20:44,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,498 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:20:44,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,499 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:20:44,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,499 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:20:44,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,500 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:20:44,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,500 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:20:44,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,501 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:20:44,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,501 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:20:44,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,502 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:20:44,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,502 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:20:44,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,503 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:20:44,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,503 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:20:44,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,504 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:20:44,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,504 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:20:44,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,505 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:20:44,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,505 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:20:44,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,506 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:20:44,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,506 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:20:44,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,507 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:20:44,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,507 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:20:44,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,508 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:20:44,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,508 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:20:44,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,509 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:20:44,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,509 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:20:44,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,510 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:20:44,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,510 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:20:44,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,511 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:20:44,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,511 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:20:44,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,512 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:20:44,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,512 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:20:44,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,513 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:20:44,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,513 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:20:44,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,514 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:20:44,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,514 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:20:44,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,515 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:20:44,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,515 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:20:44,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,516 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:20:44,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,516 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:20:44,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,517 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:20:44,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,517 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:20:44,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,518 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:20:44,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:20:44,518 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:20:44,519 [76] DEBUG index - Current user is: admin +01/18/13 11:20:44,519 [76] DEBUG index - Current theme is: softed +01/18/13 11:20:44,519 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:20:44,519 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:20:44,521 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:20:44,521 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:20:44,523 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:20:44,523 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:20:44,524 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:20:44,525 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:20:44,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:20:44,525 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:20:44,525 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:20:44,525 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:20:44,525 [76] DEBUG index - skipping headers +01/18/13 11:20:44,526 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:20:44,527 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:20:44,531 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:20:44,532 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:20:44,532 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:20:44,532 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:20:44,538 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:21')) +01/18/13 11:20:44,540 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:21:24,622 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:21:24,754 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:21:24,754 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:21:24,754 [76] DEBUG index - ****Starting for new session +01/18/13 11:21:24,755 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:21:24,755 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:21:24,755 [76] INFO index - About to take action CalendarAjax +01/18/13 11:21:24,755 [76] DEBUG index - in CalendarAjax +01/18/13 11:21:24,755 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:21:24,755 [76] INFO index - current module is Calendar +01/18/13 11:21:24,802 [76] DEBUG user - Entering Users() method ... +01/18/13 11:21:24,802 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:21:24,802 [76] DEBUG index - in getColumnFields Users +01/18/13 11:21:24,802 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:21:24,803 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:21:24,803 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:21:24,803 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:21:24,803 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:21:24,803 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:21:24,811 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:21:24,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:21:24,812 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:21:24,812 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:21:24,812 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:21:24,813 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:21:24,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,813 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:21:24,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,814 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:21:24,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,814 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:21:24,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,815 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:21:24,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,815 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:21:24,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,816 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:21:24,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,816 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:21:24,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,817 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:21:24,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,818 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:21:24,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,818 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:21:24,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,819 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:21:24,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,819 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:21:24,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,820 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:21:24,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,820 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:21:24,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,821 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:21:24,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,821 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:21:24,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,822 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:21:24,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,822 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:21:24,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,823 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:21:24,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,824 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:21:24,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,824 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:21:24,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,825 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:21:24,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,825 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:21:24,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,825 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:21:24,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,826 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:21:24,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,826 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:21:24,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,827 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:21:24,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,827 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:21:24,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,828 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:21:24,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,828 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:21:24,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,829 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:21:24,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,829 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:21:24,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,830 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:21:24,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,830 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:21:24,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,831 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:21:24,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,831 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:21:24,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,832 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:21:24,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,832 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:21:24,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,833 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:21:24,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,833 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:21:24,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,834 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:21:24,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,834 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:21:24,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,835 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:21:24,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,835 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:21:24,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,836 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:21:24,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,836 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:21:24,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:21:24,837 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:21:24,837 [76] DEBUG index - Current user is: admin +01/18/13 11:21:24,837 [76] DEBUG index - Current theme is: softed +01/18/13 11:21:24,837 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:21:24,838 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:21:24,839 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:21:24,840 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:21:24,841 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:21:24,842 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:21:24,843 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:21:24,843 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:21:24,844 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:21:24,844 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:21:24,844 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:21:24,844 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:21:24,844 [76] DEBUG index - skipping headers +01/18/13 11:21:24,845 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:21:24,846 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:21:24,850 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:21:24,851 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:21:24,851 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:21:24,851 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:21:24,855 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:22')) +01/18/13 11:21:24,858 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:22:05,326 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:22:05,458 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:22:05,458 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:22:05,458 [76] DEBUG index - ****Starting for new session +01/18/13 11:22:05,459 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:22:05,459 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:22:05,459 [76] INFO index - About to take action CalendarAjax +01/18/13 11:22:05,459 [76] DEBUG index - in CalendarAjax +01/18/13 11:22:05,459 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:22:05,460 [76] INFO index - current module is Calendar +01/18/13 11:22:05,507 [76] DEBUG user - Entering Users() method ... +01/18/13 11:22:05,508 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:22:05,508 [76] DEBUG index - in getColumnFields Users +01/18/13 11:22:05,508 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:05,508 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:05,509 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:05,509 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:05,509 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:22:05,509 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:22:05,516 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:05,517 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:05,517 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:22:05,517 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:22:05,517 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:22:05,518 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:22:05,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,518 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:22:05,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,519 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:22:05,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,519 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:22:05,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,520 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:22:05,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,521 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:22:05,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,521 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:22:05,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,522 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:22:05,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,522 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:22:05,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,523 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:22:05,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,523 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:22:05,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,524 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:22:05,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,524 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:22:05,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,525 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:22:05,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,525 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:22:05,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,526 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:22:05,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,526 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:22:05,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,527 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:22:05,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,527 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:22:05,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,528 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:22:05,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,528 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:22:05,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,529 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:22:05,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,529 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:22:05,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,530 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:22:05,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,530 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:22:05,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,531 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:22:05,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,531 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:22:05,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,532 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:22:05,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,532 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:22:05,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,533 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:22:05,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,534 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:22:05,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,534 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:22:05,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,535 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:22:05,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,535 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:22:05,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,536 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:22:05,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,536 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:22:05,537 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,537 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:22:05,537 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,537 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:22:05,538 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,538 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:22:05,538 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,538 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:22:05,539 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,539 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:22:05,539 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,539 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:22:05,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,540 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:22:05,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,540 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:22:05,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,541 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:22:05,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,541 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:22:05,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,542 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:22:05,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:05,542 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:22:05,543 [76] DEBUG index - Current user is: admin +01/18/13 11:22:05,543 [76] DEBUG index - Current theme is: softed +01/18/13 11:22:05,543 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:22:05,543 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:22:05,545 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:22:05,545 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:22:05,547 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:22:05,547 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:22:05,549 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:22:05,549 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:22:05,550 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:22:05,550 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:22:05,550 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:22:05,550 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:22:05,550 [76] DEBUG index - skipping headers +01/18/13 11:22:05,551 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:22:05,552 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:22:05,556 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:22:05,557 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:22:05,557 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:22:05,557 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:22:05,562 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:23')) +01/18/13 11:22:05,566 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:22:46,198 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:22:46,326 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:22:46,326 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:22:46,326 [76] DEBUG index - ****Starting for new session +01/18/13 11:22:46,327 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:22:46,327 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:22:46,327 [76] INFO index - About to take action CalendarAjax +01/18/13 11:22:46,327 [76] DEBUG index - in CalendarAjax +01/18/13 11:22:46,327 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:22:46,327 [76] INFO index - current module is Calendar +01/18/13 11:22:46,373 [76] DEBUG user - Entering Users() method ... +01/18/13 11:22:46,373 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:22:46,373 [76] DEBUG index - in getColumnFields Users +01/18/13 11:22:46,373 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:46,374 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:46,374 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:46,374 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:46,374 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:22:46,374 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:22:46,422 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:22:46,423 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:22:46,423 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:22:46,423 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:22:46,424 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:22:46,425 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:22:46,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,426 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:22:46,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,427 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:22:46,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,428 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:22:46,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,429 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:22:46,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,430 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:22:46,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,431 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:22:46,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,432 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:22:46,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,433 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:22:46,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,434 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:22:46,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,434 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:22:46,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,435 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:22:46,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,435 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:22:46,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,436 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:22:46,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,436 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:22:46,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,437 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:22:46,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,437 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:22:46,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,438 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:22:46,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,439 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:22:46,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,439 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:22:46,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,440 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:22:46,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,440 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:22:46,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,441 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:22:46,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,441 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:22:46,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,441 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:22:46,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,442 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:22:46,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,442 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:22:46,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,443 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:22:46,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,443 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:22:46,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,444 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:22:46,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,444 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:22:46,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,445 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:22:46,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,445 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:22:46,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,446 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:22:46,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,446 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:22:46,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,447 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:22:46,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,447 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:22:46,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,448 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:22:46,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,449 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:22:46,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,449 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:22:46,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,450 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:22:46,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,450 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:22:46,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,451 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:22:46,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,451 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:22:46,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,452 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:22:46,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,452 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:22:46,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,453 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:22:46,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:22:46,453 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:22:46,453 [76] DEBUG index - Current user is: admin +01/18/13 11:22:46,454 [76] DEBUG index - Current theme is: softed +01/18/13 11:22:46,454 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:22:46,454 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:22:46,455 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:22:46,456 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:22:46,458 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:22:46,458 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:22:46,459 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:22:46,459 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:22:46,460 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:22:46,460 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:22:46,460 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:22:46,460 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:22:46,460 [76] DEBUG index - skipping headers +01/18/13 11:22:46,461 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:22:46,462 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:22:46,466 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:22:46,467 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:22:46,467 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:22:46,467 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:22:46,471 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:23')) +01/18/13 11:22:46,474 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:23:26,735 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:23:26,859 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:23:26,860 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:23:26,860 [76] DEBUG index - ****Starting for new session +01/18/13 11:23:26,860 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:23:26,861 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:23:26,861 [76] INFO index - About to take action CalendarAjax +01/18/13 11:23:26,861 [76] DEBUG index - in CalendarAjax +01/18/13 11:23:26,861 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:23:26,861 [76] INFO index - current module is Calendar +01/18/13 11:23:26,907 [76] DEBUG user - Entering Users() method ... +01/18/13 11:23:26,907 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:23:26,907 [76] DEBUG index - in getColumnFields Users +01/18/13 11:23:26,907 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:23:26,907 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:23:26,908 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:23:26,908 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:23:26,908 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:23:26,908 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:23:26,916 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:23:26,916 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:23:26,916 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:23:26,917 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:23:26,917 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:23:26,918 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:23:26,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,918 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:23:26,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,919 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:23:26,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,919 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:23:26,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,920 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:23:26,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,920 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:23:26,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,921 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:23:26,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,921 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:23:26,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,922 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:23:26,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,922 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:23:26,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,923 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:23:26,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,923 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:23:26,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,924 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:23:26,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,924 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:23:26,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,925 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:23:26,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,925 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:23:26,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,926 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:23:26,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,927 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:23:26,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,927 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:23:26,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,928 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:23:26,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,928 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:23:26,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,929 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:23:26,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,929 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:23:26,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,930 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:23:26,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,930 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:23:26,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,930 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:23:26,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,931 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:23:26,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,931 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:23:26,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,932 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:23:26,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,932 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:23:26,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,933 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:23:26,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,933 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:23:26,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,934 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:23:26,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,934 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:23:26,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,935 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:23:26,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,935 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:23:26,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,936 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:23:26,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,936 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:23:26,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,937 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:23:26,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,937 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:23:26,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,938 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:23:26,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,938 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:23:26,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,939 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:23:26,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,939 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:23:26,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,940 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:23:26,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,940 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:23:26,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,941 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:23:26,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:23:26,941 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:23:26,942 [76] DEBUG index - Current user is: admin +01/18/13 11:23:26,942 [76] DEBUG index - Current theme is: softed +01/18/13 11:23:26,942 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:23:26,942 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:23:26,944 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:23:26,944 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:23:26,946 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:23:26,946 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:23:26,947 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:23:26,948 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:23:26,948 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:23:26,948 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:23:26,948 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:23:26,948 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:23:26,949 [76] DEBUG index - skipping headers +01/18/13 11:23:26,950 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:23:26,950 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:23:26,955 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:23:26,955 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:23:26,955 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:23:26,955 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:23:26,960 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:24')) +01/18/13 11:23:26,963 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:24:07,052 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:24:07,184 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:24:07,184 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:24:07,184 [76] DEBUG index - ****Starting for new session +01/18/13 11:24:07,185 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:24:07,185 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:24:07,185 [76] INFO index - About to take action CalendarAjax +01/18/13 11:24:07,185 [76] DEBUG index - in CalendarAjax +01/18/13 11:24:07,185 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:24:07,185 [76] INFO index - current module is Calendar +01/18/13 11:24:07,232 [76] DEBUG user - Entering Users() method ... +01/18/13 11:24:07,232 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:24:07,232 [76] DEBUG index - in getColumnFields Users +01/18/13 11:24:07,232 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:07,233 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:07,233 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:07,233 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:07,233 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:24:07,233 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:24:07,245 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:07,245 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:07,245 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:24:07,246 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:24:07,246 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:24:07,247 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:24:07,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,247 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:24:07,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,248 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:24:07,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,248 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:24:07,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,249 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:24:07,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,249 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:24:07,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,250 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:24:07,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,250 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:24:07,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,251 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:24:07,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,251 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:24:07,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,252 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:24:07,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,252 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:24:07,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,253 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:24:07,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,253 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:24:07,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,254 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:24:07,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,254 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:24:07,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,255 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:24:07,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,255 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:24:07,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,256 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:24:07,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,256 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:24:07,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,257 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:24:07,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,257 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:24:07,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,258 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:24:07,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,258 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:24:07,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,258 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:24:07,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,259 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:24:07,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,259 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:24:07,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,260 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:24:07,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,260 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:24:07,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,261 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:24:07,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,261 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:24:07,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,262 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:24:07,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,262 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:24:07,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,263 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:24:07,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,264 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:24:07,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,264 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:24:07,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,265 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:24:07,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,265 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:24:07,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,266 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:24:07,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,266 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:24:07,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,267 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:24:07,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,267 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:24:07,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,268 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:24:07,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,268 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:24:07,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,269 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:24:07,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,269 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:24:07,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,270 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:24:07,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:07,270 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:24:07,271 [76] DEBUG index - Current user is: admin +01/18/13 11:24:07,271 [76] DEBUG index - Current theme is: softed +01/18/13 11:24:07,271 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:24:07,271 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:24:07,273 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:24:07,273 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:24:07,275 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:24:07,275 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:24:07,276 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:24:07,277 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:24:07,277 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:24:07,277 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:24:07,277 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:24:07,277 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:24:07,277 [76] DEBUG index - skipping headers +01/18/13 11:24:07,278 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:24:07,279 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:24:07,283 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:24:07,284 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:24:07,284 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:24:07,284 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:24:07,290 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:25')) +01/18/13 11:24:07,295 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:24:47,394 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:24:47,534 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:24:47,534 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:24:47,535 [76] DEBUG index - ****Starting for new session +01/18/13 11:24:47,535 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:24:47,535 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:24:47,536 [76] INFO index - About to take action CalendarAjax +01/18/13 11:24:47,536 [76] DEBUG index - in CalendarAjax +01/18/13 11:24:47,536 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:24:47,536 [76] INFO index - current module is Calendar +01/18/13 11:24:47,586 [76] DEBUG user - Entering Users() method ... +01/18/13 11:24:47,586 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:24:47,586 [76] DEBUG index - in getColumnFields Users +01/18/13 11:24:47,586 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:47,586 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:47,587 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:47,587 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:47,587 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:24:47,587 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:24:47,595 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:24:47,595 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:24:47,595 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:24:47,596 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:24:47,596 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:24:47,597 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:24:47,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,597 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:24:47,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,598 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:24:47,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,598 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:24:47,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,599 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:24:47,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,599 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:24:47,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,600 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:24:47,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,600 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:24:47,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,601 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:24:47,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,602 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:24:47,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,602 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:24:47,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,603 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:24:47,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,603 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:24:47,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,604 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:24:47,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,604 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:24:47,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,605 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:24:47,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,605 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:24:47,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,606 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:24:47,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,606 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:24:47,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,607 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:24:47,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,607 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:24:47,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,608 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:24:47,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,608 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:24:47,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,609 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:24:47,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,609 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:24:47,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,609 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:24:47,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,610 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:24:47,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,610 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:24:47,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,611 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:24:47,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,611 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:24:47,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,612 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:24:47,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,612 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:24:47,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,613 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:24:47,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,613 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:24:47,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,614 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:24:47,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,615 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:24:47,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,615 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:24:47,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,616 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:24:47,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,616 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:24:47,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,617 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:24:47,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,617 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:24:47,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,618 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:24:47,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,618 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:24:47,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,619 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:24:47,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,619 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:24:47,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,620 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:24:47,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,620 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:24:47,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:24:47,621 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:24:47,621 [76] DEBUG index - Current user is: admin +01/18/13 11:24:47,621 [76] DEBUG index - Current theme is: softed +01/18/13 11:24:47,621 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:24:47,622 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:24:47,623 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:24:47,624 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:24:47,626 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:24:47,626 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:24:47,627 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:24:47,628 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:24:47,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:24:47,628 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:24:47,628 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:24:47,628 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:24:47,629 [76] DEBUG index - skipping headers +01/18/13 11:24:47,630 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:24:47,630 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:24:47,636 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:24:47,636 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:24:47,636 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:24:47,636 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:24:47,641 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:25')) +01/18/13 11:24:47,645 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:25:27,770 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:25:27,906 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:25:27,907 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:25:27,907 [76] DEBUG index - ****Starting for new session +01/18/13 11:25:27,907 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:25:27,908 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:25:27,908 [76] INFO index - About to take action CalendarAjax +01/18/13 11:25:27,908 [76] DEBUG index - in CalendarAjax +01/18/13 11:25:27,908 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:25:27,908 [76] INFO index - current module is Calendar +01/18/13 11:25:27,955 [76] DEBUG user - Entering Users() method ... +01/18/13 11:25:27,955 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:25:27,955 [76] DEBUG index - in getColumnFields Users +01/18/13 11:25:27,955 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:25:27,956 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:25:27,956 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:25:27,956 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:25:27,956 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:25:27,956 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:25:27,964 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:25:27,964 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:25:27,964 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:25:27,964 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:25:27,965 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:25:27,965 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:25:27,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,966 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:25:27,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,967 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:25:27,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,967 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:25:27,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,968 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:25:27,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,968 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:25:27,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,969 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:25:27,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,969 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:25:27,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,970 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:25:27,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,970 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:25:27,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,971 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:25:27,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,971 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:25:27,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,972 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:25:27,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,972 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:25:27,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,973 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:25:27,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,973 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:25:27,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,974 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:25:27,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,974 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:25:27,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,975 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:25:27,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,975 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:25:27,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,976 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:25:27,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,976 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:25:27,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,977 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:25:27,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,977 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:25:27,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,978 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:25:27,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,978 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:25:27,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,979 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:25:27,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,979 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:25:27,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,980 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:25:27,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,980 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:25:27,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,981 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:25:27,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,981 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:25:27,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,982 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:25:27,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,982 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:25:27,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,983 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:25:27,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,983 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:25:27,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,984 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:25:27,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,984 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:25:27,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,985 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:25:27,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,985 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:25:27,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,986 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:25:27,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,986 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:25:27,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,987 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:25:27,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,988 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:25:27,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,988 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:25:27,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,989 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:25:27,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,989 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:25:27,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:25:27,990 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:25:27,990 [76] DEBUG index - Current user is: admin +01/18/13 11:25:27,990 [76] DEBUG index - Current theme is: softed +01/18/13 11:25:27,990 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:25:27,991 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:25:27,992 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:25:27,993 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:25:27,994 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:25:27,995 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:25:27,996 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:25:27,996 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:25:27,997 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:25:27,997 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:25:27,997 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:25:27,997 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:25:27,998 [76] DEBUG index - skipping headers +01/18/13 11:25:27,999 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:25:27,999 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:25:28,004 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:25:28,005 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:25:28,005 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:25:28,005 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:25:28,008 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:26')) +01/18/13 11:25:28,011 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:26:08,450 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:26:08,583 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:26:08,583 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:26:08,583 [76] DEBUG index - ****Starting for new session +01/18/13 11:26:08,584 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:26:08,584 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:26:08,584 [76] INFO index - About to take action CalendarAjax +01/18/13 11:26:08,584 [76] DEBUG index - in CalendarAjax +01/18/13 11:26:08,584 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:26:08,585 [76] INFO index - current module is Calendar +01/18/13 11:26:08,631 [76] DEBUG user - Entering Users() method ... +01/18/13 11:26:08,631 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:26:08,632 [76] DEBUG index - in getColumnFields Users +01/18/13 11:26:08,632 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:08,632 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:08,632 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:08,632 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:08,632 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:26:08,633 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:26:08,642 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:08,642 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:08,643 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:26:08,643 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:26:08,643 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:26:08,644 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:26:08,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,644 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:26:08,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,645 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:26:08,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,645 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:26:08,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,646 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:26:08,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,646 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:26:08,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,647 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:26:08,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,647 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:26:08,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,648 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:26:08,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,648 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:26:08,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,649 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:26:08,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,649 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:26:08,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,650 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:26:08,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,650 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:26:08,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,651 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:26:08,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,651 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:26:08,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,652 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:26:08,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,652 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:26:08,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,653 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:26:08,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,653 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:26:08,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,654 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:26:08,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,654 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:26:08,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,655 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:26:08,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,655 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:26:08,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,655 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:26:08,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,656 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:26:08,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,656 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:26:08,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,657 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:26:08,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,657 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:26:08,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,658 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:26:08,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,659 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:26:08,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,659 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:26:08,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,660 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:26:08,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,660 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:26:08,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,661 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:26:08,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,661 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:26:08,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,662 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:26:08,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,662 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:26:08,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,663 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:26:08,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,663 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:26:08,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,664 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:26:08,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,664 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:26:08,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,665 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:26:08,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,665 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:26:08,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,666 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:26:08,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,666 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:26:08,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,667 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:26:08,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:08,667 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:26:08,668 [76] DEBUG index - Current user is: admin +01/18/13 11:26:08,668 [76] DEBUG index - Current theme is: softed +01/18/13 11:26:08,668 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:26:08,668 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:26:08,670 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:26:08,670 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:26:08,672 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:26:08,672 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:26:08,674 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:26:08,674 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:26:08,675 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:26:08,675 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:26:08,675 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:26:08,675 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:26:08,675 [76] DEBUG index - skipping headers +01/18/13 11:26:08,676 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:26:08,677 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:26:08,682 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:26:08,682 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:26:08,682 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:26:08,682 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:26:08,688 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:27')) +01/18/13 11:26:08,691 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:26:48,786 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:26:48,922 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:26:48,922 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:26:48,922 [76] DEBUG index - ****Starting for new session +01/18/13 11:26:48,923 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:26:48,923 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:26:48,923 [76] INFO index - About to take action CalendarAjax +01/18/13 11:26:48,923 [76] DEBUG index - in CalendarAjax +01/18/13 11:26:48,923 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:26:48,923 [76] INFO index - current module is Calendar +01/18/13 11:26:48,973 [76] DEBUG user - Entering Users() method ... +01/18/13 11:26:48,973 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:26:48,973 [76] DEBUG index - in getColumnFields Users +01/18/13 11:26:48,973 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:48,974 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:48,974 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:48,974 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:48,974 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:26:48,975 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:26:48,983 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:26:48,983 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:26:48,983 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:26:48,983 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:26:48,984 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:26:48,985 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:26:48,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,985 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:26:48,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,986 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:26:48,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,986 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:26:48,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,987 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:26:48,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,987 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:26:48,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,988 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:26:48,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,989 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:26:48,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,989 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:26:48,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,990 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:26:48,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,990 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:26:48,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,991 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:26:48,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,991 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:26:48,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,992 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:26:48,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,992 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:26:48,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,993 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:26:48,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,993 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:26:48,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,994 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:26:48,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,994 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:26:48,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,995 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:26:48,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,995 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:26:48,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,996 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:26:48,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,996 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:26:48,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,997 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:26:48,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,997 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:26:48,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,998 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:26:48,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,998 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:26:48,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,999 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:26:48,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,999 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:26:48,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:48,1000 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:26:49,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,000 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:26:49,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,001 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:26:49,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,001 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:26:49,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,002 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:26:49,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,003 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:26:49,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,003 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:26:49,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,004 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:26:49,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,004 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:26:49,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,005 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:26:49,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,005 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:26:49,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,006 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:26:49,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,006 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:26:49,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,007 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:26:49,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,007 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:26:49,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,008 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:26:49,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,008 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:26:49,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,009 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:26:49,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:26:49,009 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:26:49,010 [76] DEBUG index - Current user is: admin +01/18/13 11:26:49,010 [76] DEBUG index - Current theme is: softed +01/18/13 11:26:49,010 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:26:49,010 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:26:49,012 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:26:49,012 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:26:49,014 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:26:49,014 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:26:49,016 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:26:49,016 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:26:49,016 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:26:49,017 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:26:49,017 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:26:49,017 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:26:49,017 [76] DEBUG index - skipping headers +01/18/13 11:26:49,018 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:26:49,018 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:26:49,023 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:26:49,024 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:26:49,024 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:26:49,024 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:26:49,028 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:27')) +01/18/13 11:26:49,037 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:27:29,429 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:27:29,567 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:27:29,567 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:27:29,568 [76] DEBUG index - ****Starting for new session +01/18/13 11:27:29,568 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:27:29,568 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:27:29,568 [76] INFO index - About to take action CalendarAjax +01/18/13 11:27:29,568 [76] DEBUG index - in CalendarAjax +01/18/13 11:27:29,569 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:27:29,569 [76] INFO index - current module is Calendar +01/18/13 11:27:29,622 [76] DEBUG user - Entering Users() method ... +01/18/13 11:27:29,622 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:27:29,622 [76] DEBUG index - in getColumnFields Users +01/18/13 11:27:29,622 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:27:29,623 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:27:29,623 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:27:29,623 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:27:29,624 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:27:29,624 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:27:29,635 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:27:29,635 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:27:29,635 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:27:29,635 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:27:29,635 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:27:29,636 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:27:29,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,637 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:27:29,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,637 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:27:29,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,638 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:27:29,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,638 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:27:29,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,639 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:27:29,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,639 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:27:29,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,640 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:27:29,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,640 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:27:29,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,641 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:27:29,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,641 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:27:29,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,642 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:27:29,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,643 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:27:29,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,643 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:27:29,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,643 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:27:29,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,644 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:27:29,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,645 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:27:29,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,646 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:27:29,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,646 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:27:29,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,647 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:27:29,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,648 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:27:29,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,648 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:27:29,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,649 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:27:29,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,649 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:27:29,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,649 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:27:29,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,650 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:27:29,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,650 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:27:29,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,651 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:27:29,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,651 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:27:29,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,652 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:27:29,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,652 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:27:29,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,653 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:27:29,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,654 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:27:29,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,654 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:27:29,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,655 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:27:29,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,656 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:27:29,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,656 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:27:29,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,657 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:27:29,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,658 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:27:29,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,658 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:27:29,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,659 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:27:29,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,660 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:27:29,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,660 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:27:29,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,661 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:27:29,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,661 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:27:29,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,662 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:27:29,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,662 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:27:29,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:27:29,663 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:27:29,664 [76] DEBUG index - Current user is: admin +01/18/13 11:27:29,664 [76] DEBUG index - Current theme is: softed +01/18/13 11:27:29,664 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:27:29,664 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:27:29,666 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:27:29,666 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:27:29,669 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:27:29,669 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:27:29,670 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:27:29,670 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:27:29,671 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:27:29,671 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:27:29,671 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:27:29,671 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:27:29,671 [76] DEBUG index - skipping headers +01/18/13 11:27:29,672 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:27:29,673 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:27:29,680 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:27:29,680 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:27:29,680 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:27:29,680 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:27:29,690 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:28')) +01/18/13 11:27:29,694 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:28:10,181 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:28:10,338 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:28:10,338 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:28:10,339 [76] DEBUG index - ****Starting for new session +01/18/13 11:28:10,339 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:28:10,339 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:28:10,339 [76] INFO index - About to take action CalendarAjax +01/18/13 11:28:10,339 [76] DEBUG index - in CalendarAjax +01/18/13 11:28:10,340 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:28:10,340 [76] INFO index - current module is Calendar +01/18/13 11:28:10,394 [76] DEBUG user - Entering Users() method ... +01/18/13 11:28:10,395 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:28:10,395 [76] DEBUG index - in getColumnFields Users +01/18/13 11:28:10,395 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:10,395 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:10,396 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:10,396 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:10,396 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:28:10,396 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:28:10,406 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:10,406 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:10,406 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:28:10,406 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:28:10,407 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:28:10,407 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:28:10,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,408 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:28:10,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,409 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:28:10,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,409 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:28:10,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,410 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:28:10,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,411 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:28:10,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,411 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:28:10,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,412 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:28:10,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,412 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:28:10,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,413 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:28:10,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,414 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:28:10,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,414 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:28:10,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,415 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:28:10,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,415 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:28:10,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,416 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:28:10,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,416 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:28:10,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,417 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:28:10,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,417 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:28:10,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,418 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:28:10,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,418 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:28:10,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,419 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:28:10,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,419 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:28:10,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,420 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:28:10,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,420 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:28:10,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,421 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:28:10,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,421 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:28:10,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,422 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:28:10,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,422 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:28:10,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,423 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:28:10,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,423 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:28:10,424 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,424 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:28:10,424 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,424 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:28:10,425 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,425 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:28:10,425 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,425 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:28:10,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,426 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:28:10,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,426 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:28:10,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,427 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:28:10,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,428 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:28:10,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,428 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:28:10,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,429 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:28:10,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,429 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:28:10,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,430 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:28:10,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,430 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:28:10,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,431 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:28:10,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,431 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:28:10,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,432 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:28:10,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,432 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:28:10,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:10,433 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:28:10,433 [76] DEBUG index - Current user is: admin +01/18/13 11:28:10,433 [76] DEBUG index - Current theme is: softed +01/18/13 11:28:10,433 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:28:10,433 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:28:10,435 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:28:10,436 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:28:10,437 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:28:10,438 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:28:10,439 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:28:10,439 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:28:10,440 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:28:10,440 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:28:10,440 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:28:10,440 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:28:10,440 [76] DEBUG index - skipping headers +01/18/13 11:28:10,441 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:28:10,442 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:28:10,447 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:28:10,448 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:28:10,448 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:28:10,448 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:28:10,453 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:29')) +01/18/13 11:28:10,458 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:28:50,557 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:28:50,701 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:28:50,702 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:28:50,702 [76] DEBUG index - ****Starting for new session +01/18/13 11:28:50,702 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:28:50,702 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:28:50,703 [76] INFO index - About to take action CalendarAjax +01/18/13 11:28:50,703 [76] DEBUG index - in CalendarAjax +01/18/13 11:28:50,703 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:28:50,703 [76] INFO index - current module is Calendar +01/18/13 11:28:50,755 [76] DEBUG user - Entering Users() method ... +01/18/13 11:28:50,755 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:28:50,755 [76] DEBUG index - in getColumnFields Users +01/18/13 11:28:50,755 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:50,756 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:50,756 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:50,756 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:50,756 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:28:50,756 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:28:50,766 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:28:50,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:28:50,766 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:28:50,766 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:28:50,767 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:28:50,768 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:28:50,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,768 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:28:50,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,769 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:28:50,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,769 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:28:50,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,770 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:28:50,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,770 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:28:50,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,771 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:28:50,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,771 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:28:50,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,772 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:28:50,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,773 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:28:50,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,773 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:28:50,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,774 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:28:50,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,774 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:28:50,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,775 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:28:50,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,776 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:28:50,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,776 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:28:50,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,777 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:28:50,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,778 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:28:50,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,779 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:28:50,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,779 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:28:50,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,780 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:28:50,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,780 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:28:50,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,781 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:28:50,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,781 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:28:50,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,781 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:28:50,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,782 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:28:50,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,782 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:28:50,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,783 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:28:50,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,783 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:28:50,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,784 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:28:50,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,784 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:28:50,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,785 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:28:50,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,786 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:28:50,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,786 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:28:50,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,787 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:28:50,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,788 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:28:50,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,788 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:28:50,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,789 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:28:50,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,789 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:28:50,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,790 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:28:50,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,791 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:28:50,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,791 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:28:50,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,792 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:28:50,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,792 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:28:50,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,793 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:28:50,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,793 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:28:50,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,794 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:28:50,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:28:50,794 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:28:50,795 [76] DEBUG index - Current user is: admin +01/18/13 11:28:50,795 [76] DEBUG index - Current theme is: softed +01/18/13 11:28:50,795 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:28:50,795 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:28:50,797 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:28:50,797 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:28:50,799 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:28:50,799 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:28:50,801 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:28:50,802 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:28:50,802 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:28:50,802 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:28:50,802 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:28:50,803 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:28:50,803 [76] DEBUG index - skipping headers +01/18/13 11:28:50,804 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:28:50,804 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:28:50,809 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:28:50,810 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:28:50,810 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:28:50,810 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:28:50,816 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:29')) +01/18/13 11:28:50,820 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:29:31,363 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:29:31,504 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:29:31,504 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:29:31,504 [76] DEBUG index - ****Starting for new session +01/18/13 11:29:31,505 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:29:31,505 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:29:31,505 [76] INFO index - About to take action CalendarAjax +01/18/13 11:29:31,505 [76] DEBUG index - in CalendarAjax +01/18/13 11:29:31,506 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:29:31,506 [76] INFO index - current module is Calendar +01/18/13 11:29:31,559 [76] DEBUG user - Entering Users() method ... +01/18/13 11:29:31,559 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:29:31,559 [76] DEBUG index - in getColumnFields Users +01/18/13 11:29:31,559 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:29:31,560 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:29:31,560 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:29:31,560 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:29:31,560 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:29:31,560 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:29:31,571 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:29:31,571 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:29:31,571 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:29:31,571 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:29:31,572 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:29:31,573 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:29:31,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,573 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:29:31,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,574 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:29:31,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,574 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:29:31,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,575 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:29:31,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,575 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:29:31,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,576 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:29:31,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,577 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:29:31,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,577 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:29:31,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,578 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:29:31,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,578 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:29:31,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,579 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:29:31,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,579 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:29:31,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,580 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:29:31,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,580 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:29:31,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,581 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:29:31,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,581 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:29:31,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,582 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:29:31,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,583 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:29:31,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,584 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:29:31,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,584 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:29:31,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,585 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:29:31,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,585 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:29:31,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,586 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:29:31,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,586 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:29:31,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,586 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:29:31,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,587 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:29:31,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,588 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:29:31,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,588 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:29:31,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,589 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:29:31,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,589 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:29:31,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,590 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:29:31,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,591 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:29:31,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,591 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:29:31,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,592 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:29:31,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,593 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:29:31,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,593 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:29:31,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,594 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:29:31,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,594 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:29:31,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,595 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:29:31,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,595 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:29:31,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,596 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:29:31,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,596 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:29:31,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,597 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:29:31,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,598 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:29:31,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,598 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:29:31,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,599 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:29:31,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:29:31,599 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:29:31,600 [76] DEBUG index - Current user is: admin +01/18/13 11:29:31,600 [76] DEBUG index - Current theme is: softed +01/18/13 11:29:31,600 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:29:31,600 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:29:31,602 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:29:31,602 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:29:31,604 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:29:31,605 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:29:31,607 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:29:31,607 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:29:31,608 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:29:31,608 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:29:31,608 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:29:31,608 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:29:31,608 [76] DEBUG index - skipping headers +01/18/13 11:29:31,609 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:29:31,610 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:29:31,615 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:29:31,615 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:29:31,615 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:29:31,615 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:29:31,620 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:30')) +01/18/13 11:29:31,624 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:30:11,731 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:30:11,880 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:30:11,880 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:30:11,880 [76] DEBUG index - ****Starting for new session +01/18/13 11:30:11,881 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:30:11,881 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:30:11,881 [76] INFO index - About to take action CalendarAjax +01/18/13 11:30:11,881 [76] DEBUG index - in CalendarAjax +01/18/13 11:30:11,881 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:30:11,881 [76] INFO index - current module is Calendar +01/18/13 11:30:11,934 [76] DEBUG user - Entering Users() method ... +01/18/13 11:30:11,934 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:30:11,934 [76] DEBUG index - in getColumnFields Users +01/18/13 11:30:11,935 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:11,935 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:11,935 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:11,935 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:11,935 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:30:11,935 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:30:11,945 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:11,945 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:11,946 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:30:11,946 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:30:11,946 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:30:11,947 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:30:11,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,947 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:30:11,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,948 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:30:11,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,948 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:30:11,949 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,949 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:30:11,949 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,949 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:30:11,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,950 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:30:11,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,950 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:30:11,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,951 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:30:11,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,951 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:30:11,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,952 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:30:11,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,953 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:30:11,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,953 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:30:11,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,954 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:30:11,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,955 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:30:11,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,956 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:30:11,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,956 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:30:11,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,957 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:30:11,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,958 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:30:11,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,958 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:30:11,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,959 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:30:11,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,959 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:30:11,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,960 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:30:11,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,960 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:30:11,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,961 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:30:11,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,961 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:30:11,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,962 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:30:11,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,962 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:30:11,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,963 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:30:11,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,963 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:30:11,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,964 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:30:11,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,965 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:30:11,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,965 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:30:11,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,966 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:30:11,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,967 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:30:11,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,968 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:30:11,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,968 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:30:11,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,969 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:30:11,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,969 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:30:11,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,970 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:30:11,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,970 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:30:11,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,971 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:30:11,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,971 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:30:11,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,972 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:30:11,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,972 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:30:11,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,973 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:30:11,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,973 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:30:11,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:11,974 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:30:11,974 [76] DEBUG index - Current user is: admin +01/18/13 11:30:11,974 [76] DEBUG index - Current theme is: softed +01/18/13 11:30:11,975 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:30:11,975 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:30:11,977 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:30:11,977 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:30:11,979 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:30:11,979 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:30:11,981 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:30:11,981 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:30:11,982 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:30:11,982 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:30:11,982 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:30:11,982 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:30:11,982 [76] DEBUG index - skipping headers +01/18/13 11:30:11,983 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:30:11,983 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:30:11,989 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:30:11,989 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:30:11,989 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:30:11,989 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:30:11,995 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:31')) +01/18/13 11:30:11,998 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:30:52,464 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:30:52,603 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:30:52,603 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:30:52,603 [76] DEBUG index - ****Starting for new session +01/18/13 11:30:52,604 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:30:52,604 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:30:52,604 [76] INFO index - About to take action CalendarAjax +01/18/13 11:30:52,604 [76] DEBUG index - in CalendarAjax +01/18/13 11:30:52,604 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:30:52,604 [76] INFO index - current module is Calendar +01/18/13 11:30:52,656 [76] DEBUG user - Entering Users() method ... +01/18/13 11:30:52,656 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:30:52,657 [76] DEBUG index - in getColumnFields Users +01/18/13 11:30:52,657 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:52,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:52,657 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:52,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:52,657 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:30:52,658 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:30:52,666 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:30:52,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:30:52,666 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:30:52,666 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:30:52,667 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:30:52,668 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:30:52,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,668 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:30:52,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,669 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:30:52,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,669 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:30:52,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,670 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:30:52,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,670 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:30:52,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,671 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:30:52,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,671 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:30:52,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,672 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:30:52,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,673 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:30:52,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,673 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:30:52,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,674 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:30:52,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,674 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:30:52,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,675 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:30:52,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,675 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:30:52,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,676 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:30:52,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,676 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:30:52,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,677 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:30:52,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,678 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:30:52,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,678 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:30:52,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,679 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:30:52,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,680 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:30:52,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,681 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:30:52,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,681 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:30:52,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,682 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:30:52,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,682 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:30:52,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,683 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:30:52,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,683 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:30:52,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,684 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:30:52,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,684 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:30:52,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,685 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:30:52,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,685 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:30:52,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,686 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:30:52,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,686 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:30:52,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,687 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:30:52,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,688 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:30:52,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,688 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:30:52,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,689 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:30:52,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,689 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:30:52,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,690 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:30:52,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,690 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:30:52,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,691 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:30:52,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,691 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:30:52,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,692 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:30:52,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,692 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:30:52,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,693 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:30:52,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,694 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:30:52,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:30:52,694 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:30:52,695 [76] DEBUG index - Current user is: admin +01/18/13 11:30:52,695 [76] DEBUG index - Current theme is: softed +01/18/13 11:30:52,695 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:30:52,695 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:30:52,697 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:30:52,697 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:30:52,699 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:30:52,700 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:30:52,702 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:30:52,702 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:30:52,703 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:30:52,703 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:30:52,703 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:30:52,703 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:30:52,703 [76] DEBUG index - skipping headers +01/18/13 11:30:52,704 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:30:52,704 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:30:52,709 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:30:52,710 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:30:52,710 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:30:52,710 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:30:52,714 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:31')) +01/18/13 11:30:52,718 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:31:33,236 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:31:33,381 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:31:33,381 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:31:33,382 [76] DEBUG index - ****Starting for new session +01/18/13 11:31:33,382 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:31:33,382 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:31:33,383 [76] INFO index - About to take action CalendarAjax +01/18/13 11:31:33,383 [76] DEBUG index - in CalendarAjax +01/18/13 11:31:33,383 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:31:33,383 [76] INFO index - current module is Calendar +01/18/13 11:31:33,434 [76] DEBUG user - Entering Users() method ... +01/18/13 11:31:33,434 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:31:33,434 [76] DEBUG index - in getColumnFields Users +01/18/13 11:31:33,435 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:31:33,435 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:31:33,435 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:31:33,435 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:31:33,435 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:31:33,436 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:31:33,445 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:31:33,445 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:31:33,445 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:31:33,445 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:31:33,446 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:31:33,446 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:31:33,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,447 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:31:33,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,447 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:31:33,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,448 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:31:33,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,448 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:31:33,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,449 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:31:33,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,450 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:31:33,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,450 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:31:33,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,451 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:31:33,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,451 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:31:33,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,452 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:31:33,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,452 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:31:33,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,453 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:31:33,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,453 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:31:33,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,454 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:31:33,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,454 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:31:33,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,455 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:31:33,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,455 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:31:33,456 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,456 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:31:33,456 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,456 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:31:33,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,457 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:31:33,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,458 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:31:33,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,458 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:31:33,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,459 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:31:33,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,459 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:31:33,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,460 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:31:33,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,460 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:31:33,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,461 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:31:33,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,461 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:31:33,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,462 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:31:33,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,462 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:31:33,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,463 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:31:33,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,463 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:31:33,464 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,464 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:31:33,464 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,464 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:31:33,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,465 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:31:33,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,465 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:31:33,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,466 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:31:33,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,466 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:31:33,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,467 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:31:33,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,467 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:31:33,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,468 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:31:33,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,468 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:31:33,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,469 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:31:33,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,469 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:31:33,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,470 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:31:33,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,470 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:31:33,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:31:33,471 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:31:33,471 [76] DEBUG index - Current user is: admin +01/18/13 11:31:33,471 [76] DEBUG index - Current theme is: softed +01/18/13 11:31:33,471 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:31:33,471 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:31:33,473 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:31:33,473 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:31:33,475 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:31:33,475 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:31:33,477 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:31:33,477 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:31:33,478 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:31:33,478 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:31:33,478 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:31:33,478 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:31:33,478 [76] DEBUG index - skipping headers +01/18/13 11:31:33,479 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:31:33,480 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:31:33,484 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:31:33,485 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:31:33,485 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:31:33,485 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:31:33,490 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:32')) +01/18/13 11:31:33,497 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:32:13,988 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:32:14,126 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:32:14,127 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:32:14,127 [76] DEBUG index - ****Starting for new session +01/18/13 11:32:14,127 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:32:14,127 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:32:14,128 [76] INFO index - About to take action CalendarAjax +01/18/13 11:32:14,128 [76] DEBUG index - in CalendarAjax +01/18/13 11:32:14,128 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:32:14,128 [76] INFO index - current module is Calendar +01/18/13 11:32:14,176 [76] DEBUG user - Entering Users() method ... +01/18/13 11:32:14,176 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:32:14,176 [76] DEBUG index - in getColumnFields Users +01/18/13 11:32:14,176 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:14,176 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:14,177 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:14,177 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:14,177 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:32:14,177 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:32:14,202 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:14,202 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:14,202 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:32:14,202 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:32:14,203 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:32:14,203 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:32:14,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,204 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:32:14,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,205 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:32:14,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,205 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:32:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,206 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:32:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,207 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:32:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,207 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:32:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,208 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:32:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,208 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:32:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,209 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:32:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,209 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:32:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,210 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:32:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,210 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:32:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,211 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:32:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,211 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:32:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,212 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:32:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,212 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:32:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,213 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:32:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,214 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:32:14,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,214 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:32:14,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,215 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:32:14,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,216 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:32:14,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,216 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:32:14,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,217 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:32:14,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,217 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:32:14,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,218 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:32:14,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,218 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:32:14,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,219 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:32:14,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,219 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:32:14,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,220 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:32:14,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,221 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:32:14,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,221 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:32:14,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,221 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:32:14,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,222 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:32:14,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,223 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:32:14,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,223 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:32:14,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,224 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:32:14,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,225 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:32:14,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,225 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:32:14,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,226 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:32:14,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,227 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:32:14,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,227 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:32:14,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,228 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:32:14,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,229 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:32:14,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,229 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:32:14,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,230 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:32:14,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,230 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:32:14,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:14,231 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:32:14,231 [76] DEBUG index - Current user is: admin +01/18/13 11:32:14,231 [76] DEBUG index - Current theme is: softed +01/18/13 11:32:14,231 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:32:14,231 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:32:14,233 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:32:14,233 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:32:14,235 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:32:14,235 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:32:14,237 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:32:14,238 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:32:14,239 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:32:14,239 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:32:14,239 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:32:14,239 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:32:14,239 [76] DEBUG index - skipping headers +01/18/13 11:32:14,240 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:32:14,241 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:32:14,246 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:32:14,246 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:32:14,246 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:32:14,246 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:32:14,260 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:33')) +01/18/13 11:32:14,265 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:32:54,372 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:32:54,526 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:32:54,526 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:32:54,526 [76] DEBUG index - ****Starting for new session +01/18/13 11:32:54,527 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:32:54,527 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:32:54,527 [76] INFO index - About to take action CalendarAjax +01/18/13 11:32:54,527 [76] DEBUG index - in CalendarAjax +01/18/13 11:32:54,528 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:32:54,528 [76] INFO index - current module is Calendar +01/18/13 11:32:54,578 [76] DEBUG user - Entering Users() method ... +01/18/13 11:32:54,578 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:32:54,578 [76] DEBUG index - in getColumnFields Users +01/18/13 11:32:54,578 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:54,579 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:54,579 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:54,579 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:54,579 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:32:54,579 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:32:54,588 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:32:54,588 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:32:54,588 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:32:54,588 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:32:54,588 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:32:54,589 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:32:54,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,590 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:32:54,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,590 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:32:54,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,591 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:32:54,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,591 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:32:54,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,592 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:32:54,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,592 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:32:54,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,593 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:32:54,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,593 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:32:54,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,594 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:32:54,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,594 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:32:54,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,595 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:32:54,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,595 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:32:54,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,596 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:32:54,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,596 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:32:54,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,597 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:32:54,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,598 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:32:54,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,599 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:32:54,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,599 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:32:54,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,600 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:32:54,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,600 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:32:54,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,601 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:32:54,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,601 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:32:54,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,602 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:32:54,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,602 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:32:54,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,603 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:32:54,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,603 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:32:54,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,604 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:32:54,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,604 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:32:54,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,605 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:32:54,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,605 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:32:54,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,606 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:32:54,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,606 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:32:54,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,607 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:32:54,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,608 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:32:54,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,608 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:32:54,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,609 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:32:54,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,610 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:32:54,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,611 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:32:54,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,611 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:32:54,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,612 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:32:54,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,612 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:32:54,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,613 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:32:54,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,613 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:32:54,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,614 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:32:54,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,615 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:32:54,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,615 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:32:54,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:32:54,616 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:32:54,616 [76] DEBUG index - Current user is: admin +01/18/13 11:32:54,617 [76] DEBUG index - Current theme is: softed +01/18/13 11:32:54,617 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:32:54,617 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:32:54,624 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:32:54,624 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:32:54,626 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:32:54,627 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:32:54,629 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:32:54,629 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:32:54,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:32:54,630 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:32:54,630 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:32:54,630 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:32:54,630 [76] DEBUG index - skipping headers +01/18/13 11:32:54,631 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:32:54,631 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:32:54,636 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:32:54,636 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:32:54,636 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:32:54,637 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:32:54,641 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:33')) +01/18/13 11:32:54,646 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:33:35,188 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:33:35,330 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:33:35,330 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:33:35,330 [76] DEBUG index - ****Starting for new session +01/18/13 11:33:35,331 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:33:35,331 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:33:35,331 [76] INFO index - About to take action CalendarAjax +01/18/13 11:33:35,331 [76] DEBUG index - in CalendarAjax +01/18/13 11:33:35,331 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:33:35,332 [76] INFO index - current module is Calendar +01/18/13 11:33:35,379 [76] DEBUG user - Entering Users() method ... +01/18/13 11:33:35,380 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:33:35,380 [76] DEBUG index - in getColumnFields Users +01/18/13 11:33:35,380 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:33:35,380 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:33:35,380 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:33:35,380 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:33:35,381 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:33:35,381 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:33:35,389 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:33:35,389 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:33:35,390 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:33:35,390 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:33:35,390 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:33:35,391 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:33:35,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,392 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:33:35,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,392 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:33:35,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,393 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:33:35,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,393 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:33:35,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,394 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:33:35,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,394 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:33:35,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,395 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:33:35,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,395 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:33:35,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,396 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:33:35,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,396 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:33:35,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,397 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:33:35,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,397 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:33:35,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,398 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:33:35,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,398 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:33:35,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,399 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:33:35,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,400 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:33:35,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,401 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:33:35,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,401 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:33:35,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,402 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:33:35,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,402 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:33:35,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,403 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:33:35,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,403 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:33:35,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,404 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:33:35,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,404 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:33:35,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,405 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:33:35,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,405 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:33:35,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,406 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:33:35,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,407 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:33:35,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,407 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:33:35,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,408 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:33:35,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,408 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:33:35,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,409 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:33:35,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,410 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:33:35,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,410 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:33:35,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,411 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:33:35,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,411 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:33:35,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,412 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:33:35,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,412 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:33:35,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,413 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:33:35,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,413 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:33:35,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,414 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:33:35,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,415 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:33:35,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,415 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:33:35,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,416 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:33:35,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,417 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:33:35,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,417 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:33:35,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:33:35,418 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:33:35,418 [76] DEBUG index - Current user is: admin +01/18/13 11:33:35,419 [76] DEBUG index - Current theme is: softed +01/18/13 11:33:35,419 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:33:35,419 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:33:35,421 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:33:35,421 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:33:35,423 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:33:35,423 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:33:35,425 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:33:35,425 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:33:35,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:33:35,426 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:33:35,426 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:33:35,426 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:33:35,426 [76] DEBUG index - skipping headers +01/18/13 11:33:35,427 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:33:35,428 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:33:35,433 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:33:35,434 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:33:35,434 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:33:35,434 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:33:35,439 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:34')) +01/18/13 11:33:35,446 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:34:15,566 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:34:15,704 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:34:15,704 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:34:15,705 [76] DEBUG index - ****Starting for new session +01/18/13 11:34:15,705 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:34:15,706 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:34:15,706 [76] INFO index - About to take action CalendarAjax +01/18/13 11:34:15,706 [76] DEBUG index - in CalendarAjax +01/18/13 11:34:15,706 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:34:15,706 [76] INFO index - current module is Calendar +01/18/13 11:34:15,759 [76] DEBUG user - Entering Users() method ... +01/18/13 11:34:15,759 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:34:15,759 [76] DEBUG index - in getColumnFields Users +01/18/13 11:34:15,759 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:15,759 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:15,759 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:15,760 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:15,760 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:34:15,760 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:34:15,770 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:15,770 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:15,770 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:34:15,770 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:34:15,771 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:34:15,772 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:34:15,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,772 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:34:15,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,773 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:34:15,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,774 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:34:15,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,774 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:34:15,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,775 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:34:15,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,775 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:34:15,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,776 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:34:15,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,776 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:34:15,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,777 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:34:15,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,777 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:34:15,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,778 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:34:15,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,778 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:34:15,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,779 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:34:15,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,780 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:34:15,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,780 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:34:15,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,781 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:34:15,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,782 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:34:15,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,782 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:34:15,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,783 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:34:15,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,784 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:34:15,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,784 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:34:15,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,785 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:34:15,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,786 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:34:15,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,786 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:34:15,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,787 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:34:15,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,787 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:34:15,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,788 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:34:15,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,788 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:34:15,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,789 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:34:15,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,789 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:34:15,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,790 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:34:15,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,790 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:34:15,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,791 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:34:15,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,792 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:34:15,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,792 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:34:15,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,793 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:34:15,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,794 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:34:15,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,795 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:34:15,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,795 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:34:15,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,796 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:34:15,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,796 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:34:15,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,797 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:34:15,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,797 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:34:15,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,798 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:34:15,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,798 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:34:15,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,799 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:34:15,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:15,800 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:34:15,800 [76] DEBUG index - Current user is: admin +01/18/13 11:34:15,800 [76] DEBUG index - Current theme is: softed +01/18/13 11:34:15,800 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:34:15,800 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:34:15,803 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:34:15,803 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:34:15,805 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:34:15,805 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:34:15,807 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:34:15,807 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:34:15,808 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:34:15,808 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:34:15,808 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:34:15,808 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:34:15,808 [76] DEBUG index - skipping headers +01/18/13 11:34:15,809 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:34:15,810 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:34:15,815 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:34:15,816 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:34:15,816 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:34:15,816 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:34:15,821 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:35')) +01/18/13 11:34:15,827 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:34:56,401 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:34:56,551 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:34:56,552 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:34:56,552 [76] DEBUG index - ****Starting for new session +01/18/13 11:34:56,552 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:34:56,553 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:34:56,553 [76] INFO index - About to take action CalendarAjax +01/18/13 11:34:56,553 [76] DEBUG index - in CalendarAjax +01/18/13 11:34:56,553 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:34:56,553 [76] INFO index - current module is Calendar +01/18/13 11:34:56,607 [76] DEBUG user - Entering Users() method ... +01/18/13 11:34:56,607 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:34:56,607 [76] DEBUG index - in getColumnFields Users +01/18/13 11:34:56,607 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:56,608 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:56,608 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:56,608 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:56,608 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:34:56,608 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:34:56,618 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:34:56,618 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:34:56,618 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:34:56,618 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:34:56,619 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:34:56,619 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:34:56,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,620 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:34:56,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,620 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:34:56,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,621 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:34:56,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,621 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:34:56,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,622 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:34:56,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,622 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:34:56,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,623 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:34:56,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,624 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:34:56,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,624 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:34:56,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,625 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:34:56,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,626 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:34:56,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,627 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:34:56,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,627 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:34:56,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,628 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:34:56,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,629 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:34:56,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,629 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:34:56,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,630 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:34:56,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,631 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:34:56,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,631 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:34:56,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,632 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:34:56,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,632 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:34:56,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,633 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:34:56,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,634 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:34:56,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,634 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:34:56,635 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,635 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:34:56,635 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,636 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:34:56,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,636 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:34:56,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,637 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:34:56,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,637 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:34:56,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,638 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:34:56,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,639 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:34:56,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,639 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:34:56,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,640 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:34:56,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,640 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:34:56,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,641 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:34:56,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,641 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:34:56,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,642 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:34:56,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,643 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:34:56,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,643 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:34:56,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,644 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:34:56,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,644 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:34:56,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,645 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:34:56,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,645 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:34:56,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,646 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:34:56,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,647 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:34:56,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,648 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:34:56,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:34:56,648 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:34:56,649 [76] DEBUG index - Current user is: admin +01/18/13 11:34:56,649 [76] DEBUG index - Current theme is: softed +01/18/13 11:34:56,649 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:34:56,649 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:34:56,651 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:34:56,651 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:34:56,653 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:34:56,653 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:34:56,655 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:34:56,655 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:34:56,655 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:34:56,656 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:34:56,656 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:34:56,656 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:34:56,656 [76] DEBUG index - skipping headers +01/18/13 11:34:56,657 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:34:56,658 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:34:56,663 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:34:56,663 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:34:56,663 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:34:56,663 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:34:56,667 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:35')) +01/18/13 11:34:56,672 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:35:36,774 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:35:36,917 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:35:36,917 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:35:36,917 [76] DEBUG index - ****Starting for new session +01/18/13 11:35:36,918 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:35:36,918 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:35:36,918 [76] INFO index - About to take action CalendarAjax +01/18/13 11:35:36,918 [76] DEBUG index - in CalendarAjax +01/18/13 11:35:36,918 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:35:36,919 [76] INFO index - current module is Calendar +01/18/13 11:35:36,973 [76] DEBUG user - Entering Users() method ... +01/18/13 11:35:36,973 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:35:36,973 [76] DEBUG index - in getColumnFields Users +01/18/13 11:35:36,973 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:35:36,974 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:35:36,974 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:35:36,974 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:35:36,974 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:35:36,974 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:35:36,984 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:35:36,984 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:35:36,984 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:35:36,984 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:35:36,985 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:35:36,985 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:35:36,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,986 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:35:36,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,987 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:35:36,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,987 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:35:36,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,988 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:35:36,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,989 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:35:36,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,989 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:35:36,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,990 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:35:36,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,990 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:35:36,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,991 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:35:36,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,992 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:35:36,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,993 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:35:36,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,993 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:35:36,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,994 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:35:36,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,995 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:35:36,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,996 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:35:36,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,996 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:35:36,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,997 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:35:36,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,998 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:35:36,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,998 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:35:36,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,999 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:35:36,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,999 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:35:36,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:36,1000 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:35:36,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,000 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:35:37,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,000 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:35:37,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,001 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:35:37,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,001 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:35:37,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,002 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:35:37,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,002 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:35:37,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,003 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:35:37,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,004 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:35:37,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,004 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:35:37,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,005 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:35:37,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,005 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:35:37,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,006 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:35:37,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,006 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:35:37,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,007 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:35:37,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,008 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:35:37,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,008 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:35:37,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,009 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:35:37,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,009 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:35:37,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,010 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:35:37,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,010 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:35:37,011 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,011 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:35:37,012 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,012 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:35:37,012 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,012 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:35:37,013 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,013 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:35:37,014 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:35:37,014 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:35:37,014 [76] DEBUG index - Current user is: admin +01/18/13 11:35:37,015 [76] DEBUG index - Current theme is: softed +01/18/13 11:35:37,015 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:35:37,015 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:35:37,017 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:35:37,017 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:35:37,019 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:35:37,019 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:35:37,021 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:35:37,021 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:35:37,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:35:37,022 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:35:37,022 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:35:37,022 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:35:37,022 [76] DEBUG index - skipping headers +01/18/13 11:35:37,023 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:35:37,024 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:35:37,030 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:35:37,030 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:35:37,030 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:35:37,030 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:35:37,035 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:36')) +01/18/13 11:35:37,038 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:36:17,150 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:36:17,293 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:36:17,293 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:36:17,293 [76] DEBUG index - ****Starting for new session +01/18/13 11:36:17,294 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:36:17,294 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:36:17,294 [76] INFO index - About to take action CalendarAjax +01/18/13 11:36:17,294 [76] DEBUG index - in CalendarAjax +01/18/13 11:36:17,294 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:36:17,294 [76] INFO index - current module is Calendar +01/18/13 11:36:17,344 [76] DEBUG user - Entering Users() method ... +01/18/13 11:36:17,344 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:36:17,344 [76] DEBUG index - in getColumnFields Users +01/18/13 11:36:17,344 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:17,345 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:17,345 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:17,345 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:17,345 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:36:17,345 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:36:17,356 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:17,356 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:17,356 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:36:17,356 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:36:17,357 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:36:17,357 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:36:17,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,358 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:36:17,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,358 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:36:17,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,359 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:36:17,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,360 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:36:17,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,360 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:36:17,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,361 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:36:17,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,361 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:36:17,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,362 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:36:17,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,362 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:36:17,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,363 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:36:17,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,363 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:36:17,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,364 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:36:17,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,365 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:36:17,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,365 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:36:17,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,366 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:36:17,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,366 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:36:17,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,367 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:36:17,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,367 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:36:17,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,368 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:36:17,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,368 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:36:17,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,369 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:36:17,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,369 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:36:17,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,370 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:36:17,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,370 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:36:17,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,370 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:36:17,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,371 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:36:17,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,371 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:36:17,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,372 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:36:17,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,372 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:36:17,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,373 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:36:17,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,373 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:36:17,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,374 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:36:17,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,374 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:36:17,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,375 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:36:17,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,375 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:36:17,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,376 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:36:17,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,377 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:36:17,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,377 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:36:17,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,378 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:36:17,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,378 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:36:17,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,379 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:36:17,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,380 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:36:17,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,381 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:36:17,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,381 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:36:17,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,382 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:36:17,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,382 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:36:17,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:17,383 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:36:17,383 [76] DEBUG index - Current user is: admin +01/18/13 11:36:17,383 [76] DEBUG index - Current theme is: softed +01/18/13 11:36:17,383 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:36:17,383 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:36:17,386 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:36:17,386 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:36:17,388 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:36:17,388 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:36:17,390 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:36:17,390 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:36:17,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:36:17,391 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:36:17,391 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:36:17,391 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:36:17,391 [76] DEBUG index - skipping headers +01/18/13 11:36:17,393 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:36:17,393 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:36:17,399 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:36:17,399 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:36:17,400 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:36:17,400 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:36:17,420 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:37')) +01/18/13 11:36:17,423 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:36:58,049 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:36:58,180 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:36:58,181 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:36:58,181 [76] DEBUG index - ****Starting for new session +01/18/13 11:36:58,181 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:36:58,182 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:36:58,182 [76] INFO index - About to take action CalendarAjax +01/18/13 11:36:58,182 [76] DEBUG index - in CalendarAjax +01/18/13 11:36:58,182 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:36:58,182 [76] INFO index - current module is Calendar +01/18/13 11:36:58,231 [76] DEBUG user - Entering Users() method ... +01/18/13 11:36:58,231 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:36:58,231 [76] DEBUG index - in getColumnFields Users +01/18/13 11:36:58,231 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:58,232 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:58,232 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:58,232 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:58,232 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:36:58,232 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:36:58,241 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:36:58,241 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:36:58,241 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:36:58,241 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:36:58,241 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:36:58,242 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:36:58,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,243 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:36:58,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,243 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:36:58,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,244 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:36:58,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,244 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:36:58,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,245 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:36:58,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,246 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:36:58,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,246 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:36:58,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,247 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:36:58,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,247 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:36:58,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,248 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:36:58,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,248 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:36:58,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,249 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:36:58,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,249 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:36:58,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,250 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:36:58,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,250 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:36:58,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,251 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:36:58,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,251 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:36:58,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,252 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:36:58,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,252 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:36:58,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,253 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:36:58,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,254 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:36:58,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,254 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:36:58,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,255 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:36:58,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,255 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:36:58,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,256 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:36:58,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,256 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:36:58,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,257 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:36:58,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,257 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:36:58,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,258 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:36:58,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,258 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:36:58,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,259 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:36:58,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,260 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:36:58,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,260 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:36:58,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,261 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:36:58,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,261 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:36:58,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,262 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:36:58,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,262 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:36:58,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,263 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:36:58,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,263 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:36:58,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,264 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:36:58,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,264 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:36:58,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,265 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:36:58,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,265 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:36:58,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,266 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:36:58,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,266 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:36:58,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,267 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:36:58,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:36:58,267 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:36:58,268 [76] DEBUG index - Current user is: admin +01/18/13 11:36:58,268 [76] DEBUG index - Current theme is: softed +01/18/13 11:36:58,268 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:36:58,268 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:36:58,270 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:36:58,270 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:36:58,272 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:36:58,272 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:36:58,274 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:36:58,274 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:36:58,275 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:36:58,275 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:36:58,275 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:36:58,275 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:36:58,275 [76] DEBUG index - skipping headers +01/18/13 11:36:58,277 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:36:58,277 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:36:58,282 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:36:58,283 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:36:58,283 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:36:58,283 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:36:58,288 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:37')) +01/18/13 11:36:58,293 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:37:38,792 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:37:38,926 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:37:38,927 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:37:38,927 [76] DEBUG index - ****Starting for new session +01/18/13 11:37:38,927 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:37:38,927 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:37:38,928 [76] INFO index - About to take action CalendarAjax +01/18/13 11:37:38,928 [76] DEBUG index - in CalendarAjax +01/18/13 11:37:38,928 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:37:38,928 [76] INFO index - current module is Calendar +01/18/13 11:37:38,974 [76] DEBUG user - Entering Users() method ... +01/18/13 11:37:38,974 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:37:38,974 [76] DEBUG index - in getColumnFields Users +01/18/13 11:37:38,974 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:37:38,975 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:37:38,975 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:37:38,975 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:37:38,975 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:37:38,975 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:37:38,983 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:37:38,984 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:37:38,984 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:37:38,984 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:37:38,984 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:37:38,985 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:37:38,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,985 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:37:38,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,986 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:37:38,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,986 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:37:38,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,987 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:37:38,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,988 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:37:38,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,988 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:37:38,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,989 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:37:38,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,989 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:37:38,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,990 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:37:38,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,990 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:37:38,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,991 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:37:38,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,991 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:37:38,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,992 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:37:38,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,992 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:37:38,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,993 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:37:38,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,993 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:37:38,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,994 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:37:38,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,994 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:37:38,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,995 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:37:38,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,995 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:37:38,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,996 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:37:38,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,996 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:37:38,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,997 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:37:38,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,997 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:37:38,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,998 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:37:38,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,998 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:37:38,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,999 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:37:38,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,999 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:37:38,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:38,1000 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:37:39,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,000 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:37:39,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,001 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:37:39,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,001 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:37:39,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,002 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:37:39,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,002 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:37:39,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,003 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:37:39,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,004 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:37:39,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,004 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:37:39,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,005 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:37:39,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,005 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:37:39,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,006 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:37:39,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,006 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:37:39,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,007 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:37:39,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,007 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:37:39,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,008 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:37:39,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,008 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:37:39,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,009 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:37:39,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:37:39,009 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:37:39,010 [76] DEBUG index - Current user is: admin +01/18/13 11:37:39,010 [76] DEBUG index - Current theme is: softed +01/18/13 11:37:39,010 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:37:39,010 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:37:39,012 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:37:39,012 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:37:39,014 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:37:39,014 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:37:39,015 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:37:39,016 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:37:39,016 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:37:39,016 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:37:39,016 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:37:39,017 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:37:39,017 [76] DEBUG index - skipping headers +01/18/13 11:37:39,018 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:37:39,018 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:37:39,023 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:37:39,023 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:37:39,024 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:37:39,024 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:37:39,027 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:38')) +01/18/13 11:37:39,030 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:38:19,461 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:38:19,608 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:38:19,608 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:38:19,608 [76] DEBUG index - ****Starting for new session +01/18/13 11:38:19,608 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:38:19,609 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:38:19,609 [76] INFO index - About to take action CalendarAjax +01/18/13 11:38:19,609 [76] DEBUG index - in CalendarAjax +01/18/13 11:38:19,609 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:38:19,609 [76] INFO index - current module is Calendar +01/18/13 11:38:19,663 [76] DEBUG user - Entering Users() method ... +01/18/13 11:38:19,664 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:38:19,664 [76] DEBUG index - in getColumnFields Users +01/18/13 11:38:19,664 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:38:19,665 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:38:19,665 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:38:19,665 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:38:19,665 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:38:19,665 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:38:19,675 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:38:19,675 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:38:19,675 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:38:19,676 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:38:19,676 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:38:19,677 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:38:19,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,678 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:38:19,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,678 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:38:19,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,679 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:38:19,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,680 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:38:19,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,681 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:38:19,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,681 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:38:19,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,682 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:38:19,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,682 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:38:19,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,683 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:38:19,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,683 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:38:19,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,684 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:38:19,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,684 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:38:19,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,685 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:38:19,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,685 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:38:19,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,686 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:38:19,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,686 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:38:19,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,687 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:38:19,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,688 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:38:19,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,688 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:38:19,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,689 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:38:19,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,690 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:38:19,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,690 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:38:19,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,691 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:38:19,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,691 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:38:19,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,691 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:38:19,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,692 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:38:19,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,693 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:38:19,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,693 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:38:19,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,694 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:38:19,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,694 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:38:19,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,695 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:38:19,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,695 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:38:19,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,696 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:38:19,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,696 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:38:19,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,697 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:38:19,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,697 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:38:19,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,698 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:38:19,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,698 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:38:19,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,699 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:38:19,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,699 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:38:19,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,700 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:38:19,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,700 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:38:19,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,701 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:38:19,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,701 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:38:19,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,702 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:38:19,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,703 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:38:19,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:38:19,704 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:38:19,704 [76] DEBUG index - Current user is: admin +01/18/13 11:38:19,704 [76] DEBUG index - Current theme is: softed +01/18/13 11:38:19,704 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:38:19,704 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:38:19,706 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:38:19,706 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:38:19,709 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:38:19,709 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:38:19,710 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:38:19,711 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:38:19,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:38:19,711 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:38:19,712 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:38:19,712 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:38:19,712 [76] DEBUG index - skipping headers +01/18/13 11:38:19,713 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:38:19,714 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:38:19,719 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:38:19,720 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:38:19,720 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:38:19,720 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:38:19,724 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:39')) +01/18/13 11:38:19,728 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:38:59,929 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:39:00,062 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:39:00,062 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:39:00,062 [76] DEBUG index - ****Starting for new session +01/18/13 11:39:00,062 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:39:00,063 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:39:00,063 [76] INFO index - About to take action CalendarAjax +01/18/13 11:39:00,063 [76] DEBUG index - in CalendarAjax +01/18/13 11:39:00,063 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:39:00,063 [76] INFO index - current module is Calendar +01/18/13 11:39:00,110 [76] DEBUG user - Entering Users() method ... +01/18/13 11:39:00,110 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:39:00,110 [76] DEBUG index - in getColumnFields Users +01/18/13 11:39:00,110 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:00,110 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:00,110 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:00,111 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:00,111 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:39:00,111 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:39:00,119 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:00,119 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:00,119 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:39:00,119 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:39:00,120 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:39:00,120 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:39:00,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,121 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:39:00,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,121 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:39:00,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,122 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:39:00,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,122 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:39:00,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,123 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:39:00,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,123 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:39:00,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,124 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:39:00,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,124 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:39:00,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,125 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:39:00,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,125 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:39:00,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,126 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:39:00,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,126 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:39:00,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,127 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:39:00,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,127 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:39:00,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,128 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:39:00,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,128 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:39:00,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,129 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:39:00,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,129 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:39:00,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,130 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:39:00,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,131 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:39:00,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,131 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:39:00,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,132 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:39:00,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,132 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:39:00,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,132 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:39:00,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,133 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:39:00,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,133 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:39:00,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,134 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:39:00,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,134 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:39:00,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,135 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:39:00,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,135 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:39:00,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,136 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:39:00,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,136 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:39:00,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,137 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:39:00,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,137 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:39:00,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,138 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:39:00,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,138 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:39:00,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,139 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:39:00,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,139 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:39:00,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,140 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:39:00,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,141 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:39:00,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,141 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:39:00,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,142 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:39:00,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,142 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:39:00,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,143 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:39:00,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,143 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:39:00,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,144 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:39:00,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:00,144 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:39:00,145 [76] DEBUG index - Current user is: admin +01/18/13 11:39:00,145 [76] DEBUG index - Current theme is: softed +01/18/13 11:39:00,145 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:39:00,145 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:39:00,147 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:39:00,147 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:39:00,149 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:39:00,149 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:39:00,150 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:39:00,151 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:39:00,151 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:39:00,151 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:39:00,151 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:39:00,151 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:39:00,152 [76] DEBUG index - skipping headers +01/18/13 11:39:00,152 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:39:00,153 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:39:00,158 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:39:00,158 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:39:00,158 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:39:00,158 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:39:00,165 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:40')) +01/18/13 11:39:00,169 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:39:40,279 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:39:40,404 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:39:40,404 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:39:40,404 [76] DEBUG index - ****Starting for new session +01/18/13 11:39:40,405 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:39:40,405 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:39:40,405 [76] INFO index - About to take action CalendarAjax +01/18/13 11:39:40,405 [76] DEBUG index - in CalendarAjax +01/18/13 11:39:40,405 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:39:40,405 [76] INFO index - current module is Calendar +01/18/13 11:39:40,454 [76] DEBUG user - Entering Users() method ... +01/18/13 11:39:40,454 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:39:40,454 [76] DEBUG index - in getColumnFields Users +01/18/13 11:39:40,454 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:40,454 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:40,455 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:40,455 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:40,455 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:39:40,455 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:39:40,463 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:39:40,463 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:39:40,463 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:39:40,463 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:39:40,464 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:39:40,464 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:39:40,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,465 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:39:40,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,465 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:39:40,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,466 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:39:40,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,466 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:39:40,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,467 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:39:40,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,467 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:39:40,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,468 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:39:40,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,468 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:39:40,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,469 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:39:40,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,470 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:39:40,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,470 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:39:40,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,471 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:39:40,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,471 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:39:40,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,472 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:39:40,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,472 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:39:40,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,473 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:39:40,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,473 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:39:40,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,474 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:39:40,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,474 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:39:40,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,475 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:39:40,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,475 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:39:40,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,476 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:39:40,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,476 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:39:40,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,477 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:39:40,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,477 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:39:40,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,478 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:39:40,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,478 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:39:40,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,479 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:39:40,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,479 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:39:40,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,480 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:39:40,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,480 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:39:40,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,481 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:39:40,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,481 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:39:40,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,482 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:39:40,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,482 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:39:40,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,483 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:39:40,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,483 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:39:40,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,484 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:39:40,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,484 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:39:40,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,485 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:39:40,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,485 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:39:40,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,486 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:39:40,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,486 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:39:40,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,487 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:39:40,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,487 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:39:40,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,488 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:39:40,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:39:40,489 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:39:40,489 [76] DEBUG index - Current user is: admin +01/18/13 11:39:40,489 [76] DEBUG index - Current theme is: softed +01/18/13 11:39:40,489 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:39:40,489 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:39:40,491 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:39:40,491 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:39:40,493 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:39:40,493 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:39:40,495 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:39:40,495 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:39:40,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:39:40,496 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:39:40,496 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:39:40,496 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:39:40,496 [76] DEBUG index - skipping headers +01/18/13 11:39:40,497 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:39:40,497 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:39:40,502 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:39:40,503 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:39:40,503 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:39:40,503 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:39:40,507 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:40')) +01/18/13 11:39:40,512 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:40:20,886 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:40:21,023 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:40:21,024 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:40:21,024 [76] DEBUG index - ****Starting for new session +01/18/13 11:40:21,025 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:40:21,025 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:40:21,025 [76] INFO index - About to take action CalendarAjax +01/18/13 11:40:21,025 [76] DEBUG index - in CalendarAjax +01/18/13 11:40:21,025 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:40:21,026 [76] INFO index - current module is Calendar +01/18/13 11:40:21,077 [76] DEBUG user - Entering Users() method ... +01/18/13 11:40:21,078 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:40:21,078 [76] DEBUG index - in getColumnFields Users +01/18/13 11:40:21,078 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:40:21,078 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:40:21,079 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:40:21,079 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:40:21,079 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:40:21,079 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:40:21,087 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:40:21,087 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:40:21,088 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:40:21,088 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:40:21,088 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:40:21,089 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:40:21,089 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,089 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:40:21,090 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,090 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:40:21,090 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,091 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:40:21,091 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,091 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:40:21,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,092 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:40:21,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,092 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:40:21,093 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,093 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:40:21,093 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,093 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:40:21,094 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,094 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:40:21,095 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,095 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:40:21,095 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,095 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:40:21,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,096 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:40:21,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,096 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:40:21,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,097 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:40:21,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,098 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:40:21,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,098 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:40:21,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,099 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:40:21,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,100 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:40:21,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,100 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:40:21,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,101 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:40:21,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,101 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:40:21,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,102 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:40:21,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,102 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:40:21,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,103 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:40:21,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,103 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:40:21,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,104 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:40:21,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,104 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:40:21,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,105 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:40:21,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,105 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:40:21,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,106 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:40:21,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,106 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:40:21,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,107 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:40:21,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,108 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:40:21,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,108 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:40:21,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,109 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:40:21,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,109 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:40:21,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,110 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:40:21,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,110 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:40:21,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,111 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:40:21,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,111 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:40:21,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,112 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:40:21,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,113 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:40:21,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,114 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:40:21,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,114 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:40:21,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,115 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:40:21,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,115 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:40:21,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:40:21,116 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:40:21,116 [76] DEBUG index - Current user is: admin +01/18/13 11:40:21,116 [76] DEBUG index - Current theme is: softed +01/18/13 11:40:21,116 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:40:21,116 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:40:21,118 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:40:21,118 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:40:21,121 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:40:21,121 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:40:21,123 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:40:21,123 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:40:21,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:40:21,124 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:40:21,124 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:40:21,124 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:40:21,124 [76] DEBUG index - skipping headers +01/18/13 11:40:21,125 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:40:21,126 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:40:21,130 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:40:21,131 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:40:21,131 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:40:21,131 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:40:21,135 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:41')) +01/18/13 11:40:21,140 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:41:01,239 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:41:01,372 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:41:01,372 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:41:01,372 [76] DEBUG index - ****Starting for new session +01/18/13 11:41:01,373 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:41:01,373 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:41:01,373 [76] INFO index - About to take action CalendarAjax +01/18/13 11:41:01,373 [76] DEBUG index - in CalendarAjax +01/18/13 11:41:01,373 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:41:01,373 [76] INFO index - current module is Calendar +01/18/13 11:41:01,421 [76] DEBUG user - Entering Users() method ... +01/18/13 11:41:01,422 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:41:01,422 [76] DEBUG index - in getColumnFields Users +01/18/13 11:41:01,422 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:01,422 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:01,422 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:01,422 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:01,423 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:41:01,423 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:41:01,431 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:01,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:01,431 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:41:01,431 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:41:01,431 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:41:01,432 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:41:01,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,433 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:41:01,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,433 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:41:01,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,434 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:41:01,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,434 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:41:01,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,435 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:41:01,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,435 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:41:01,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,436 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:41:01,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,436 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:41:01,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,437 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:41:01,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,437 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:41:01,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,438 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:41:01,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,438 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:41:01,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,439 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:41:01,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,439 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:41:01,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,440 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:41:01,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,440 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:41:01,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,441 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:41:01,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,441 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:41:01,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,441 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:41:01,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,442 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:41:01,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,443 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:41:01,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,443 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:41:01,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,444 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:41:01,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,444 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:41:01,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,444 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:41:01,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,445 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:41:01,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,445 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:41:01,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,446 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:41:01,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,446 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:41:01,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,447 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:41:01,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,447 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:41:01,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,448 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:41:01,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,448 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:41:01,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,449 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:41:01,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,449 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:41:01,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,450 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:41:01,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,450 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:41:01,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,451 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:41:01,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,451 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:41:01,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,452 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:41:01,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,452 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:41:01,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,453 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:41:01,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,453 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:41:01,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,454 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:41:01,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,454 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:41:01,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,455 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:41:01,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:01,455 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:41:01,456 [76] DEBUG index - Current user is: admin +01/18/13 11:41:01,456 [76] DEBUG index - Current theme is: softed +01/18/13 11:41:01,456 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:41:01,456 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:41:01,458 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:41:01,458 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:41:01,460 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:41:01,460 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:41:01,462 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:41:01,462 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:41:01,463 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:41:01,463 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:41:01,463 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:41:01,463 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:41:01,463 [76] DEBUG index - skipping headers +01/18/13 11:41:01,464 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:41:01,465 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:41:01,469 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:41:01,470 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:41:01,470 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:41:01,470 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:41:01,474 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:42')) +01/18/13 11:41:01,478 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:41:41,573 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:41:41,700 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:41:41,701 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:41:41,701 [76] DEBUG index - ****Starting for new session +01/18/13 11:41:41,701 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:41:41,701 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:41:41,702 [76] INFO index - About to take action CalendarAjax +01/18/13 11:41:41,702 [76] DEBUG index - in CalendarAjax +01/18/13 11:41:41,702 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:41:41,702 [76] INFO index - current module is Calendar +01/18/13 11:41:41,748 [76] DEBUG user - Entering Users() method ... +01/18/13 11:41:41,748 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:41:41,748 [76] DEBUG index - in getColumnFields Users +01/18/13 11:41:41,748 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:41,749 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:41,749 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:41,749 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:41,749 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:41:41,749 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:41:41,758 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:41:41,758 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:41:41,758 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:41:41,758 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:41:41,759 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:41:41,759 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:41:41,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,760 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:41:41,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,760 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:41:41,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,761 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:41:41,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,761 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:41:41,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,762 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:41:41,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,762 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:41:41,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,763 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:41:41,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,764 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:41:41,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,764 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:41:41,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,765 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:41:41,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,765 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:41:41,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,766 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:41:41,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,766 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:41:41,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,767 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:41:41,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,767 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:41:41,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,768 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:41:41,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,768 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:41:41,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,769 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:41:41,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,769 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:41:41,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,770 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:41:41,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,770 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:41:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,771 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:41:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,771 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:41:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,772 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:41:41,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,772 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:41:41,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,773 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:41:41,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,773 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:41:41,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,774 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:41:41,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,774 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:41:41,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,775 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:41:41,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,775 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:41:41,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,776 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:41:41,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,776 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:41:41,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,777 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:41:41,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,777 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:41:41,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,778 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:41:41,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,778 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:41:41,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,779 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:41:41,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,779 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:41:41,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,780 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:41:41,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,780 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:41:41,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,781 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:41:41,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,781 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:41:41,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,782 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:41:41,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,782 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:41:41,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,783 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:41:41,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:41:41,783 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:41:41,784 [76] DEBUG index - Current user is: admin +01/18/13 11:41:41,784 [76] DEBUG index - Current theme is: softed +01/18/13 11:41:41,784 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:41:41,784 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:41:41,786 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:41:41,786 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:41:41,787 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:41:41,788 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:41:41,789 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:41:41,789 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:41:41,790 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:41:41,790 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:41:41,790 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:41:41,790 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:41:41,790 [76] DEBUG index - skipping headers +01/18/13 11:41:41,791 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:41:41,792 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:41:41,797 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:41:41,797 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:41:41,797 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:41:41,797 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:41:41,801 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:42')) +01/18/13 11:41:41,805 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:42:21,922 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:42:22,065 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:42:22,065 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:42:22,065 [76] DEBUG index - ****Starting for new session +01/18/13 11:42:22,066 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:42:22,066 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:42:22,066 [76] INFO index - About to take action CalendarAjax +01/18/13 11:42:22,066 [76] DEBUG index - in CalendarAjax +01/18/13 11:42:22,066 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:42:22,066 [76] INFO index - current module is Calendar +01/18/13 11:42:22,119 [76] DEBUG user - Entering Users() method ... +01/18/13 11:42:22,120 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:42:22,120 [76] DEBUG index - in getColumnFields Users +01/18/13 11:42:22,120 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:42:22,120 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:42:22,121 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:42:22,121 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:42:22,121 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:42:22,121 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:42:22,133 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:42:22,133 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:42:22,133 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:42:22,134 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:42:22,134 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:42:22,135 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:42:22,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,136 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:42:22,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,136 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:42:22,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,137 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:42:22,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,138 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:42:22,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,138 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:42:22,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,139 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:42:22,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,139 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:42:22,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,140 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:42:22,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,140 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:42:22,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,141 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:42:22,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,141 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:42:22,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,142 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:42:22,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,142 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:42:22,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,143 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:42:22,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,143 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:42:22,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,144 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:42:22,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,145 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:42:22,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,145 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:42:22,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,146 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:42:22,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,146 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:42:22,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,147 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:42:22,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,147 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:42:22,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,148 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:42:22,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,148 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:42:22,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,149 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:42:22,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,150 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:42:22,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,150 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:42:22,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,151 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:42:22,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,151 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:42:22,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,152 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:42:22,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,152 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:42:22,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,153 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:42:22,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,153 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:42:22,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,154 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:42:22,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,155 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:42:22,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,155 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:42:22,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,156 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:42:22,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,157 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:42:22,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,157 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:42:22,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,158 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:42:22,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,158 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:42:22,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,159 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:42:22,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,160 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:42:22,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,160 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:42:22,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,161 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:42:22,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,161 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:42:22,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:42:22,162 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:42:22,162 [76] DEBUG index - Current user is: admin +01/18/13 11:42:22,162 [76] DEBUG index - Current theme is: softed +01/18/13 11:42:22,162 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:42:22,162 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:42:22,164 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:42:22,164 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:42:22,167 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:42:22,167 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:42:22,169 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:42:22,169 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:42:22,170 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:42:22,170 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:42:22,170 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:42:22,170 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:42:22,170 [76] DEBUG index - skipping headers +01/18/13 11:42:22,171 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:42:22,172 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:42:22,176 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:42:22,177 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:42:22,177 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:42:22,177 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:42:22,181 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:43')) +01/18/13 11:42:22,190 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:43:02,306 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:43:02,436 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:43:02,436 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:43:02,436 [76] DEBUG index - ****Starting for new session +01/18/13 11:43:02,437 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:43:02,437 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:43:02,437 [76] INFO index - About to take action CalendarAjax +01/18/13 11:43:02,437 [76] DEBUG index - in CalendarAjax +01/18/13 11:43:02,437 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:43:02,437 [76] INFO index - current module is Calendar +01/18/13 11:43:02,483 [76] DEBUG user - Entering Users() method ... +01/18/13 11:43:02,484 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:43:02,484 [76] DEBUG index - in getColumnFields Users +01/18/13 11:43:02,484 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:02,484 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:02,484 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:02,484 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:02,485 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:43:02,485 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:43:02,494 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:02,494 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:02,494 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:43:02,494 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:43:02,494 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:43:02,495 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:43:02,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,495 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:43:02,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,496 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:43:02,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,497 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:43:02,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,497 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:43:02,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,498 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:43:02,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,498 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:43:02,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,499 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:43:02,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,499 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:43:02,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,500 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:43:02,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,500 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:43:02,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,501 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:43:02,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,501 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:43:02,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,502 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:43:02,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,502 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:43:02,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,503 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:43:02,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,503 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:43:02,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,504 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:43:02,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,504 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:43:02,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,505 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:43:02,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,505 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:43:02,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,506 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:43:02,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,506 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:43:02,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,507 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:43:02,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,507 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:43:02,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,507 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:43:02,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,508 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:43:02,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,508 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:43:02,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,509 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:43:02,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,509 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:43:02,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,510 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:43:02,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,510 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:43:02,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,511 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:43:02,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,511 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:43:02,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,512 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:43:02,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,512 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:43:02,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,513 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:43:02,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,513 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:43:02,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,514 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:43:02,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,515 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:43:02,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,515 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:43:02,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,516 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:43:02,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,516 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:43:02,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,517 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:43:02,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,517 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:43:02,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,518 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:43:02,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,518 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:43:02,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:02,519 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:43:02,519 [76] DEBUG index - Current user is: admin +01/18/13 11:43:02,519 [76] DEBUG index - Current theme is: softed +01/18/13 11:43:02,519 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:43:02,519 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:43:02,521 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:43:02,521 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:43:02,523 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:43:02,523 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:43:02,525 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:43:02,525 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:43:02,526 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:43:02,526 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:43:02,526 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:43:02,526 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:43:02,526 [76] DEBUG index - skipping headers +01/18/13 11:43:02,527 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:43:02,527 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:43:02,532 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:43:02,532 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:43:02,533 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:43:02,533 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:43:02,537 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:44')) +01/18/13 11:43:02,542 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:43:42,657 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:43:42,803 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:43:42,803 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:43:42,804 [76] DEBUG index - ****Starting for new session +01/18/13 11:43:42,805 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:43:42,805 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:43:42,805 [76] INFO index - About to take action CalendarAjax +01/18/13 11:43:42,805 [76] DEBUG index - in CalendarAjax +01/18/13 11:43:42,805 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:43:42,805 [76] INFO index - current module is Calendar +01/18/13 11:43:42,856 [76] DEBUG user - Entering Users() method ... +01/18/13 11:43:42,856 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:43:42,856 [76] DEBUG index - in getColumnFields Users +01/18/13 11:43:42,857 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:42,857 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:42,857 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:42,857 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:42,858 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:43:42,858 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:43:42,868 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:43:42,868 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:43:42,868 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:43:42,868 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:43:42,869 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:43:42,870 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:43:42,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,871 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:43:42,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,871 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:43:42,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,872 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:43:42,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,872 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:43:42,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,873 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:43:42,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,873 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:43:42,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,874 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:43:42,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,875 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:43:42,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,875 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:43:42,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,876 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:43:42,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,876 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:43:42,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,877 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:43:42,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,877 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:43:42,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,878 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:43:42,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,879 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:43:42,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,879 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:43:42,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,880 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:43:42,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,880 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:43:42,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,881 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:43:42,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,881 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:43:42,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,882 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:43:42,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,882 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:43:42,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,883 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:43:42,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,883 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:43:42,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,884 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:43:42,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,884 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:43:42,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,885 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:43:42,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,885 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:43:42,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,886 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:43:42,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,886 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:43:42,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,887 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:43:42,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,887 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:43:42,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,888 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:43:42,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,888 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:43:42,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,889 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:43:42,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,889 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:43:42,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,890 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:43:42,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,890 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:43:42,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,891 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:43:42,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,892 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:43:42,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,892 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:43:42,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,893 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:43:42,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,894 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:43:42,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,894 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:43:42,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,895 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:43:42,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,895 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:43:42,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:43:42,896 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:43:42,896 [76] DEBUG index - Current user is: admin +01/18/13 11:43:42,896 [76] DEBUG index - Current theme is: softed +01/18/13 11:43:42,897 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:43:42,897 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:43:42,898 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:43:42,899 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:43:42,901 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:43:42,901 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:43:42,902 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:43:42,903 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:43:42,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:43:42,903 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:43:42,903 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:43:42,904 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:43:42,904 [76] DEBUG index - skipping headers +01/18/13 11:43:42,905 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:43:42,905 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:43:42,910 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:43:42,911 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:43:42,911 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:43:42,911 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:43:42,915 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:44')) +01/18/13 11:43:42,920 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:44:23,118 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:44:23,266 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:44:23,266 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:44:23,266 [76] DEBUG index - ****Starting for new session +01/18/13 11:44:23,267 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:44:23,267 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:44:23,267 [76] INFO index - About to take action CalendarAjax +01/18/13 11:44:23,267 [76] DEBUG index - in CalendarAjax +01/18/13 11:44:23,267 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:44:23,267 [76] INFO index - current module is Calendar +01/18/13 11:44:23,319 [76] DEBUG user - Entering Users() method ... +01/18/13 11:44:23,319 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:44:23,319 [76] DEBUG index - in getColumnFields Users +01/18/13 11:44:23,319 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:44:23,319 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:44:23,320 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:44:23,320 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:44:23,320 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:44:23,320 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:44:23,330 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:44:23,330 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:44:23,330 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:44:23,330 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:44:23,331 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:44:23,331 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:44:23,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,332 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:44:23,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,332 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:44:23,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,333 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:44:23,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,333 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:44:23,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,334 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:44:23,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,334 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:44:23,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,335 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:44:23,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,336 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:44:23,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,336 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:44:23,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,337 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:44:23,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,337 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:44:23,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,338 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:44:23,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,338 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:44:23,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,339 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:44:23,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,339 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:44:23,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,340 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:44:23,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,340 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:44:23,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,341 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:44:23,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,341 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:44:23,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,342 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:44:23,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,342 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:44:23,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,343 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:44:23,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,343 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:44:23,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,343 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:44:23,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,344 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:44:23,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,344 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:44:23,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,345 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:44:23,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,345 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:44:23,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,346 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:44:23,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,346 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:44:23,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,347 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:44:23,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,347 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:44:23,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,348 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:44:23,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,349 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:44:23,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,350 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:44:23,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,350 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:44:23,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,351 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:44:23,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,351 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:44:23,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,352 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:44:23,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,353 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:44:23,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,353 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:44:23,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,354 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:44:23,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,354 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:44:23,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,355 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:44:23,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,355 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:44:23,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,356 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:44:23,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:44:23,356 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:44:23,357 [76] DEBUG index - Current user is: admin +01/18/13 11:44:23,357 [76] DEBUG index - Current theme is: softed +01/18/13 11:44:23,357 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:44:23,357 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:44:23,359 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:44:23,359 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:44:23,361 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:44:23,362 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:44:23,363 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:44:23,363 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:44:23,364 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:44:23,364 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:44:23,364 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:44:23,364 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:44:23,364 [76] DEBUG index - skipping headers +01/18/13 11:44:23,366 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:44:23,366 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:44:23,371 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:44:23,372 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:44:23,372 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:44:23,372 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:44:23,376 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:45')) +01/18/13 11:44:23,379 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:45:03,547 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:45:03,677 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:45:03,677 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:45:03,678 [76] DEBUG index - ****Starting for new session +01/18/13 11:45:03,678 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:45:03,678 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:45:03,678 [76] INFO index - About to take action CalendarAjax +01/18/13 11:45:03,679 [76] DEBUG index - in CalendarAjax +01/18/13 11:45:03,679 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:45:03,679 [76] INFO index - current module is Calendar +01/18/13 11:45:03,725 [76] DEBUG user - Entering Users() method ... +01/18/13 11:45:03,725 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:45:03,725 [76] DEBUG index - in getColumnFields Users +01/18/13 11:45:03,725 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:03,725 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:03,726 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:03,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:03,726 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:45:03,726 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:45:03,735 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:03,735 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:03,735 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:45:03,735 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:45:03,736 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:45:03,736 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:45:03,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,737 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:45:03,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,737 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:45:03,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,738 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:45:03,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,738 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:45:03,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,739 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:45:03,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,739 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:45:03,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,740 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:45:03,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,740 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:45:03,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,741 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:45:03,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,742 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:45:03,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,742 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:45:03,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,743 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:45:03,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,743 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:45:03,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,744 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:45:03,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,744 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:45:03,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,745 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:45:03,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,745 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:45:03,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,746 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:45:03,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,746 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:45:03,747 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,747 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:45:03,747 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,747 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:45:03,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,748 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:45:03,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,748 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:45:03,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,748 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:45:03,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,749 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:45:03,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,749 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:45:03,750 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,750 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:45:03,750 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,750 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:45:03,751 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,751 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:45:03,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,752 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:45:03,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,752 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:45:03,753 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,753 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:45:03,753 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,753 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:45:03,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,754 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:45:03,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,754 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:45:03,755 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,755 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:45:03,755 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,755 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:45:03,756 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,756 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:45:03,756 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,756 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:45:03,757 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,757 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:45:03,757 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,757 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:45:03,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,758 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:45:03,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,758 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:45:03,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,759 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:45:03,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,759 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:45:03,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,760 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:45:03,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:03,760 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:45:03,761 [76] DEBUG index - Current user is: admin +01/18/13 11:45:03,761 [76] DEBUG index - Current theme is: softed +01/18/13 11:45:03,761 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:45:03,761 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:45:03,763 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:45:03,763 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:45:03,765 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:45:03,765 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:45:03,766 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:45:03,767 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:45:03,767 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:45:03,767 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:45:03,767 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:45:03,767 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:45:03,768 [76] DEBUG index - skipping headers +01/18/13 11:45:03,768 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:45:03,769 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:45:03,774 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:45:03,774 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:45:03,774 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:45:03,774 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:45:03,779 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:46')) +01/18/13 11:45:03,783 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:45:43,917 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:45:44,059 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:45:44,059 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:45:44,059 [76] DEBUG index - ****Starting for new session +01/18/13 11:45:44,060 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:45:44,060 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:45:44,060 [76] INFO index - About to take action CalendarAjax +01/18/13 11:45:44,060 [76] DEBUG index - in CalendarAjax +01/18/13 11:45:44,060 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:45:44,060 [76] INFO index - current module is Calendar +01/18/13 11:45:44,110 [76] DEBUG user - Entering Users() method ... +01/18/13 11:45:44,111 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:45:44,111 [76] DEBUG index - in getColumnFields Users +01/18/13 11:45:44,111 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:44,111 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:44,111 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:44,112 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:44,112 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:45:44,112 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:45:44,121 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:45:44,121 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:45:44,121 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:45:44,121 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:45:44,122 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:45:44,123 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:45:44,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,123 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:45:44,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,124 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:45:44,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,124 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:45:44,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,125 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:45:44,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,125 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:45:44,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,126 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:45:44,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,127 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:45:44,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,127 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:45:44,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,128 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:45:44,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,129 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:45:44,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,129 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:45:44,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,130 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:45:44,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,130 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:45:44,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,131 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:45:44,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,131 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:45:44,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,132 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:45:44,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,133 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:45:44,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,133 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:45:44,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,134 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:45:44,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,134 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:45:44,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,135 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:45:44,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,135 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:45:44,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,136 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:45:44,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,136 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:45:44,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,136 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:45:44,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,137 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:45:44,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,137 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:45:44,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,138 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:45:44,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,139 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:45:44,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,139 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:45:44,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,140 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:45:44,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,140 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:45:44,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,141 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:45:44,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,141 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:45:44,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,142 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:45:44,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,143 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:45:44,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,143 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:45:44,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,144 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:45:44,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,144 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:45:44,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,145 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:45:44,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,145 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:45:44,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,146 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:45:44,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,147 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:45:44,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,148 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:45:44,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,148 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:45:44,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,149 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:45:44,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:45:44,150 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:45:44,150 [76] DEBUG index - Current user is: admin +01/18/13 11:45:44,150 [76] DEBUG index - Current theme is: softed +01/18/13 11:45:44,150 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:45:44,150 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:45:44,152 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:45:44,152 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:45:44,154 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:45:44,154 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:45:44,156 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:45:44,156 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:45:44,157 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:45:44,157 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:45:44,157 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:45:44,157 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:45:44,157 [76] DEBUG index - skipping headers +01/18/13 11:45:44,158 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:45:44,160 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:45:44,166 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:45:44,166 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:45:44,166 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:45:44,166 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:45:44,171 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:46')) +01/18/13 11:45:44,178 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:46:24,294 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:46:24,434 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:46:24,434 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:46:24,435 [76] DEBUG index - ****Starting for new session +01/18/13 11:46:24,435 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:46:24,435 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:46:24,435 [76] INFO index - About to take action CalendarAjax +01/18/13 11:46:24,435 [76] DEBUG index - in CalendarAjax +01/18/13 11:46:24,436 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:46:24,436 [76] INFO index - current module is Calendar +01/18/13 11:46:24,488 [76] DEBUG user - Entering Users() method ... +01/18/13 11:46:24,488 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:46:24,488 [76] DEBUG index - in getColumnFields Users +01/18/13 11:46:24,488 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:46:24,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:46:24,489 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:46:24,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:46:24,489 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:46:24,489 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:46:24,499 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:46:24,499 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:46:24,500 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:46:24,500 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:46:24,500 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:46:24,501 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:46:24,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,501 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:46:24,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,502 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:46:24,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,502 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:46:24,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,503 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:46:24,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,503 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:46:24,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,504 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:46:24,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,505 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:46:24,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,505 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:46:24,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,506 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:46:24,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,507 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:46:24,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,508 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:46:24,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,508 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:46:24,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,509 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:46:24,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,509 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:46:24,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,510 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:46:24,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,510 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:46:24,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,511 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:46:24,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,511 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:46:24,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,512 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:46:24,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,512 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:46:24,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,513 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:46:24,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,513 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:46:24,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,514 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:46:24,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,514 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:46:24,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,515 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:46:24,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,515 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:46:24,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,516 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:46:24,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,516 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:46:24,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,517 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:46:24,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,518 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:46:24,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,519 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:46:24,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,519 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:46:24,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,520 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:46:24,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,521 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:46:24,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,521 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:46:24,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,522 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:46:24,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,522 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:46:24,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,523 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:46:24,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,523 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:46:24,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,524 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:46:24,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,524 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:46:24,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,525 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:46:24,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,525 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:46:24,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,526 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:46:24,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,526 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:46:24,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,527 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:46:24,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:46:24,527 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:46:24,528 [76] DEBUG index - Current user is: admin +01/18/13 11:46:24,528 [76] DEBUG index - Current theme is: softed +01/18/13 11:46:24,528 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:46:24,528 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:46:24,530 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:46:24,530 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:46:24,532 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:46:24,532 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:46:24,534 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:46:24,535 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:46:24,535 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:46:24,536 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:46:24,536 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:46:24,536 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:46:24,536 [76] DEBUG index - skipping headers +01/18/13 11:46:24,537 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:46:24,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:46:24,542 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:46:24,543 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:46:24,543 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:46:24,543 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:46:24,553 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:47')) +01/18/13 11:46:24,557 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:47:04,668 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:47:04,797 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:47:04,798 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:47:04,798 [76] DEBUG index - ****Starting for new session +01/18/13 11:47:04,798 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:47:04,799 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:47:04,799 [76] INFO index - About to take action CalendarAjax +01/18/13 11:47:04,799 [76] DEBUG index - in CalendarAjax +01/18/13 11:47:04,799 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:47:04,799 [76] INFO index - current module is Calendar +01/18/13 11:47:04,845 [76] DEBUG user - Entering Users() method ... +01/18/13 11:47:04,845 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:47:04,845 [76] DEBUG index - in getColumnFields Users +01/18/13 11:47:04,845 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:04,846 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:04,846 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:04,846 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:04,846 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:47:04,846 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:47:04,854 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:04,854 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:04,854 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:47:04,855 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:47:04,855 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:47:04,856 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:47:04,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,856 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:47:04,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,857 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:47:04,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,857 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:47:04,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,858 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:47:04,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,858 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:47:04,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,859 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:47:04,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,859 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:47:04,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,860 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:47:04,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,860 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:47:04,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,861 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:47:04,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,861 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:47:04,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,862 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:47:04,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,862 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:47:04,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,863 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:47:04,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,863 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:47:04,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,864 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:47:04,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,864 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:47:04,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,865 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:47:04,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,866 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:47:04,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,866 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:47:04,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,867 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:47:04,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,867 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:47:04,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,868 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:47:04,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,868 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:47:04,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,868 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:47:04,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,869 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:47:04,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,869 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:47:04,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,870 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:47:04,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,870 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:47:04,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,871 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:47:04,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,871 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:47:04,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,872 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:47:04,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,872 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:47:04,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,873 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:47:04,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,874 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:47:04,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,874 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:47:04,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,875 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:47:04,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,875 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:47:04,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,876 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:47:04,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,876 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:47:04,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,877 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:47:04,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,877 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:47:04,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,878 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:47:04,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,878 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:47:04,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,879 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:47:04,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,880 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:47:04,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:04,880 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:47:04,880 [76] DEBUG index - Current user is: admin +01/18/13 11:47:04,881 [76] DEBUG index - Current theme is: softed +01/18/13 11:47:04,881 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:47:04,881 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:47:04,882 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:47:04,883 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:47:04,885 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:47:04,885 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:47:04,886 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:47:04,886 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:47:04,887 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:47:04,887 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:47:04,887 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:47:04,887 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:47:04,887 [76] DEBUG index - skipping headers +01/18/13 11:47:04,888 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:47:04,889 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:47:04,894 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:47:04,894 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:47:04,894 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:47:04,894 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:47:04,900 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:48')) +01/18/13 11:47:04,903 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:47:45,009 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:47:45,153 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:47:45,154 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:47:45,154 [76] DEBUG index - ****Starting for new session +01/18/13 11:47:45,154 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:47:45,154 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:47:45,155 [76] INFO index - About to take action CalendarAjax +01/18/13 11:47:45,155 [76] DEBUG index - in CalendarAjax +01/18/13 11:47:45,155 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:47:45,155 [76] INFO index - current module is Calendar +01/18/13 11:47:45,205 [76] DEBUG user - Entering Users() method ... +01/18/13 11:47:45,205 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:47:45,205 [76] DEBUG index - in getColumnFields Users +01/18/13 11:47:45,205 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:45,205 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:45,206 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:45,206 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:45,206 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:47:45,206 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:47:45,214 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:47:45,214 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:47:45,215 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:47:45,215 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:47:45,215 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:47:45,216 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:47:45,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,216 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:47:45,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,217 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:47:45,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,217 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:47:45,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,218 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:47:45,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,218 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:47:45,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,219 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:47:45,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,219 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:47:45,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,220 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:47:45,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,221 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:47:45,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,221 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:47:45,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,222 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:47:45,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,222 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:47:45,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,223 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:47:45,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,223 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:47:45,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,224 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:47:45,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,224 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:47:45,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,225 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:47:45,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,225 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:47:45,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,226 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:47:45,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,226 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:47:45,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,227 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:47:45,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,227 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:47:45,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,228 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:47:45,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,228 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:47:45,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,229 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:47:45,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,229 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:47:45,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,230 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:47:45,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,231 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:47:45,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,232 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:47:45,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,232 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:47:45,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,233 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:47:45,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,233 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:47:45,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,234 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:47:45,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,234 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:47:45,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,235 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:47:45,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,236 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:47:45,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,236 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:47:45,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,237 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:47:45,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,238 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:47:45,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,238 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:47:45,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,239 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:47:45,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,240 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:47:45,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,241 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:47:45,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,241 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:47:45,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,242 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:47:45,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,242 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:47:45,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:47:45,243 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:47:45,243 [76] DEBUG index - Current user is: admin +01/18/13 11:47:45,243 [76] DEBUG index - Current theme is: softed +01/18/13 11:47:45,243 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:47:45,243 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:47:45,246 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:47:45,246 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:47:45,248 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:47:45,249 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:47:45,250 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:47:45,251 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:47:45,251 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:47:45,251 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:47:45,251 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:47:45,251 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:47:45,252 [76] DEBUG index - skipping headers +01/18/13 11:47:45,253 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:47:45,253 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:47:45,258 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:47:45,259 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:47:45,259 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:47:45,259 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:47:45,266 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:48')) +01/18/13 11:47:45,268 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:48:25,378 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:48:25,525 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:48:25,525 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:48:25,526 [76] DEBUG index - ****Starting for new session +01/18/13 11:48:25,526 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:48:25,526 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:48:25,526 [76] INFO index - About to take action CalendarAjax +01/18/13 11:48:25,527 [76] DEBUG index - in CalendarAjax +01/18/13 11:48:25,527 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:48:25,527 [76] INFO index - current module is Calendar +01/18/13 11:48:25,580 [76] DEBUG user - Entering Users() method ... +01/18/13 11:48:25,580 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:48:25,580 [76] DEBUG index - in getColumnFields Users +01/18/13 11:48:25,580 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:48:25,581 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:48:25,581 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:48:25,581 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:48:25,581 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:48:25,581 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:48:25,590 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:48:25,590 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:48:25,590 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:48:25,590 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:48:25,591 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:48:25,592 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:48:25,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,592 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:48:25,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,593 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:48:25,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,593 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:48:25,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,594 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:48:25,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,595 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:48:25,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,596 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:48:25,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,596 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:48:25,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,597 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:48:25,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,598 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:48:25,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,598 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:48:25,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,599 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:48:25,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,599 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:48:25,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,600 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:48:25,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,600 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:48:25,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,601 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:48:25,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,601 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:48:25,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,602 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:48:25,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,602 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:48:25,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,603 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:48:25,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,603 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:48:25,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,604 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:48:25,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,604 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:48:25,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,605 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:48:25,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,605 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:48:25,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,606 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:48:25,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,606 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:48:25,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,607 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:48:25,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,607 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:48:25,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,608 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:48:25,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,609 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:48:25,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,609 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:48:25,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,610 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:48:25,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,610 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:48:25,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,611 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:48:25,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,612 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:48:25,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,612 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:48:25,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,613 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:48:25,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,613 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:48:25,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,614 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:48:25,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,614 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:48:25,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,615 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:48:25,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,615 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:48:25,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,616 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:48:25,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,616 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:48:25,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,617 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:48:25,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,617 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:48:25,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:48:25,618 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:48:25,618 [76] DEBUG index - Current user is: admin +01/18/13 11:48:25,618 [76] DEBUG index - Current theme is: softed +01/18/13 11:48:25,618 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:48:25,619 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:48:25,621 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:48:25,621 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:48:25,624 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:48:25,624 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:48:25,625 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:48:25,626 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:48:25,626 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:48:25,626 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:48:25,626 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:48:25,627 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:48:25,627 [76] DEBUG index - skipping headers +01/18/13 11:48:25,628 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:48:25,629 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:48:25,634 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:48:25,634 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:48:25,634 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:48:25,634 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:48:25,639 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:49')) +01/18/13 11:48:25,642 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:49:05,834 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:49:05,965 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:49:05,966 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:49:05,966 [76] DEBUG index - ****Starting for new session +01/18/13 11:49:05,966 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:49:05,966 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:49:05,967 [76] INFO index - About to take action CalendarAjax +01/18/13 11:49:05,967 [76] DEBUG index - in CalendarAjax +01/18/13 11:49:05,967 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:49:05,967 [76] INFO index - current module is Calendar +01/18/13 11:49:06,013 [76] DEBUG user - Entering Users() method ... +01/18/13 11:49:06,013 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:49:06,013 [76] DEBUG index - in getColumnFields Users +01/18/13 11:49:06,014 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:06,014 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:06,014 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:06,014 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:06,014 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:49:06,014 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:49:06,023 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:06,023 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:06,023 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:49:06,024 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:49:06,024 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:49:06,025 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:49:06,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,025 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:49:06,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,026 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:49:06,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,026 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:49:06,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,027 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:49:06,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,027 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:49:06,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,028 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:49:06,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,028 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:49:06,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,029 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:49:06,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,029 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:49:06,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,030 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:49:06,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,030 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:49:06,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,031 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:49:06,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,031 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:49:06,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,032 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:49:06,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,033 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:49:06,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,033 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:49:06,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,034 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:49:06,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,034 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:49:06,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,035 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:49:06,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,035 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:49:06,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,036 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:49:06,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,036 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:49:06,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,037 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:49:06,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,037 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:49:06,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,037 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:49:06,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,038 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:49:06,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,038 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:49:06,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,039 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:49:06,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,039 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:49:06,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,040 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:49:06,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,041 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:49:06,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,041 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:49:06,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,042 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:49:06,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,042 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:49:06,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,043 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:49:06,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,043 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:49:06,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,044 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:49:06,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,044 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:49:06,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,045 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:49:06,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,045 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:49:06,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,046 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:49:06,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,046 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:49:06,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,047 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:49:06,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,047 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:49:06,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,048 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:49:06,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,048 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:49:06,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:06,049 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:49:06,049 [76] DEBUG index - Current user is: admin +01/18/13 11:49:06,049 [76] DEBUG index - Current theme is: softed +01/18/13 11:49:06,049 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:49:06,049 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:49:06,051 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:49:06,051 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:49:06,053 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:49:06,053 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:49:06,055 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:49:06,055 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:49:06,056 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:49:06,056 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:49:06,056 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:49:06,056 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:49:06,056 [76] DEBUG index - skipping headers +01/18/13 11:49:06,057 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:49:06,058 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:49:06,063 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:49:06,063 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:49:06,063 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:49:06,063 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:49:06,067 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:50')) +01/18/13 11:49:06,071 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:49:46,444 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:49:46,591 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:49:46,591 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:49:46,591 [76] DEBUG index - ****Starting for new session +01/18/13 11:49:46,592 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:49:46,592 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:49:46,592 [76] INFO index - About to take action CalendarAjax +01/18/13 11:49:46,593 [76] DEBUG index - in CalendarAjax +01/18/13 11:49:46,593 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:49:46,593 [76] INFO index - current module is Calendar +01/18/13 11:49:46,642 [76] DEBUG user - Entering Users() method ... +01/18/13 11:49:46,642 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:49:46,642 [76] DEBUG index - in getColumnFields Users +01/18/13 11:49:46,643 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:46,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:46,644 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:46,644 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:46,644 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:49:46,644 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:49:46,653 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:49:46,653 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:49:46,654 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:49:46,654 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:49:46,654 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:49:46,655 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:49:46,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,656 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:49:46,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,656 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:49:46,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,657 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:49:46,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,657 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:49:46,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,658 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:49:46,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,658 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:49:46,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,659 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:49:46,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,660 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:49:46,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,660 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:49:46,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,661 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:49:46,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,661 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:49:46,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,662 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:49:46,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,662 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:49:46,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,663 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:49:46,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,663 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:49:46,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,664 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:49:46,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,665 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:49:46,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,665 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:49:46,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,666 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:49:46,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,666 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:49:46,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,667 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:49:46,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,667 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:49:46,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,668 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:49:46,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,668 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:49:46,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,668 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:49:46,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,669 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:49:46,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,670 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:49:46,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,670 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:49:46,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,671 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:49:46,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,671 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:49:46,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,672 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:49:46,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,672 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:49:46,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,673 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:49:46,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,673 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:49:46,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,674 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:49:46,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,674 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:49:46,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,675 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:49:46,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,676 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:49:46,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,677 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:49:46,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,677 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:49:46,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,678 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:49:46,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,679 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:49:46,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,679 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:49:46,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,680 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:49:46,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,680 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:49:46,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,681 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:49:46,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:49:46,681 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:49:46,682 [76] DEBUG index - Current user is: admin +01/18/13 11:49:46,682 [76] DEBUG index - Current theme is: softed +01/18/13 11:49:46,682 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:49:46,682 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:49:46,684 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:49:46,684 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:49:46,686 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:49:46,686 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:49:46,688 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:49:46,688 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:49:46,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:49:46,689 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:49:46,689 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:49:46,689 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:49:46,689 [76] DEBUG index - skipping headers +01/18/13 11:49:46,691 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:49:46,691 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:49:46,697 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:49:46,698 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:49:46,698 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:49:46,698 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:49:46,706 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:50')) +01/18/13 11:49:46,713 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:50:26,821 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:50:26,957 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:50:26,957 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:50:26,957 [76] DEBUG index - ****Starting for new session +01/18/13 11:50:26,958 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:50:26,958 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:50:26,958 [76] INFO index - About to take action CalendarAjax +01/18/13 11:50:26,958 [76] DEBUG index - in CalendarAjax +01/18/13 11:50:26,958 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:50:26,958 [76] INFO index - current module is Calendar +01/18/13 11:50:27,012 [76] DEBUG user - Entering Users() method ... +01/18/13 11:50:27,012 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:50:27,012 [76] DEBUG index - in getColumnFields Users +01/18/13 11:50:27,012 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:50:27,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:50:27,013 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:50:27,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:50:27,013 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:50:27,014 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:50:27,023 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:50:27,023 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:50:27,023 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:50:27,023 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:50:27,024 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:50:27,025 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:50:27,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,025 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:50:27,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,026 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:50:27,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,027 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:50:27,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,027 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:50:27,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,028 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:50:27,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,028 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:50:27,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,029 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:50:27,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,030 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:50:27,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,030 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:50:27,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,031 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:50:27,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,031 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:50:27,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,032 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:50:27,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,032 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:50:27,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,033 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:50:27,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,033 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:50:27,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,034 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:50:27,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,034 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:50:27,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,035 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:50:27,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,036 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:50:27,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,036 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:50:27,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,037 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:50:27,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,038 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:50:27,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,038 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:50:27,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,039 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:50:27,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,039 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:50:27,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,040 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:50:27,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,040 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:50:27,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,041 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:50:27,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,041 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:50:27,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,042 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:50:27,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,042 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:50:27,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,043 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:50:27,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,043 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:50:27,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,044 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:50:27,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,045 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:50:27,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,045 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:50:27,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,046 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:50:27,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,046 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:50:27,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,047 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:50:27,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,048 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:50:27,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,048 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:50:27,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,049 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:50:27,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,049 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:50:27,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,050 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:50:27,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,050 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:50:27,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,051 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:50:27,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:50:27,051 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:50:27,052 [76] DEBUG index - Current user is: admin +01/18/13 11:50:27,052 [76] DEBUG index - Current theme is: softed +01/18/13 11:50:27,052 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:50:27,052 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:50:27,054 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:50:27,054 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:50:27,057 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:50:27,057 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:50:27,059 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:50:27,059 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:50:27,060 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:50:27,060 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:50:27,060 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:50:27,060 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:50:27,060 [76] DEBUG index - skipping headers +01/18/13 11:50:27,061 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:50:27,062 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:50:27,067 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:50:27,068 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:50:27,068 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:50:27,068 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:50:27,073 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:51')) +01/18/13 11:50:27,079 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:51:07,159 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:51:07,289 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:51:07,289 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:51:07,289 [76] DEBUG index - ****Starting for new session +01/18/13 11:51:07,289 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:51:07,290 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:51:07,290 [76] INFO index - About to take action CalendarAjax +01/18/13 11:51:07,290 [76] DEBUG index - in CalendarAjax +01/18/13 11:51:07,290 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:51:07,290 [76] INFO index - current module is Calendar +01/18/13 11:51:07,338 [76] DEBUG user - Entering Users() method ... +01/18/13 11:51:07,338 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:51:07,338 [76] DEBUG index - in getColumnFields Users +01/18/13 11:51:07,338 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:07,338 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:07,339 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:07,339 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:07,339 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:51:07,339 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:51:07,349 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:07,349 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:07,349 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:51:07,349 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:51:07,350 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:51:07,351 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:51:07,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,351 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:51:07,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,352 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:51:07,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,352 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:51:07,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,353 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:51:07,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,353 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:51:07,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,354 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:51:07,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,354 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:51:07,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,355 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:51:07,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,355 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:51:07,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,356 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:51:07,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,356 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:51:07,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,357 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:51:07,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,357 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:51:07,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,358 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:51:07,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,358 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:51:07,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,359 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:51:07,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,359 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:51:07,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,360 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:51:07,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,360 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:51:07,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,361 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:51:07,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,362 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:51:07,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,362 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:51:07,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,363 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:51:07,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,363 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:51:07,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,364 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:51:07,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,364 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:51:07,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,365 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:51:07,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,365 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:51:07,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,366 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:51:07,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,366 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:51:07,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,367 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:51:07,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,367 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:51:07,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,368 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:51:07,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,368 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:51:07,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,369 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:51:07,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,369 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:51:07,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,370 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:51:07,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,370 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:51:07,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,371 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:51:07,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,371 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:51:07,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,372 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:51:07,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,372 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:51:07,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,373 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:51:07,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,373 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:51:07,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,374 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:51:07,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,374 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:51:07,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:07,375 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:51:07,375 [76] DEBUG index - Current user is: admin +01/18/13 11:51:07,375 [76] DEBUG index - Current theme is: softed +01/18/13 11:51:07,376 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:51:07,376 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:51:07,377 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:51:07,378 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:51:07,380 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:51:07,380 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:51:07,381 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:51:07,381 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:51:07,382 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:51:07,382 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:51:07,382 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:51:07,382 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:51:07,382 [76] DEBUG index - skipping headers +01/18/13 11:51:07,383 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:51:07,384 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:51:07,389 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:51:07,389 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:51:07,389 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:51:07,389 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:51:07,393 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:52')) +01/18/13 11:51:07,399 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:51:47,998 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:51:48,145 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:51:48,145 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:51:48,145 [76] DEBUG index - ****Starting for new session +01/18/13 11:51:48,146 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:51:48,146 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:51:48,146 [76] INFO index - About to take action CalendarAjax +01/18/13 11:51:48,146 [76] DEBUG index - in CalendarAjax +01/18/13 11:51:48,146 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:51:48,146 [76] INFO index - current module is Calendar +01/18/13 11:51:48,194 [76] DEBUG user - Entering Users() method ... +01/18/13 11:51:48,195 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:51:48,195 [76] DEBUG index - in getColumnFields Users +01/18/13 11:51:48,195 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:48,195 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:48,195 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:48,195 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:48,196 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:51:48,196 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:51:48,204 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:51:48,205 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:51:48,205 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:51:48,205 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:51:48,206 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:51:48,206 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:51:48,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,207 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:51:48,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,207 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:51:48,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,208 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:51:48,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,208 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:51:48,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,209 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:51:48,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,209 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:51:48,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,210 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:51:48,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,210 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:51:48,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,211 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:51:48,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,212 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:51:48,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,212 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:51:48,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,213 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:51:48,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,213 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:51:48,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,214 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:51:48,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,214 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:51:48,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,215 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:51:48,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,215 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:51:48,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,216 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:51:48,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,216 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:51:48,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,217 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:51:48,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,217 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:51:48,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,218 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:51:48,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,219 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:51:48,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,219 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:51:48,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,220 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:51:48,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,221 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:51:48,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,221 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:51:48,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,222 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:51:48,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,223 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:51:48,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,223 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:51:48,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,224 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:51:48,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,224 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:51:48,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,225 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:51:48,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,226 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:51:48,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,226 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:51:48,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,227 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:51:48,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,227 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:51:48,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,228 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:51:48,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,228 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:51:48,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,229 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:51:48,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,229 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:51:48,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,230 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:51:48,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,231 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:51:48,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,231 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:51:48,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,232 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:51:48,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,233 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:51:48,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:51:48,234 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:51:48,234 [76] DEBUG index - Current user is: admin +01/18/13 11:51:48,235 [76] DEBUG index - Current theme is: softed +01/18/13 11:51:48,235 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:51:48,235 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:51:48,237 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:51:48,237 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:51:48,239 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:51:48,239 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:51:48,241 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:51:48,242 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:51:48,243 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:51:48,243 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:51:48,243 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:51:48,243 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:51:48,243 [76] DEBUG index - skipping headers +01/18/13 11:51:48,244 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:51:48,245 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:51:48,250 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:51:48,251 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:51:48,251 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:51:48,251 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:51:48,257 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:52')) +01/18/13 11:51:48,262 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:52:28,373 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:52:28,515 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:52:28,515 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:52:28,515 [76] DEBUG index - ****Starting for new session +01/18/13 11:52:28,516 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:52:28,516 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:52:28,516 [76] INFO index - About to take action CalendarAjax +01/18/13 11:52:28,516 [76] DEBUG index - in CalendarAjax +01/18/13 11:52:28,517 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:52:28,517 [76] INFO index - current module is Calendar +01/18/13 11:52:28,568 [76] DEBUG user - Entering Users() method ... +01/18/13 11:52:28,569 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:52:28,569 [76] DEBUG index - in getColumnFields Users +01/18/13 11:52:28,569 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:52:28,569 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:52:28,569 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:52:28,570 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:52:28,570 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:52:28,570 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:52:28,581 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:52:28,581 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:52:28,582 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:52:28,582 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:52:28,582 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:52:28,583 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:52:28,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,583 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:52:28,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,584 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:52:28,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,585 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:52:28,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,585 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:52:28,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,586 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:52:28,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,587 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:52:28,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,587 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:52:28,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,588 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:52:28,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,589 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:52:28,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,589 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:52:28,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,590 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:52:28,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,591 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:52:28,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,591 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:52:28,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,592 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:52:28,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,592 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:52:28,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,593 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:52:28,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,594 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:52:28,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,594 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:52:28,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,595 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:52:28,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,596 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:52:28,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,596 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:52:28,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,597 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:52:28,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,597 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:52:28,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,598 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:52:28,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,598 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:52:28,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,599 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:52:28,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,599 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:52:28,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,600 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:52:28,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,600 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:52:28,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,601 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:52:28,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,601 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:52:28,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,602 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:52:28,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,602 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:52:28,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,603 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:52:28,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,603 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:52:28,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,604 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:52:28,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,604 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:52:28,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,605 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:52:28,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,605 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:52:28,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,606 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:52:28,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,607 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:52:28,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,607 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:52:28,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,608 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:52:28,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,608 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:52:28,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,609 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:52:28,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,609 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:52:28,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:52:28,610 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:52:28,610 [76] DEBUG index - Current user is: admin +01/18/13 11:52:28,611 [76] DEBUG index - Current theme is: softed +01/18/13 11:52:28,611 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:52:28,611 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:52:28,613 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:52:28,613 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:52:28,615 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:52:28,615 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:52:28,617 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:52:28,617 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:52:28,617 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:52:28,618 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:52:28,618 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:52:28,618 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:52:28,618 [76] DEBUG index - skipping headers +01/18/13 11:52:28,619 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:52:28,620 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:52:28,625 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:52:28,625 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:52:28,625 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:52:28,626 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:52:28,631 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:53')) +01/18/13 11:52:28,636 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:53:09,095 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:53:09,230 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:53:09,231 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:53:09,231 [76] DEBUG index - ****Starting for new session +01/18/13 11:53:09,231 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:53:09,231 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:53:09,232 [76] INFO index - About to take action CalendarAjax +01/18/13 11:53:09,232 [76] DEBUG index - in CalendarAjax +01/18/13 11:53:09,232 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:53:09,232 [76] INFO index - current module is Calendar +01/18/13 11:53:09,280 [76] DEBUG user - Entering Users() method ... +01/18/13 11:53:09,280 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:53:09,280 [76] DEBUG index - in getColumnFields Users +01/18/13 11:53:09,280 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:09,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:09,281 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:09,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:09,281 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:53:09,281 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:53:09,291 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:09,291 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:09,291 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:53:09,292 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:53:09,292 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:53:09,293 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:53:09,293 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,293 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:53:09,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,294 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:53:09,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,294 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:53:09,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,295 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:53:09,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,295 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:53:09,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,296 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:53:09,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,296 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:53:09,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,297 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:53:09,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,297 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:53:09,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,298 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:53:09,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,299 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:53:09,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,299 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:53:09,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,300 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:53:09,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,300 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:53:09,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,301 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:53:09,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,301 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:53:09,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,302 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:53:09,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,302 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:53:09,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,303 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:53:09,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,303 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:53:09,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,304 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:53:09,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,305 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:53:09,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,305 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:53:09,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,305 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:53:09,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,306 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:53:09,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,306 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:53:09,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,307 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:53:09,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,307 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:53:09,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,308 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:53:09,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,309 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:53:09,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,309 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:53:09,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,310 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:53:09,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,310 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:53:09,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,311 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:53:09,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,311 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:53:09,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,312 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:53:09,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,312 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:53:09,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,313 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:53:09,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,313 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:53:09,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,314 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:53:09,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,315 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:53:09,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,315 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:53:09,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,316 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:53:09,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,316 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:53:09,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,317 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:53:09,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,317 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:53:09,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:09,318 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:53:09,318 [76] DEBUG index - Current user is: admin +01/18/13 11:53:09,318 [76] DEBUG index - Current theme is: softed +01/18/13 11:53:09,319 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:53:09,319 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:53:09,321 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:53:09,321 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:53:09,323 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:53:09,323 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:53:09,325 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:53:09,325 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:53:09,326 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:53:09,326 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:53:09,326 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:53:09,326 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:53:09,327 [76] DEBUG index - skipping headers +01/18/13 11:53:09,328 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:53:09,329 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:53:09,334 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:53:09,334 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:53:09,334 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:53:09,334 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:53:09,340 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:54')) +01/18/13 11:53:09,343 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:53:49,737 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:53:49,884 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:53:49,884 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:53:49,885 [76] DEBUG index - ****Starting for new session +01/18/13 11:53:49,885 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:53:49,885 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:53:49,885 [76] INFO index - About to take action CalendarAjax +01/18/13 11:53:49,885 [76] DEBUG index - in CalendarAjax +01/18/13 11:53:49,886 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:53:49,886 [76] INFO index - current module is Calendar +01/18/13 11:53:49,938 [76] DEBUG user - Entering Users() method ... +01/18/13 11:53:49,938 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:53:49,938 [76] DEBUG index - in getColumnFields Users +01/18/13 11:53:49,938 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:49,939 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:49,939 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:49,939 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:49,939 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:53:49,939 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:53:49,948 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:53:49,948 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:53:49,948 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:53:49,948 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:53:49,949 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:53:49,949 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:53:49,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,950 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:53:49,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,950 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:53:49,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,951 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:53:49,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,952 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:53:49,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,953 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:53:49,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,953 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:53:49,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,954 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:53:49,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,954 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:53:49,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,955 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:53:49,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,955 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:53:49,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,956 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:53:49,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,956 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:53:49,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,957 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:53:49,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,957 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:53:49,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,958 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:53:49,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,958 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:53:49,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,959 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:53:49,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,959 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:53:49,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,960 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:53:49,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,961 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:53:49,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,961 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:53:49,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,962 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:53:49,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,962 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:53:49,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,962 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:53:49,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,963 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:53:49,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,964 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:53:49,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,964 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:53:49,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,965 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:53:49,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,966 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:53:49,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,966 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:53:49,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,967 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:53:49,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,968 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:53:49,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,968 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:53:49,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,969 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:53:49,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,970 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:53:49,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,970 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:53:49,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,971 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:53:49,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,971 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:53:49,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,972 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:53:49,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,973 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:53:49,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,973 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:53:49,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,974 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:53:49,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,974 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:53:49,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,975 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:53:49,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,975 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:53:49,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,976 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:53:49,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:53:49,976 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:53:49,977 [76] DEBUG index - Current user is: admin +01/18/13 11:53:49,977 [76] DEBUG index - Current theme is: softed +01/18/13 11:53:49,977 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:53:49,977 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:53:49,979 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:53:49,980 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:53:49,981 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:53:49,982 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:53:49,983 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:53:49,983 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:53:49,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:53:49,984 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:53:49,984 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:53:49,985 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:53:49,985 [76] DEBUG index - skipping headers +01/18/13 11:53:49,986 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:53:49,987 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:53:49,992 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:53:49,993 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:53:49,993 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:53:49,993 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:53:49,997 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:54')) +01/18/13 11:53:50,000 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:54:30,115 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:54:30,252 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:54:30,252 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:54:30,252 [76] DEBUG index - ****Starting for new session +01/18/13 11:54:30,253 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:54:30,253 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:54:30,253 [76] INFO index - About to take action CalendarAjax +01/18/13 11:54:30,253 [76] DEBUG index - in CalendarAjax +01/18/13 11:54:30,254 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:54:30,254 [76] INFO index - current module is Calendar +01/18/13 11:54:30,305 [76] DEBUG user - Entering Users() method ... +01/18/13 11:54:30,305 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:54:30,305 [76] DEBUG index - in getColumnFields Users +01/18/13 11:54:30,306 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:54:30,306 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:54:30,306 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:54:30,306 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:54:30,306 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:54:30,306 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:54:30,316 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:54:30,316 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:54:30,316 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:54:30,317 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:54:30,317 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:54:30,318 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:54:30,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,318 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:54:30,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,319 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:54:30,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,319 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:54:30,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,320 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:54:30,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,320 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:54:30,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,321 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:54:30,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,321 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:54:30,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,322 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:54:30,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,322 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:54:30,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,323 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:54:30,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,323 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:54:30,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,324 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:54:30,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,325 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:54:30,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,326 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:54:30,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,326 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:54:30,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,327 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:54:30,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,328 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:54:30,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,329 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:54:30,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,329 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:54:30,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,330 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:54:30,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,330 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:54:30,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,331 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:54:30,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,332 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:54:30,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,332 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:54:30,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,332 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:54:30,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,333 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:54:30,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,333 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:54:30,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,334 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:54:30,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,334 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:54:30,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,335 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:54:30,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,335 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:54:30,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,336 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:54:30,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,337 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:54:30,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,337 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:54:30,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,338 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:54:30,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,339 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:54:30,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,339 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:54:30,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,340 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:54:30,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,341 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:54:30,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,341 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:54:30,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,342 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:54:30,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,342 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:54:30,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,343 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:54:30,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,343 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:54:30,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,344 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:54:30,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,344 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:54:30,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:54:30,345 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:54:30,345 [76] DEBUG index - Current user is: admin +01/18/13 11:54:30,345 [76] DEBUG index - Current theme is: softed +01/18/13 11:54:30,345 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:54:30,345 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:54:30,347 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:54:30,347 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:54:30,349 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:54:30,349 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:54:30,351 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:54:30,351 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:54:30,352 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:54:30,352 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:54:30,352 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:54:30,352 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:54:30,352 [76] DEBUG index - skipping headers +01/18/13 11:54:30,353 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:54:30,354 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:54:30,359 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:54:30,359 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:54:30,360 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:54:30,360 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:54:30,365 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:55')) +01/18/13 11:54:30,368 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:55:10,455 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:55:10,590 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:55:10,590 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:55:10,590 [76] DEBUG index - ****Starting for new session +01/18/13 11:55:10,591 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:55:10,591 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:55:10,591 [76] INFO index - About to take action CalendarAjax +01/18/13 11:55:10,591 [76] DEBUG index - in CalendarAjax +01/18/13 11:55:10,591 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:55:10,591 [76] INFO index - current module is Calendar +01/18/13 11:55:10,639 [76] DEBUG user - Entering Users() method ... +01/18/13 11:55:10,640 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:55:10,640 [76] DEBUG index - in getColumnFields Users +01/18/13 11:55:10,640 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:10,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:10,641 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:10,641 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:10,641 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:55:10,641 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:55:10,652 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:10,652 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:10,652 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:55:10,652 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:55:10,653 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:55:10,653 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:55:10,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,654 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:55:10,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,655 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:55:10,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,655 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:55:10,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,656 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:55:10,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,656 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:55:10,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,657 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:55:10,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,657 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:55:10,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,658 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:55:10,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,658 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:55:10,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,659 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:55:10,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,660 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:55:10,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,660 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:55:10,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,661 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:55:10,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,661 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:55:10,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,662 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:55:10,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,662 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:55:10,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,663 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:55:10,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,664 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:55:10,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,664 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:55:10,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,665 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:55:10,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,665 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:55:10,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,666 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:55:10,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,666 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:55:10,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,667 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:55:10,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,667 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:55:10,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,668 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:55:10,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,668 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:55:10,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,669 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:55:10,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,669 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:55:10,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,670 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:55:10,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,671 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:55:10,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,671 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:55:10,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,672 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:55:10,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,672 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:55:10,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,673 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:55:10,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,673 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:55:10,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,674 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:55:10,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,674 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:55:10,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,675 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:55:10,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,675 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:55:10,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,676 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:55:10,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,676 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:55:10,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,677 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:55:10,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,678 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:55:10,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,678 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:55:10,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,679 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:55:10,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:10,679 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:55:10,680 [76] DEBUG index - Current user is: admin +01/18/13 11:55:10,680 [76] DEBUG index - Current theme is: softed +01/18/13 11:55:10,680 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:55:10,680 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:55:10,682 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:55:10,682 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:55:10,684 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:55:10,685 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:55:10,686 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:55:10,686 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:55:10,687 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:55:10,687 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:55:10,687 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:55:10,687 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:55:10,687 [76] DEBUG index - skipping headers +01/18/13 11:55:10,689 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:55:10,689 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:55:10,694 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:55:10,695 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:55:10,695 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:55:10,695 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:55:10,700 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:56')) +01/18/13 11:55:10,704 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:55:51,296 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:55:51,438 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:55:51,438 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:55:51,438 [76] DEBUG index - ****Starting for new session +01/18/13 11:55:51,439 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:55:51,439 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:55:51,439 [76] INFO index - About to take action CalendarAjax +01/18/13 11:55:51,439 [76] DEBUG index - in CalendarAjax +01/18/13 11:55:51,440 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:55:51,440 [76] INFO index - current module is Calendar +01/18/13 11:55:51,488 [76] DEBUG user - Entering Users() method ... +01/18/13 11:55:51,488 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:55:51,488 [76] DEBUG index - in getColumnFields Users +01/18/13 11:55:51,488 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:51,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:51,489 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:51,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:51,489 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:55:51,489 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:55:51,499 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:55:51,499 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:55:51,500 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:55:51,500 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:55:51,500 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:55:51,501 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:55:51,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,501 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:55:51,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,502 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:55:51,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,502 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:55:51,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,503 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:55:51,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,503 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:55:51,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,504 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:55:51,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,504 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:55:51,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,505 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:55:51,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,506 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:55:51,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,506 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:55:51,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,507 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:55:51,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,507 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:55:51,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,508 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:55:51,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,508 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:55:51,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,509 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:55:51,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,509 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:55:51,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,510 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:55:51,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,511 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:55:51,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,511 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:55:51,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,512 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:55:51,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,513 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:55:51,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,513 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:55:51,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,514 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:55:51,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,514 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:55:51,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,514 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:55:51,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,515 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:55:51,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,516 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:55:51,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,516 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:55:51,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,517 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:55:51,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,517 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:55:51,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,518 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:55:51,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,518 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:55:51,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,519 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:55:51,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,519 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:55:51,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,520 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:55:51,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,520 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:55:51,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,521 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:55:51,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,522 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:55:51,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,522 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:55:51,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,523 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:55:51,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,524 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:55:51,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,524 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:55:51,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,525 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:55:51,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,526 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:55:51,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,526 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:55:51,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,527 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:55:51,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:55:51,527 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:55:51,528 [76] DEBUG index - Current user is: admin +01/18/13 11:55:51,528 [76] DEBUG index - Current theme is: softed +01/18/13 11:55:51,528 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:55:51,528 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:55:51,530 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:55:51,530 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:55:51,532 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:55:51,532 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:55:51,533 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:55:51,534 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:55:51,534 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:55:51,535 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:55:51,535 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:55:51,535 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:55:51,535 [76] DEBUG index - skipping headers +01/18/13 11:55:51,536 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:55:51,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:55:51,541 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:55:51,542 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:55:51,542 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:55:51,542 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:55:51,546 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:56')) +01/18/13 11:55:51,551 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:56:31,656 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:56:31,800 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:56:31,800 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:56:31,800 [76] DEBUG index - ****Starting for new session +01/18/13 11:56:31,801 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:56:31,801 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:56:31,801 [76] INFO index - About to take action CalendarAjax +01/18/13 11:56:31,801 [76] DEBUG index - in CalendarAjax +01/18/13 11:56:31,801 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:56:31,801 [76] INFO index - current module is Calendar +01/18/13 11:56:31,853 [76] DEBUG user - Entering Users() method ... +01/18/13 11:56:31,854 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:56:31,854 [76] DEBUG index - in getColumnFields Users +01/18/13 11:56:31,854 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:56:31,854 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:56:31,854 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:56:31,855 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:56:31,855 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:56:31,855 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:56:31,867 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:56:31,868 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:56:31,868 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:56:31,868 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:56:31,869 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:56:31,869 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:56:31,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,870 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:56:31,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,871 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:56:31,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,871 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:56:31,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,872 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:56:31,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,872 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:56:31,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,873 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:56:31,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,874 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:56:31,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,874 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:56:31,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,875 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:56:31,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,875 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:56:31,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,876 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:56:31,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,877 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:56:31,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,877 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:56:31,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,878 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:56:31,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,878 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:56:31,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,879 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:56:31,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,879 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:56:31,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,880 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:56:31,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,880 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:56:31,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,881 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:56:31,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,882 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:56:31,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,882 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:56:31,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,883 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:56:31,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,883 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:56:31,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,884 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:56:31,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,885 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:56:31,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,885 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:56:31,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,885 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:56:31,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,886 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:56:31,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,886 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:56:31,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,887 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:56:31,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,888 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:56:31,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,888 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:56:31,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,889 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:56:31,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,890 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:56:31,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,890 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:56:31,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,891 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:56:31,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,891 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:56:31,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,892 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:56:31,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,892 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:56:31,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,893 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:56:31,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,893 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:56:31,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,894 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:56:31,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,894 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:56:31,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,895 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:56:31,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,895 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:56:31,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:56:31,896 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:56:31,896 [76] DEBUG index - Current user is: admin +01/18/13 11:56:31,896 [76] DEBUG index - Current theme is: softed +01/18/13 11:56:31,896 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:56:31,896 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:56:31,899 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:56:31,899 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:56:31,901 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:56:31,901 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:56:31,903 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:56:31,903 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:56:31,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:56:31,904 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:56:31,904 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:56:31,904 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:56:31,904 [76] DEBUG index - skipping headers +01/18/13 11:56:31,905 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:56:31,905 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:56:31,911 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:56:31,911 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:56:31,912 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:56:31,912 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:56:31,917 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:57')) +01/18/13 11:56:31,919 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:57:12,029 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:57:12,163 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:57:12,163 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:57:12,163 [76] DEBUG index - ****Starting for new session +01/18/13 11:57:12,164 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:57:12,164 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:57:12,164 [76] INFO index - About to take action CalendarAjax +01/18/13 11:57:12,164 [76] DEBUG index - in CalendarAjax +01/18/13 11:57:12,164 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:57:12,165 [76] INFO index - current module is Calendar +01/18/13 11:57:12,212 [76] DEBUG user - Entering Users() method ... +01/18/13 11:57:12,212 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:57:12,212 [76] DEBUG index - in getColumnFields Users +01/18/13 11:57:12,212 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:12,213 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:12,213 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:12,213 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:12,213 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:57:12,213 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:57:12,221 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:12,221 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:12,221 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:57:12,222 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:57:12,222 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:57:12,223 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:57:12,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,223 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:57:12,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,224 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:57:12,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,224 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:57:12,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,225 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:57:12,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,225 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:57:12,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,226 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:57:12,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,226 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:57:12,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,227 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:57:12,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,227 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:57:12,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,228 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:57:12,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,228 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:57:12,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,229 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:57:12,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,229 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:57:12,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,230 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:57:12,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,231 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:57:12,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,231 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:57:12,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,232 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:57:12,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,232 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:57:12,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,233 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:57:12,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,233 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:57:12,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,234 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:57:12,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,234 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:57:12,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,235 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:57:12,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,235 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:57:12,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,236 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:57:12,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,236 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:57:12,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,237 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:57:12,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,237 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:57:12,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,238 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:57:12,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,238 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:57:12,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,239 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:57:12,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,239 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:57:12,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,240 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:57:12,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,240 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:57:12,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,241 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:57:12,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,241 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:57:12,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,242 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:57:12,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,242 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:57:12,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,243 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:57:12,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,243 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:57:12,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,244 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:57:12,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,245 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:57:12,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,245 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:57:12,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,246 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:57:12,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,246 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:57:12,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,247 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:57:12,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:12,247 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:57:12,248 [76] DEBUG index - Current user is: admin +01/18/13 11:57:12,248 [76] DEBUG index - Current theme is: softed +01/18/13 11:57:12,248 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:57:12,248 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:57:12,250 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:57:12,250 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:57:12,252 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:57:12,252 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:57:12,253 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:57:12,254 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:57:12,254 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:57:12,254 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:57:12,254 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:57:12,254 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:57:12,255 [76] DEBUG index - skipping headers +01/18/13 11:57:12,256 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:57:12,256 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:57:12,261 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:57:12,262 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:57:12,262 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:57:12,262 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:57:12,266 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:58')) +01/18/13 11:57:12,269 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:57:52,361 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:57:52,498 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:57:52,498 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:57:52,498 [76] DEBUG index - ****Starting for new session +01/18/13 11:57:52,499 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:57:52,499 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:57:52,499 [76] INFO index - About to take action CalendarAjax +01/18/13 11:57:52,499 [76] DEBUG index - in CalendarAjax +01/18/13 11:57:52,499 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:57:52,500 [76] INFO index - current module is Calendar +01/18/13 11:57:52,551 [76] DEBUG user - Entering Users() method ... +01/18/13 11:57:52,551 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:57:52,551 [76] DEBUG index - in getColumnFields Users +01/18/13 11:57:52,552 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:52,552 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:52,552 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:52,552 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:52,552 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:57:52,553 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:57:52,561 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:57:52,561 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:57:52,561 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:57:52,561 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:57:52,562 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:57:52,562 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:57:52,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,563 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:57:52,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,563 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:57:52,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,564 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:57:52,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,564 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:57:52,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,565 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:57:52,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,566 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:57:52,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,566 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:57:52,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,567 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:57:52,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,567 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:57:52,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,568 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:57:52,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,568 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:57:52,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,569 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:57:52,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,569 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:57:52,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,570 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:57:52,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,570 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:57:52,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,571 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:57:52,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,572 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:57:52,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,572 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:57:52,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,573 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:57:52,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,573 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:57:52,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,574 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:57:52,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,574 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:57:52,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,575 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:57:52,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,575 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:57:52,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,576 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:57:52,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,576 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:57:52,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,577 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:57:52,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,577 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:57:52,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,578 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:57:52,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,579 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:57:52,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,579 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:57:52,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,580 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:57:52,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,581 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:57:52,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,582 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:57:52,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,582 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:57:52,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,583 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:57:52,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,583 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:57:52,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,584 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:57:52,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,584 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:57:52,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,585 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:57:52,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,585 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:57:52,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,586 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:57:52,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,586 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:57:52,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,587 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:57:52,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,587 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:57:52,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,588 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:57:52,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:57:52,589 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:57:52,589 [76] DEBUG index - Current user is: admin +01/18/13 11:57:52,589 [76] DEBUG index - Current theme is: softed +01/18/13 11:57:52,589 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:57:52,589 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:57:52,591 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:57:52,591 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:57:52,594 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:57:52,594 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:57:52,596 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:57:52,596 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:57:52,596 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:57:52,596 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:57:52,597 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:57:52,597 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:57:52,597 [76] DEBUG index - skipping headers +01/18/13 11:57:52,598 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:57:52,598 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:57:52,603 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:57:52,604 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:57:52,604 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:57:52,604 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:57:52,609 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:58')) +01/18/13 11:57:52,612 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:58:32,990 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:58:33,134 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:58:33,134 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:58:33,135 [76] DEBUG index - ****Starting for new session +01/18/13 11:58:33,135 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:58:33,136 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:58:33,136 [76] INFO index - About to take action CalendarAjax +01/18/13 11:58:33,136 [76] DEBUG index - in CalendarAjax +01/18/13 11:58:33,136 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:58:33,136 [76] INFO index - current module is Calendar +01/18/13 11:58:33,189 [76] DEBUG user - Entering Users() method ... +01/18/13 11:58:33,190 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:58:33,190 [76] DEBUG index - in getColumnFields Users +01/18/13 11:58:33,190 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:58:33,191 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:58:33,191 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:58:33,191 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:58:33,191 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:58:33,191 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:58:33,199 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:58:33,199 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:58:33,200 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:58:33,200 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:58:33,200 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:58:33,201 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:58:33,201 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,201 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:58:33,202 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,202 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:58:33,202 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,202 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:58:33,203 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,203 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:58:33,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,204 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:58:33,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,205 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:58:33,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,205 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:58:33,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,206 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:58:33,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,207 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:58:33,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,207 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:58:33,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,208 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:58:33,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,209 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:58:33,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,209 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:58:33,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,210 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:58:33,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,210 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:58:33,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,211 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:58:33,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,211 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:58:33,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,212 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:58:33,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,212 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:58:33,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,213 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:58:33,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,213 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:58:33,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,214 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:58:33,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,215 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:58:33,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,215 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:58:33,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,215 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:58:33,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,216 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:58:33,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,217 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:58:33,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,218 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:58:33,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,218 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:58:33,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,219 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:58:33,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,220 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:58:33,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,220 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:58:33,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,221 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:58:33,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,221 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:58:33,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,222 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:58:33,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,222 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:58:33,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,223 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:58:33,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,223 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:58:33,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,224 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:58:33,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,225 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:58:33,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,225 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:58:33,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,226 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:58:33,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,226 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:58:33,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,227 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:58:33,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,228 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:58:33,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,228 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:58:33,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:58:33,229 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:58:33,230 [76] DEBUG index - Current user is: admin +01/18/13 11:58:33,230 [76] DEBUG index - Current theme is: softed +01/18/13 11:58:33,230 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:58:33,230 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:58:33,232 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:58:33,232 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:58:33,234 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:58:33,234 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:58:33,236 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:58:33,236 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:58:33,237 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:58:33,237 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:58:33,237 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:58:33,237 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:58:33,237 [76] DEBUG index - skipping headers +01/18/13 11:58:33,238 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:58:33,239 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:58:33,244 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:58:33,244 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:58:33,244 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:58:33,244 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:58:33,248 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:59')) +01/18/13 11:58:33,253 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:59:13,347 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:59:13,479 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:59:13,479 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:59:13,480 [76] DEBUG index - ****Starting for new session +01/18/13 11:59:13,480 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:59:13,480 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:59:13,480 [76] INFO index - About to take action CalendarAjax +01/18/13 11:59:13,480 [76] DEBUG index - in CalendarAjax +01/18/13 11:59:13,481 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:59:13,481 [76] INFO index - current module is Calendar +01/18/13 11:59:13,528 [76] DEBUG user - Entering Users() method ... +01/18/13 11:59:13,528 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:59:13,528 [76] DEBUG index - in getColumnFields Users +01/18/13 11:59:13,528 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:13,529 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:13,529 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:13,529 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:13,529 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:59:13,529 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:59:13,538 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:13,538 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:13,539 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:59:13,539 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:59:13,539 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:59:13,540 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:59:13,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,540 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:59:13,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,541 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:59:13,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,542 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:59:13,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,542 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:59:13,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,543 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:59:13,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,543 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:59:13,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,544 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:59:13,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,544 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:59:13,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,545 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:59:13,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,545 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:59:13,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,546 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:59:13,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,546 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:59:13,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,547 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:59:13,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,547 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:59:13,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,548 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:59:13,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,549 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:59:13,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,549 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:59:13,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,550 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:59:13,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,550 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:59:13,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,551 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:59:13,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,551 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:59:13,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,552 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:59:13,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,552 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:59:13,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,552 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:59:13,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,553 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:59:13,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,554 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:59:13,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,554 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:59:13,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,555 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:59:13,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,555 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:59:13,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,556 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:59:13,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,556 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:59:13,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,557 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:59:13,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,557 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:59:13,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,558 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:59:13,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,558 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:59:13,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,559 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:59:13,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,559 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:59:13,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,560 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:59:13,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,560 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:59:13,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,561 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:59:13,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,561 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:59:13,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,562 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:59:13,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,562 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:59:13,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,563 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:59:13,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,563 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:59:13,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,564 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:59:13,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:13,564 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:59:13,565 [76] DEBUG index - Current user is: admin +01/18/13 11:59:13,565 [76] DEBUG index - Current theme is: softed +01/18/13 11:59:13,565 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:59:13,565 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:59:13,567 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:59:13,567 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:59:13,569 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:59:13,569 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:59:13,571 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:59:13,571 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:59:13,571 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:59:13,571 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:59:13,572 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:59:13,572 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:59:13,572 [76] DEBUG index - skipping headers +01/18/13 11:59:13,573 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:59:13,573 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:59:13,578 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:59:13,578 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:59:13,579 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:59:13,579 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:59:13,582 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:00')) +01/18/13 11:59:13,587 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:59:54,088 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:59:54,235 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:59:54,235 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:59:54,235 [76] DEBUG index - ****Starting for new session +01/18/13 11:59:54,236 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:59:54,236 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:59:54,236 [76] INFO index - About to take action CalendarAjax +01/18/13 11:59:54,236 [76] DEBUG index - in CalendarAjax +01/18/13 11:59:54,236 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:59:54,237 [76] INFO index - current module is Calendar +01/18/13 11:59:54,284 [76] DEBUG user - Entering Users() method ... +01/18/13 11:59:54,284 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:59:54,284 [76] DEBUG index - in getColumnFields Users +01/18/13 11:59:54,285 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:54,285 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:54,285 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:54,285 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:54,285 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:59:54,286 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:59:54,295 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:59:54,295 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:59:54,295 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:59:54,295 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:59:54,296 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:59:54,296 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:59:54,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,297 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:59:54,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,298 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:59:54,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,298 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:59:54,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,299 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:59:54,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,299 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:59:54,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,300 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:59:54,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,300 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:59:54,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,301 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:59:54,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,301 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:59:54,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,302 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:59:54,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,302 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:59:54,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,303 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:59:54,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,303 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:59:54,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,304 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:59:54,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,304 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:59:54,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,305 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:59:54,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,306 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:59:54,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,306 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:59:54,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,307 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:59:54,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,307 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:59:54,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,308 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:59:54,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,308 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:59:54,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,309 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:59:54,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,309 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:59:54,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,309 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:59:54,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,310 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:59:54,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,310 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:59:54,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,311 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:59:54,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,311 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:59:54,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,312 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:59:54,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,312 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:59:54,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,313 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:59:54,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,313 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:59:54,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,314 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:59:54,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,315 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:59:54,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,315 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:59:54,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,316 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:59:54,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,316 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:59:54,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,317 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:59:54,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,317 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:59:54,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,318 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:59:54,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,318 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:59:54,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,319 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:59:54,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,319 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:59:54,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,320 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:59:54,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,320 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:59:54,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:59:54,321 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:59:54,321 [76] DEBUG index - Current user is: admin +01/18/13 11:59:54,321 [76] DEBUG index - Current theme is: softed +01/18/13 11:59:54,321 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:59:54,322 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:59:54,323 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:59:54,324 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:59:54,325 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:59:54,326 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:59:54,327 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:59:54,327 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:59:54,328 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:59:54,328 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:59:54,328 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:59:54,328 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:59:54,328 [76] DEBUG index - skipping headers +01/18/13 11:59:54,329 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:59:54,330 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:59:54,335 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:59:54,335 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:59:54,335 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:59:54,335 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:59:54,339 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:00')) +01/18/13 11:59:54,348 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:00:34,462 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:00:34,600 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:00:34,600 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:00:34,600 [76] DEBUG index - ****Starting for new session +01/18/13 12:00:34,601 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:00:34,601 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:00:34,601 [76] INFO index - About to take action CalendarAjax +01/18/13 12:00:34,601 [76] DEBUG index - in CalendarAjax +01/18/13 12:00:34,602 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:00:34,602 [76] INFO index - current module is Calendar +01/18/13 12:00:34,654 [76] DEBUG user - Entering Users() method ... +01/18/13 12:00:34,655 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:00:34,655 [76] DEBUG index - in getColumnFields Users +01/18/13 12:00:34,655 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:00:34,655 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:00:34,655 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:00:34,656 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:00:34,656 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:00:34,656 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:00:34,666 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:00:34,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:00:34,666 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:00:34,666 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:00:34,667 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:00:34,668 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:00:34,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,669 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:00:34,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,669 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:00:34,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,670 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:00:34,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,671 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:00:34,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,671 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:00:34,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,672 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:00:34,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,673 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:00:34,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,673 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:00:34,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,674 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:00:34,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,674 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:00:34,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,675 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:00:34,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,675 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:00:34,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,676 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:00:34,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,676 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:00:34,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,677 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:00:34,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,678 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:00:34,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,678 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:00:34,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,679 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:00:34,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,679 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:00:34,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,680 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:00:34,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,680 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:00:34,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,681 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:00:34,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,682 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:00:34,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,682 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:00:34,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,683 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:00:34,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,683 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:00:34,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,684 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:00:34,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,684 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:00:34,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,685 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:00:34,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,685 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:00:34,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,686 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:00:34,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,686 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:00:34,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,687 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:00:34,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,688 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:00:34,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,688 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:00:34,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,689 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:00:34,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,689 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:00:34,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,690 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:00:34,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,690 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:00:34,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,691 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:00:34,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,691 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:00:34,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,692 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:00:34,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,692 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:00:34,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,693 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:00:34,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,693 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:00:34,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,694 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:00:34,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:00:34,695 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:00:34,695 [76] DEBUG index - Current user is: admin +01/18/13 12:00:34,695 [76] DEBUG index - Current theme is: softed +01/18/13 12:00:34,696 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:00:34,696 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:00:34,698 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:00:34,698 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:00:34,700 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:00:34,700 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:00:34,702 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:00:34,702 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:00:34,703 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:00:34,703 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:00:34,703 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:00:34,703 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:00:34,703 [76] DEBUG index - skipping headers +01/18/13 12:00:34,705 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:00:34,705 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:00:34,710 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:00:34,711 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:00:34,711 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:00:34,711 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:00:34,716 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:01')) +01/18/13 12:00:34,720 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:01:14,838 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:01:14,971 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:01:14,971 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:01:14,971 [76] DEBUG index - ****Starting for new session +01/18/13 12:01:14,972 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:01:14,972 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:01:14,972 [76] INFO index - About to take action CalendarAjax +01/18/13 12:01:14,972 [76] DEBUG index - in CalendarAjax +01/18/13 12:01:14,972 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:01:14,972 [76] INFO index - current module is Calendar +01/18/13 12:01:15,019 [76] DEBUG user - Entering Users() method ... +01/18/13 12:01:15,019 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:01:15,019 [76] DEBUG index - in getColumnFields Users +01/18/13 12:01:15,019 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:15,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:15,020 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:15,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:15,020 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:01:15,020 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:01:15,029 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:15,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:15,030 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:01:15,030 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:01:15,030 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:01:15,031 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:01:15,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,031 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:01:15,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,032 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:01:15,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,032 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:01:15,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,033 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:01:15,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,033 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:01:15,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,034 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:01:15,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,034 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:01:15,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,035 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:01:15,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,035 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:01:15,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,036 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:01:15,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,037 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:01:15,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,037 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:01:15,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,038 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:01:15,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,038 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:01:15,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,039 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:01:15,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,039 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:01:15,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,040 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:01:15,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,040 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:01:15,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,041 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:01:15,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,041 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:01:15,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,042 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:01:15,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,042 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:01:15,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,043 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:01:15,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,043 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:01:15,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,044 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:01:15,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,044 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:01:15,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,045 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:01:15,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,045 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:01:15,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,046 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:01:15,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,046 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:01:15,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,047 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:01:15,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,047 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:01:15,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,048 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:01:15,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,048 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:01:15,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,049 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:01:15,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,049 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:01:15,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,050 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:01:15,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,051 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:01:15,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,051 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:01:15,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,052 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:01:15,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,052 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:01:15,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,053 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:01:15,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,053 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:01:15,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,054 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:01:15,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,054 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:01:15,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,055 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:01:15,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:15,055 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:01:15,056 [76] DEBUG index - Current user is: admin +01/18/13 12:01:15,056 [76] DEBUG index - Current theme is: softed +01/18/13 12:01:15,056 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:01:15,056 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:01:15,058 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:01:15,058 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:01:15,060 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:01:15,060 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:01:15,061 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:01:15,062 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:01:15,062 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:01:15,062 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:01:15,062 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:01:15,062 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:01:15,063 [76] DEBUG index - skipping headers +01/18/13 12:01:15,064 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:01:15,064 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:01:15,069 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:01:15,069 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:01:15,069 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:01:15,069 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:01:15,073 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:02')) +01/18/13 12:01:15,077 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:01:55,181 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:01:55,314 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:01:55,314 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:01:55,314 [76] DEBUG index - ****Starting for new session +01/18/13 12:01:55,315 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:01:55,315 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:01:55,315 [76] INFO index - About to take action CalendarAjax +01/18/13 12:01:55,315 [76] DEBUG index - in CalendarAjax +01/18/13 12:01:55,315 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:01:55,316 [76] INFO index - current module is Calendar +01/18/13 12:01:55,363 [76] DEBUG user - Entering Users() method ... +01/18/13 12:01:55,363 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:01:55,363 [76] DEBUG index - in getColumnFields Users +01/18/13 12:01:55,364 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:55,364 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:55,364 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:55,364 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:55,364 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:01:55,365 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:01:55,373 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:01:55,373 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:01:55,373 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:01:55,373 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:01:55,374 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:01:55,374 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:01:55,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,375 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:01:55,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,375 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:01:55,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,376 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:01:55,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,377 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:01:55,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,377 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:01:55,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,377 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:01:55,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,378 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:01:55,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,379 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:01:55,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,379 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:01:55,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,380 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:01:55,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,380 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:01:55,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,381 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:01:55,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,381 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:01:55,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,382 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:01:55,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,383 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:01:55,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,383 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:01:55,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,384 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:01:55,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,384 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:01:55,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,385 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:01:55,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,385 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:01:55,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,386 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:01:55,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,386 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:01:55,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,387 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:01:55,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,387 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:01:55,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,387 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:01:55,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,388 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:01:55,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,388 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:01:55,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,389 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:01:55,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,390 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:01:55,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,390 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:01:55,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,391 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:01:55,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,391 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:01:55,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,392 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:01:55,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,392 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:01:55,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,393 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:01:55,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,393 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:01:55,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,394 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:01:55,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,394 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:01:55,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,395 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:01:55,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,396 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:01:55,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,396 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:01:55,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,397 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:01:55,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,397 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:01:55,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,398 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:01:55,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,398 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:01:55,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,399 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:01:55,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:01:55,399 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:01:55,400 [76] DEBUG index - Current user is: admin +01/18/13 12:01:55,400 [76] DEBUG index - Current theme is: softed +01/18/13 12:01:55,400 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:01:55,400 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:01:55,402 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:01:55,402 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:01:55,404 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:01:55,404 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:01:55,406 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:01:55,406 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:01:55,407 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:01:55,407 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:01:55,407 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:01:55,407 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:01:55,407 [76] DEBUG index - skipping headers +01/18/13 12:01:55,408 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:01:55,409 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:01:55,414 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:01:55,414 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:01:55,414 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:01:55,414 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:01:55,455 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:02')) +01/18/13 12:01:55,458 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:02:36,087 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:02:36,236 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:02:36,236 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:02:36,236 [76] DEBUG index - ****Starting for new session +01/18/13 12:02:36,237 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:02:36,237 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:02:36,237 [76] INFO index - About to take action CalendarAjax +01/18/13 12:02:36,237 [76] DEBUG index - in CalendarAjax +01/18/13 12:02:36,237 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:02:36,237 [76] INFO index - current module is Calendar +01/18/13 12:02:36,291 [76] DEBUG user - Entering Users() method ... +01/18/13 12:02:36,291 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:02:36,291 [76] DEBUG index - in getColumnFields Users +01/18/13 12:02:36,292 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:02:36,292 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:02:36,292 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:02:36,292 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:02:36,292 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:02:36,292 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:02:36,311 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:02:36,311 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:02:36,311 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:02:36,311 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:02:36,312 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:02:36,312 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:02:36,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,313 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:02:36,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,313 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:02:36,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,314 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:02:36,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,314 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:02:36,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,315 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:02:36,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,315 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:02:36,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,316 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:02:36,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,316 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:02:36,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,317 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:02:36,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,317 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:02:36,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,318 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:02:36,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,319 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:02:36,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,319 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:02:36,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,320 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:02:36,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,320 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:02:36,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,321 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:02:36,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,321 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:02:36,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,322 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:02:36,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,322 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:02:36,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,323 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:02:36,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,323 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:02:36,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,324 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:02:36,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,324 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:02:36,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,325 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:02:36,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,325 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:02:36,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,326 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:02:36,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,326 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:02:36,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,327 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:02:36,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,327 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:02:36,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,328 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:02:36,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,328 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:02:36,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,329 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:02:36,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,329 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:02:36,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,330 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:02:36,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,330 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:02:36,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,331 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:02:36,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,332 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:02:36,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,332 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:02:36,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,333 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:02:36,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,334 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:02:36,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,334 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:02:36,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,335 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:02:36,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,335 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:02:36,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,336 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:02:36,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,336 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:02:36,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,337 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:02:36,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:02:36,337 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:02:36,338 [76] DEBUG index - Current user is: admin +01/18/13 12:02:36,338 [76] DEBUG index - Current theme is: softed +01/18/13 12:02:36,338 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:02:36,338 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:02:36,340 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:02:36,340 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:02:36,342 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:02:36,342 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:02:36,344 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:02:36,345 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:02:36,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:02:36,346 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:02:36,346 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:02:36,346 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:02:36,346 [76] DEBUG index - skipping headers +01/18/13 12:02:36,347 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:02:36,348 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:02:36,352 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:02:36,353 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:02:36,353 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:02:36,353 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:02:36,357 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:03')) +01/18/13 12:02:36,362 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:03:16,638 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:03:16,773 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:03:16,773 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:03:16,773 [76] DEBUG index - ****Starting for new session +01/18/13 12:03:16,774 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:03:16,774 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:03:16,774 [76] INFO index - About to take action CalendarAjax +01/18/13 12:03:16,774 [76] DEBUG index - in CalendarAjax +01/18/13 12:03:16,775 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:03:16,775 [76] INFO index - current module is Calendar +01/18/13 12:03:16,823 [76] DEBUG user - Entering Users() method ... +01/18/13 12:03:16,823 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:03:16,823 [76] DEBUG index - in getColumnFields Users +01/18/13 12:03:16,823 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:16,823 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:16,823 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:16,824 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:16,824 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:03:16,824 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:03:16,832 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:16,832 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:16,832 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:03:16,832 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:03:16,833 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:03:16,834 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:03:16,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,834 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:03:16,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,835 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:03:16,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,835 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:03:16,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,836 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:03:16,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,836 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:03:16,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,837 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:03:16,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,837 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:03:16,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,838 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:03:16,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,838 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:03:16,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,839 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:03:16,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,839 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:03:16,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,840 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:03:16,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,840 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:03:16,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,841 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:03:16,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,841 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:03:16,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,842 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:03:16,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,842 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:03:16,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,843 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:03:16,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,844 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:03:16,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,844 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:03:16,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,845 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:03:16,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,845 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:03:16,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,846 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:03:16,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,846 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:03:16,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,846 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:03:16,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,847 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:03:16,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,847 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:03:16,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,848 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:03:16,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,848 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:03:16,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,849 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:03:16,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,849 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:03:16,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,850 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:03:16,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,850 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:03:16,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,851 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:03:16,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,851 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:03:16,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,852 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:03:16,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,852 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:03:16,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,853 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:03:16,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,854 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:03:16,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,854 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:03:16,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,855 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:03:16,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,855 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:03:16,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,856 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:03:16,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,856 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:03:16,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,857 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:03:16,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,857 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:03:16,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:16,858 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:03:16,858 [76] DEBUG index - Current user is: admin +01/18/13 12:03:16,858 [76] DEBUG index - Current theme is: softed +01/18/13 12:03:16,858 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:03:16,858 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:03:16,860 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:03:16,860 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:03:16,862 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:03:16,862 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:03:16,864 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:03:16,864 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:03:16,865 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:03:16,865 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:03:16,865 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:03:16,865 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:03:16,865 [76] DEBUG index - skipping headers +01/18/13 12:03:16,866 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:03:16,867 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:03:16,872 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:03:16,872 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:03:16,872 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:03:16,872 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:03:16,877 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:04')) +01/18/13 12:03:16,880 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:03:57,308 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:03:57,452 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:03:57,452 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:03:57,452 [76] DEBUG index - ****Starting for new session +01/18/13 12:03:57,453 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:03:57,453 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:03:57,453 [76] INFO index - About to take action CalendarAjax +01/18/13 12:03:57,453 [76] DEBUG index - in CalendarAjax +01/18/13 12:03:57,453 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:03:57,453 [76] INFO index - current module is Calendar +01/18/13 12:03:57,506 [76] DEBUG user - Entering Users() method ... +01/18/13 12:03:57,506 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:03:57,506 [76] DEBUG index - in getColumnFields Users +01/18/13 12:03:57,506 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:57,507 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:57,507 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:57,507 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:57,507 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:03:57,507 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:03:57,516 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:03:57,517 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:03:57,517 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:03:57,517 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:03:57,517 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:03:57,518 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:03:57,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,519 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:03:57,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,519 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:03:57,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,520 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:03:57,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,520 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:03:57,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,521 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:03:57,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,521 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:03:57,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,522 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:03:57,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,523 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:03:57,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,524 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:03:57,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,524 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:03:57,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,525 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:03:57,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,525 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:03:57,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,526 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:03:57,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,526 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:03:57,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,527 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:03:57,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,528 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:03:57,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,528 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:03:57,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,529 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:03:57,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,529 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:03:57,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,530 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:03:57,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,530 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:03:57,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,531 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:03:57,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,532 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:03:57,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,532 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:03:57,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,533 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:03:57,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,533 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:03:57,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,534 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:03:57,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,534 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:03:57,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,535 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:03:57,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,535 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:03:57,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,536 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:03:57,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,536 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:03:57,537 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,537 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:03:57,538 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,538 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:03:57,538 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,538 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:03:57,539 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,539 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:03:57,539 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,539 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:03:57,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,540 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:03:57,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,541 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:03:57,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,541 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:03:57,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,542 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:03:57,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,542 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:03:57,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,543 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:03:57,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,544 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:03:57,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,544 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:03:57,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,545 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:03:57,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:03:57,545 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:03:57,546 [76] DEBUG index - Current user is: admin +01/18/13 12:03:57,546 [76] DEBUG index - Current theme is: softed +01/18/13 12:03:57,546 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:03:57,546 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:03:57,548 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:03:57,548 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:03:57,550 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:03:57,551 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:03:57,552 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:03:57,553 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:03:57,553 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:03:57,553 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:03:57,553 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:03:57,553 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:03:57,554 [76] DEBUG index - skipping headers +01/18/13 12:03:57,555 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:03:57,555 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:03:57,560 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:03:57,561 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:03:57,561 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:03:57,561 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:03:57,567 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:04')) +01/18/13 12:03:57,573 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:04:37,667 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:04:37,804 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:04:37,804 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:04:37,804 [76] DEBUG index - ****Starting for new session +01/18/13 12:04:37,805 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:04:37,805 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:04:37,805 [76] INFO index - About to take action CalendarAjax +01/18/13 12:04:37,805 [76] DEBUG index - in CalendarAjax +01/18/13 12:04:37,806 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:04:37,806 [76] INFO index - current module is Calendar +01/18/13 12:04:37,858 [76] DEBUG user - Entering Users() method ... +01/18/13 12:04:37,859 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:04:37,859 [76] DEBUG index - in getColumnFields Users +01/18/13 12:04:37,859 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:04:37,859 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:04:37,859 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:04:37,860 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:04:37,860 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:04:37,860 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:04:37,869 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:04:37,869 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:04:37,869 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:04:37,869 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:04:37,870 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:04:37,871 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:04:37,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,871 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:04:37,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,872 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:04:37,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,872 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:04:37,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,873 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:04:37,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,873 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:04:37,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,874 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:04:37,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,874 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:04:37,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,875 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:04:37,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,876 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:04:37,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,876 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:04:37,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,877 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:04:37,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,878 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:04:37,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,878 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:04:37,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,879 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:04:37,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,880 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:04:37,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,880 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:04:37,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,881 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:04:37,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,881 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:04:37,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,882 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:04:37,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,882 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:04:37,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,883 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:04:37,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,883 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:04:37,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,884 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:04:37,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,884 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:04:37,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,884 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:04:37,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,885 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:04:37,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,885 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:04:37,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,886 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:04:37,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,886 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:04:37,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,887 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:04:37,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,887 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:04:37,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,888 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:04:37,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,888 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:04:37,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,889 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:04:37,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,890 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:04:37,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,890 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:04:37,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,891 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:04:37,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,892 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:04:37,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,892 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:04:37,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,893 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:04:37,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,893 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:04:37,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,894 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:04:37,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,894 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:04:37,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,895 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:04:37,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,895 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:04:37,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,896 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:04:37,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:04:37,896 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:04:37,897 [76] DEBUG index - Current user is: admin +01/18/13 12:04:37,897 [76] DEBUG index - Current theme is: softed +01/18/13 12:04:37,897 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:04:37,897 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:04:37,899 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:04:37,899 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:04:37,901 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:04:37,902 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:04:37,903 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:04:37,904 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:04:37,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:04:37,904 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:04:37,905 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:04:37,905 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:04:37,905 [76] DEBUG index - skipping headers +01/18/13 12:04:37,906 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:04:37,906 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:04:37,912 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:04:37,913 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:04:37,913 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:04:37,913 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:04:37,916 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:05')) +01/18/13 12:04:37,919 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:05:18,479 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:05:18,610 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:05:18,610 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:05:18,610 [76] DEBUG index - ****Starting for new session +01/18/13 12:05:18,611 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:05:18,611 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:05:18,611 [76] INFO index - About to take action CalendarAjax +01/18/13 12:05:18,611 [76] DEBUG index - in CalendarAjax +01/18/13 12:05:18,611 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:05:18,612 [76] INFO index - current module is Calendar +01/18/13 12:05:18,658 [76] DEBUG user - Entering Users() method ... +01/18/13 12:05:18,658 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:05:18,658 [76] DEBUG index - in getColumnFields Users +01/18/13 12:05:18,659 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:18,659 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:18,659 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:18,659 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:18,659 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:05:18,659 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:05:18,668 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:18,668 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:18,668 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:05:18,669 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:05:18,669 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:05:18,670 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:05:18,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,670 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:05:18,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,671 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:05:18,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,671 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:05:18,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,672 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:05:18,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,672 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:05:18,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,673 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:05:18,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,673 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:05:18,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,674 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:05:18,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,675 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:05:18,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,675 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:05:18,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,676 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:05:18,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,676 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:05:18,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,677 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:05:18,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,677 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:05:18,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,678 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:05:18,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,678 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:05:18,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,679 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:05:18,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,679 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:05:18,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,680 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:05:18,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,680 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:05:18,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,681 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:05:18,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,681 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:05:18,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,682 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:05:18,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,682 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:05:18,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,682 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:05:18,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,683 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:05:18,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,683 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:05:18,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,684 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:05:18,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,684 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:05:18,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,685 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:05:18,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,685 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:05:18,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,686 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:05:18,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,686 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:05:18,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,687 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:05:18,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,687 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:05:18,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,688 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:05:18,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,688 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:05:18,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,689 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:05:18,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,689 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:05:18,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,690 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:05:18,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,690 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:05:18,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,691 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:05:18,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,691 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:05:18,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,692 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:05:18,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,692 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:05:18,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,693 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:05:18,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:18,693 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:05:18,694 [76] DEBUG index - Current user is: admin +01/18/13 12:05:18,694 [76] DEBUG index - Current theme is: softed +01/18/13 12:05:18,694 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:05:18,694 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:05:18,696 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:05:18,696 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:05:18,698 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:05:18,698 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:05:18,700 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:05:18,700 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:05:18,701 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:05:18,701 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:05:18,701 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:05:18,701 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:05:18,701 [76] DEBUG index - skipping headers +01/18/13 12:05:18,702 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:05:18,703 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:05:18,707 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:05:18,708 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:05:18,708 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:05:18,708 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:05:18,712 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:06')) +01/18/13 12:05:18,715 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:05:59,160 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:05:59,302 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:05:59,303 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:05:59,303 [76] DEBUG index - ****Starting for new session +01/18/13 12:05:59,304 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:05:59,304 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:05:59,304 [76] INFO index - About to take action CalendarAjax +01/18/13 12:05:59,304 [76] DEBUG index - in CalendarAjax +01/18/13 12:05:59,304 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:05:59,304 [76] INFO index - current module is Calendar +01/18/13 12:05:59,356 [76] DEBUG user - Entering Users() method ... +01/18/13 12:05:59,356 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:05:59,357 [76] DEBUG index - in getColumnFields Users +01/18/13 12:05:59,357 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:59,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:59,358 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:59,358 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:59,358 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:05:59,358 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:05:59,368 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:05:59,369 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:05:59,369 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:05:59,369 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:05:59,369 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:05:59,370 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:05:59,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,371 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:05:59,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,371 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:05:59,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,372 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:05:59,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,372 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:05:59,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,373 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:05:59,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,373 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:05:59,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,374 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:05:59,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,374 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:05:59,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,375 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:05:59,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,375 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:05:59,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,376 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:05:59,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,376 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:05:59,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,377 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:05:59,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,377 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:05:59,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,378 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:05:59,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,378 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:05:59,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,379 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:05:59,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,379 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:05:59,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,380 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:05:59,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,380 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:05:59,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,381 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:05:59,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,382 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:05:59,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,382 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:05:59,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,382 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:05:59,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,383 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:05:59,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,383 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:05:59,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,384 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:05:59,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,384 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:05:59,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,385 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:05:59,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,385 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:05:59,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,386 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:05:59,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,386 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:05:59,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,387 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:05:59,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,388 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:05:59,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,388 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:05:59,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,389 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:05:59,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,389 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:05:59,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,390 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:05:59,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,390 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:05:59,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,391 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:05:59,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,391 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:05:59,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,392 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:05:59,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,393 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:05:59,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,393 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:05:59,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,394 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:05:59,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,394 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:05:59,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:05:59,395 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:05:59,395 [76] DEBUG index - Current user is: admin +01/18/13 12:05:59,395 [76] DEBUG index - Current theme is: softed +01/18/13 12:05:59,395 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:05:59,395 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:05:59,397 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:05:59,397 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:05:59,399 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:05:59,400 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:05:59,401 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:05:59,401 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:05:59,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:05:59,402 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:05:59,402 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:05:59,402 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:05:59,402 [76] DEBUG index - skipping headers +01/18/13 12:05:59,403 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:05:59,404 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:05:59,409 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:05:59,409 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:05:59,410 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:05:59,410 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:05:59,416 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:06')) +01/18/13 12:05:59,421 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:06:39,784 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:06:39,923 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:06:39,923 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:06:39,923 [76] DEBUG index - ****Starting for new session +01/18/13 12:06:39,924 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:06:39,924 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:06:39,924 [76] INFO index - About to take action CalendarAjax +01/18/13 12:06:39,924 [76] DEBUG index - in CalendarAjax +01/18/13 12:06:39,925 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:06:39,925 [76] INFO index - current module is Calendar +01/18/13 12:06:39,976 [76] DEBUG user - Entering Users() method ... +01/18/13 12:06:39,976 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:06:39,976 [76] DEBUG index - in getColumnFields Users +01/18/13 12:06:39,976 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:06:39,976 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:06:39,976 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:06:39,977 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:06:39,977 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:06:39,977 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:06:39,985 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:06:39,986 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:06:39,986 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:06:39,986 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:06:39,986 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:06:39,987 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:06:39,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,987 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:06:39,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,988 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:06:39,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,989 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:06:39,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,990 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:06:39,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,990 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:06:39,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,991 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:06:39,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,991 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:06:39,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,992 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:06:39,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,992 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:06:39,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,993 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:06:39,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,994 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:06:39,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,994 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:06:39,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,995 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:06:39,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,996 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:06:39,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,996 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:06:39,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,997 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:06:39,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,997 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:06:39,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,998 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:06:39,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,999 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:06:39,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,999 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:06:39,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:39,1000 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:06:40,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,000 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:06:40,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,001 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:06:40,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,001 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:06:40,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,002 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:06:40,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,002 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:06:40,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,003 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:06:40,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,003 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:06:40,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,004 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:06:40,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,004 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:06:40,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,005 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:06:40,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,005 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:06:40,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,006 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:06:40,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,007 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:06:40,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,007 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:06:40,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,008 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:06:40,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,009 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:06:40,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,009 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:06:40,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,010 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:06:40,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,011 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:06:40,011 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,011 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:06:40,011 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,012 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:06:40,012 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,012 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:06:40,013 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,013 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:06:40,013 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,013 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:06:40,014 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,014 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:06:40,015 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:06:40,015 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:06:40,015 [76] DEBUG index - Current user is: admin +01/18/13 12:06:40,015 [76] DEBUG index - Current theme is: softed +01/18/13 12:06:40,015 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:06:40,015 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:06:40,017 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:06:40,018 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:06:40,019 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:06:40,020 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:06:40,021 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:06:40,021 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:06:40,022 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:06:40,022 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:06:40,022 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:06:40,022 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:06:40,022 [76] DEBUG index - skipping headers +01/18/13 12:06:40,023 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:06:40,024 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:06:40,029 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:06:40,029 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:06:40,029 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:06:40,029 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:06:40,033 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:07')) +01/18/13 12:06:40,036 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:07:20,131 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:07:20,274 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:07:20,274 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:07:20,274 [76] DEBUG index - ****Starting for new session +01/18/13 12:07:20,275 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:07:20,275 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:07:20,275 [76] INFO index - About to take action CalendarAjax +01/18/13 12:07:20,275 [76] DEBUG index - in CalendarAjax +01/18/13 12:07:20,275 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:07:20,275 [76] INFO index - current module is Calendar +01/18/13 12:07:20,325 [76] DEBUG user - Entering Users() method ... +01/18/13 12:07:20,325 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:07:20,325 [76] DEBUG index - in getColumnFields Users +01/18/13 12:07:20,325 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:07:20,325 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:07:20,325 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:07:20,326 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:07:20,326 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:07:20,326 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:07:20,337 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:07:20,337 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:07:20,337 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:07:20,338 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:07:20,338 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:07:20,339 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:07:20,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,339 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:07:20,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,340 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:07:20,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,340 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:07:20,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,341 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:07:20,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,342 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:07:20,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,342 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:07:20,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,343 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:07:20,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,343 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:07:20,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,344 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:07:20,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,344 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:07:20,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,345 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:07:20,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,345 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:07:20,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,346 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:07:20,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,346 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:07:20,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,347 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:07:20,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,348 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:07:20,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,348 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:07:20,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,349 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:07:20,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,349 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:07:20,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,350 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:07:20,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,350 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:07:20,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,351 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:07:20,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,351 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:07:20,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,351 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:07:20,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,352 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:07:20,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,352 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:07:20,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,353 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:07:20,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,353 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:07:20,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,354 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:07:20,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,354 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:07:20,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,355 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:07:20,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,355 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:07:20,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,356 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:07:20,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,356 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:07:20,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,357 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:07:20,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,357 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:07:20,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,358 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:07:20,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,359 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:07:20,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,359 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:07:20,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,360 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:07:20,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,360 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:07:20,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,361 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:07:20,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,361 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:07:20,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,362 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:07:20,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,362 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:07:20,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,363 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:07:20,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:07:20,363 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:07:20,364 [76] DEBUG index - Current user is: admin +01/18/13 12:07:20,364 [76] DEBUG index - Current theme is: softed +01/18/13 12:07:20,364 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:07:20,364 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:07:20,366 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:07:20,366 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:07:20,368 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:07:20,368 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:07:20,370 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:07:20,370 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:07:20,371 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:07:20,371 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:07:20,371 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:07:20,371 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:07:20,371 [76] DEBUG index - skipping headers +01/18/13 12:07:20,372 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:07:20,373 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:07:20,378 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:07:20,379 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:07:20,379 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:07:20,379 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:07:20,383 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:08')) +01/18/13 12:07:20,387 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:08:00,508 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:08:00,637 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:08:00,637 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:08:00,637 [76] DEBUG index - ****Starting for new session +01/18/13 12:08:00,638 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:08:00,638 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:08:00,638 [76] INFO index - About to take action CalendarAjax +01/18/13 12:08:00,638 [76] DEBUG index - in CalendarAjax +01/18/13 12:08:00,638 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:08:00,638 [76] INFO index - current module is Calendar +01/18/13 12:08:00,684 [76] DEBUG user - Entering Users() method ... +01/18/13 12:08:00,685 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:08:00,685 [76] DEBUG index - in getColumnFields Users +01/18/13 12:08:00,685 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:00,685 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:00,685 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:00,685 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:00,685 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:08:00,686 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:08:00,696 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:00,696 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:00,696 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:08:00,696 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:08:00,696 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:08:00,697 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:08:00,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,698 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:08:00,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,698 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:08:00,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,699 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:08:00,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,699 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:08:00,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,700 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:08:00,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,700 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:08:00,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,701 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:08:00,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,701 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:08:00,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,702 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:08:00,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,702 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:08:00,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,703 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:08:00,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,703 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:08:00,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,704 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:08:00,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,704 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:08:00,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,705 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:08:00,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,705 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:08:00,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,706 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:08:00,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,707 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:08:00,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,707 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:08:00,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,708 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:08:00,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,708 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:08:00,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,709 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:08:00,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,709 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:08:00,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,709 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:08:00,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,710 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:08:00,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,711 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:08:00,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,711 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:08:00,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,712 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:08:00,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,712 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:08:00,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,713 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:08:00,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,713 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:08:00,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,714 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:08:00,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,714 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:08:00,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,715 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:08:00,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,715 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:08:00,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,716 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:08:00,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,716 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:08:00,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,717 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:08:00,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,717 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:08:00,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,718 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:08:00,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,718 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:08:00,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,719 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:08:00,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,719 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:08:00,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,720 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:08:00,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,720 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:08:00,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,721 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:08:00,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:00,721 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:08:00,721 [76] DEBUG index - Current user is: admin +01/18/13 12:08:00,721 [76] DEBUG index - Current theme is: softed +01/18/13 12:08:00,722 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:08:00,722 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:08:00,723 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:08:00,724 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:08:00,726 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:08:00,726 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:08:00,727 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:08:00,728 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:08:00,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:08:00,728 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:08:00,728 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:08:00,728 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:08:00,729 [76] DEBUG index - skipping headers +01/18/13 12:08:00,730 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:08:00,730 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:08:00,736 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:08:00,736 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:08:00,737 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:08:00,737 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:08:00,743 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:09')) +01/18/13 12:08:00,746 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:08:40,832 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:08:40,962 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:08:40,962 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:08:40,962 [76] DEBUG index - ****Starting for new session +01/18/13 12:08:40,963 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:08:40,963 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:08:40,963 [76] INFO index - About to take action CalendarAjax +01/18/13 12:08:40,963 [76] DEBUG index - in CalendarAjax +01/18/13 12:08:40,964 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:08:40,964 [76] INFO index - current module is Calendar +01/18/13 12:08:41,010 [76] DEBUG user - Entering Users() method ... +01/18/13 12:08:41,010 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:08:41,010 [76] DEBUG index - in getColumnFields Users +01/18/13 12:08:41,010 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:41,010 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:41,011 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:41,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:41,011 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:08:41,011 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:08:41,019 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:08:41,019 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:08:41,019 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:08:41,020 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:08:41,020 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:08:41,021 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:08:41,021 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,021 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:08:41,022 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,022 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:08:41,022 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,022 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:08:41,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,023 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:08:41,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,023 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:08:41,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,024 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:08:41,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,024 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:08:41,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,025 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:08:41,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,025 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:08:41,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,026 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:08:41,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,026 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:08:41,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,027 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:08:41,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,027 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:08:41,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,028 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:08:41,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,028 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:08:41,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,029 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:08:41,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,029 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:08:41,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,030 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:08:41,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,030 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:08:41,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,031 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:08:41,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,031 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:08:41,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,032 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:08:41,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,032 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:08:41,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,032 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:08:41,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,033 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:08:41,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,033 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:08:41,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,034 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:08:41,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,034 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:08:41,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,035 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:08:41,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,035 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:08:41,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,036 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:08:41,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,037 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:08:41,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,037 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:08:41,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,038 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:08:41,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,038 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:08:41,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,039 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:08:41,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,039 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:08:41,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,040 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:08:41,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,040 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:08:41,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,041 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:08:41,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,041 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:08:41,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,042 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:08:41,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,042 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:08:41,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,043 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:08:41,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,043 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:08:41,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,044 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:08:41,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:08:41,044 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:08:41,045 [76] DEBUG index - Current user is: admin +01/18/13 12:08:41,045 [76] DEBUG index - Current theme is: softed +01/18/13 12:08:41,045 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:08:41,045 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:08:41,047 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:08:41,047 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:08:41,049 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:08:41,049 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:08:41,050 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:08:41,051 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:08:41,051 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:08:41,051 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:08:41,051 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:08:41,052 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:08:41,052 [76] DEBUG index - skipping headers +01/18/13 12:08:41,053 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:08:41,053 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:08:41,058 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:08:41,058 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:08:41,058 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:08:41,058 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:08:41,062 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:09')) +01/18/13 12:08:41,065 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:09:21,177 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:09:21,323 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:09:21,323 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:09:21,323 [76] DEBUG index - ****Starting for new session +01/18/13 12:09:21,324 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:09:21,324 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:09:21,324 [76] INFO index - About to take action CalendarAjax +01/18/13 12:09:21,324 [76] DEBUG index - in CalendarAjax +01/18/13 12:09:21,325 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:09:21,325 [76] INFO index - current module is Calendar +01/18/13 12:09:21,381 [76] DEBUG user - Entering Users() method ... +01/18/13 12:09:21,381 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:09:21,381 [76] DEBUG index - in getColumnFields Users +01/18/13 12:09:21,381 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:09:21,381 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:09:21,382 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:09:21,382 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:09:21,382 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:09:21,382 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:09:21,394 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:09:21,394 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:09:21,394 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:09:21,394 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:09:21,395 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:09:21,395 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:09:21,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,396 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:09:21,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,397 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:09:21,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,397 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:09:21,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,398 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:09:21,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,398 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:09:21,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,399 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:09:21,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,400 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:09:21,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,400 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:09:21,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,401 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:09:21,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,401 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:09:21,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,402 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:09:21,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,402 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:09:21,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,403 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:09:21,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,403 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:09:21,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,404 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:09:21,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,405 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:09:21,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,405 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:09:21,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,406 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:09:21,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,406 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:09:21,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,407 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:09:21,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,407 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:09:21,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,408 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:09:21,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,408 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:09:21,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,409 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:09:21,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,409 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:09:21,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,410 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:09:21,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,411 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:09:21,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,411 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:09:21,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,412 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:09:21,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,412 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:09:21,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,413 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:09:21,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,413 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:09:21,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,414 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:09:21,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,415 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:09:21,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,415 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:09:21,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,416 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:09:21,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,417 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:09:21,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,417 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:09:21,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,418 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:09:21,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,419 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:09:21,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,419 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:09:21,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,420 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:09:21,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,420 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:09:21,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,421 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:09:21,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,421 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:09:21,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,422 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:09:21,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:09:21,422 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:09:21,423 [76] DEBUG index - Current user is: admin +01/18/13 12:09:21,423 [76] DEBUG index - Current theme is: softed +01/18/13 12:09:21,423 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:09:21,423 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:09:21,425 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:09:21,426 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:09:21,427 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:09:21,428 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:09:21,429 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:09:21,429 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:09:21,430 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:09:21,430 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:09:21,430 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:09:21,430 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:09:21,430 [76] DEBUG index - skipping headers +01/18/13 12:09:21,431 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:09:21,432 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:09:21,437 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:09:21,438 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:09:21,438 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:09:21,438 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:09:21,442 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:10')) +01/18/13 12:09:21,446 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:10:01,550 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:10:01,683 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:10:01,683 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:10:01,684 [76] DEBUG index - ****Starting for new session +01/18/13 12:10:01,684 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:10:01,684 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:10:01,684 [76] INFO index - About to take action CalendarAjax +01/18/13 12:10:01,684 [76] DEBUG index - in CalendarAjax +01/18/13 12:10:01,685 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:10:01,685 [76] INFO index - current module is Calendar +01/18/13 12:10:01,734 [76] DEBUG user - Entering Users() method ... +01/18/13 12:10:01,734 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:10:01,734 [76] DEBUG index - in getColumnFields Users +01/18/13 12:10:01,735 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:01,735 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:01,735 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:01,735 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:01,735 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:10:01,735 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:10:01,743 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:01,743 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:01,744 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:10:01,744 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:10:01,744 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:10:01,745 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:10:01,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,745 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:10:01,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,746 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:10:01,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,747 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:10:01,747 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,747 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:10:01,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,748 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:10:01,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,748 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:10:01,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,749 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:10:01,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,749 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:10:01,750 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,750 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:10:01,750 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,750 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:10:01,751 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,751 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:10:01,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,752 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:10:01,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,752 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:10:01,753 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,753 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:10:01,753 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,753 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:10:01,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,754 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:10:01,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,754 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:10:01,755 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,755 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:10:01,755 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,756 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:10:01,756 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,756 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:10:01,757 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,757 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:10:01,757 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,757 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:10:01,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,758 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:10:01,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,758 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:10:01,758 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,759 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:10:01,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,759 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:10:01,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,760 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:10:01,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,760 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:10:01,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,761 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:10:01,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,761 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:10:01,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,762 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:10:01,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,763 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:10:01,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,763 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:10:01,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,764 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:10:01,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,764 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:10:01,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,765 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:10:01,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,765 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:10:01,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,766 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:10:01,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,766 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:10:01,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,767 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:10:01,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,767 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:10:01,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,768 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:10:01,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,768 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:10:01,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,769 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:10:01,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,769 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:10:01,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,770 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:10:01,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:01,770 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:10:01,771 [76] DEBUG index - Current user is: admin +01/18/13 12:10:01,771 [76] DEBUG index - Current theme is: softed +01/18/13 12:10:01,771 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:10:01,771 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:10:01,773 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:10:01,773 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:10:01,775 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:10:01,775 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:10:01,777 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:10:01,777 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:10:01,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:10:01,778 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:10:01,778 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:10:01,778 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:10:01,778 [76] DEBUG index - skipping headers +01/18/13 12:10:01,779 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:10:01,780 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:10:01,785 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:10:01,786 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:10:01,786 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:10:01,786 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:10:01,793 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:11')) +01/18/13 12:10:01,798 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:10:41,902 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:10:42,034 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:10:42,034 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:10:42,034 [76] DEBUG index - ****Starting for new session +01/18/13 12:10:42,035 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:10:42,035 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:10:42,035 [76] INFO index - About to take action CalendarAjax +01/18/13 12:10:42,035 [76] DEBUG index - in CalendarAjax +01/18/13 12:10:42,035 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:10:42,035 [76] INFO index - current module is Calendar +01/18/13 12:10:42,084 [76] DEBUG user - Entering Users() method ... +01/18/13 12:10:42,085 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:10:42,085 [76] DEBUG index - in getColumnFields Users +01/18/13 12:10:42,085 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:42,085 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:42,085 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:42,085 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:42,086 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:10:42,086 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:10:42,094 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:10:42,094 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:10:42,094 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:10:42,094 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:10:42,095 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:10:42,095 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:10:42,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,096 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:10:42,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,097 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:10:42,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,097 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:10:42,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,098 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:10:42,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,098 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:10:42,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,099 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:10:42,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,099 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:10:42,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,100 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:10:42,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,101 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:10:42,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,101 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:10:42,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,102 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:10:42,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,102 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:10:42,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,103 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:10:42,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,103 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:10:42,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,104 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:10:42,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,104 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:10:42,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,105 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:10:42,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,105 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:10:42,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,106 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:10:42,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,106 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:10:42,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,107 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:10:42,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,107 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:10:42,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,108 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:10:42,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,108 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:10:42,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,109 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:10:42,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,109 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:10:42,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,110 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:10:42,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,110 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:10:42,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,111 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:10:42,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,111 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:10:42,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,112 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:10:42,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,112 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:10:42,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,113 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:10:42,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,113 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:10:42,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,114 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:10:42,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,114 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:10:42,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,115 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:10:42,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,115 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:10:42,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,116 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:10:42,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,116 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:10:42,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,117 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:10:42,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,117 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:10:42,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,118 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:10:42,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,118 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:10:42,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,119 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:10:42,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,119 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:10:42,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:10:42,120 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:10:42,120 [76] DEBUG index - Current user is: admin +01/18/13 12:10:42,120 [76] DEBUG index - Current theme is: softed +01/18/13 12:10:42,120 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:10:42,120 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:10:42,122 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:10:42,122 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:10:42,125 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:10:42,125 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:10:42,126 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:10:42,126 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:10:42,127 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:10:42,127 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:10:42,127 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:10:42,127 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:10:42,127 [76] DEBUG index - skipping headers +01/18/13 12:10:42,129 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:10:42,129 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:10:42,134 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:10:42,134 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:10:42,135 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:10:42,135 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:10:42,141 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:11')) +01/18/13 12:10:42,145 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:11:22,239 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:11:22,381 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:11:22,381 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:11:22,381 [76] DEBUG index - ****Starting for new session +01/18/13 12:11:22,382 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:11:22,382 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:11:22,382 [76] INFO index - About to take action CalendarAjax +01/18/13 12:11:22,382 [76] DEBUG index - in CalendarAjax +01/18/13 12:11:22,382 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:11:22,383 [76] INFO index - current module is Calendar +01/18/13 12:11:22,433 [76] DEBUG user - Entering Users() method ... +01/18/13 12:11:22,434 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:11:22,434 [76] DEBUG index - in getColumnFields Users +01/18/13 12:11:22,434 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:11:22,434 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:11:22,434 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:11:22,434 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:11:22,435 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:11:22,435 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:11:22,443 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:11:22,443 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:11:22,444 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:11:22,444 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:11:22,444 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:11:22,445 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:11:22,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,445 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:11:22,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,446 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:11:22,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,446 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:11:22,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,447 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:11:22,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,447 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:11:22,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,448 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:11:22,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,448 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:11:22,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,449 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:11:22,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,450 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:11:22,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,450 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:11:22,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,451 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:11:22,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,451 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:11:22,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,452 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:11:22,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,452 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:11:22,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,453 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:11:22,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,453 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:11:22,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,454 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:11:22,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,454 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:11:22,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,455 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:11:22,456 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,456 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:11:22,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,457 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:11:22,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,457 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:11:22,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,458 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:11:22,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,458 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:11:22,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,458 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:11:22,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,459 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:11:22,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,459 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:11:22,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,460 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:11:22,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,460 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:11:22,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,461 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:11:22,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,462 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:11:22,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,462 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:11:22,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,463 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:11:22,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,464 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:11:22,464 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,464 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:11:22,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,465 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:11:22,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,465 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:11:22,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,466 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:11:22,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,466 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:11:22,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,467 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:11:22,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,467 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:11:22,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,468 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:11:22,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,469 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:11:22,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,469 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:11:22,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,470 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:11:22,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,471 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:11:22,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:11:22,471 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:11:22,472 [76] DEBUG index - Current user is: admin +01/18/13 12:11:22,472 [76] DEBUG index - Current theme is: softed +01/18/13 12:11:22,472 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:11:22,472 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:11:22,474 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:11:22,474 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:11:22,476 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:11:22,476 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:11:22,478 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:11:22,478 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:11:22,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:11:22,479 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:11:22,479 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:11:22,479 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:11:22,479 [76] DEBUG index - skipping headers +01/18/13 12:11:22,480 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:11:22,481 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:11:22,486 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:11:22,486 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:11:22,487 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:11:22,487 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:11:22,491 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:12')) +01/18/13 12:11:22,494 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:12:02,608 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:12:02,741 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:12:02,741 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:12:02,741 [76] DEBUG index - ****Starting for new session +01/18/13 12:12:02,742 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:12:02,742 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:12:02,742 [76] INFO index - About to take action CalendarAjax +01/18/13 12:12:02,742 [76] DEBUG index - in CalendarAjax +01/18/13 12:12:02,742 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:12:02,742 [76] INFO index - current module is Calendar +01/18/13 12:12:02,790 [76] DEBUG user - Entering Users() method ... +01/18/13 12:12:02,790 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:12:02,790 [76] DEBUG index - in getColumnFields Users +01/18/13 12:12:02,790 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:02,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:02,791 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:02,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:02,791 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:12:02,791 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:12:02,799 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:02,800 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:02,800 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:12:02,800 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:12:02,800 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:12:02,801 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:12:02,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,801 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:12:02,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,802 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:12:02,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,803 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:12:02,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,803 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:12:02,803 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,804 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:12:02,804 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,804 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:12:02,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,805 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:12:02,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,805 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:12:02,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,806 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:12:02,806 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,806 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:12:02,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,807 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:12:02,807 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,807 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:12:02,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,808 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:12:02,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,808 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:12:02,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,809 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:12:02,809 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,809 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:12:02,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,810 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:12:02,810 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,810 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:12:02,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,811 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:12:02,811 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,811 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:12:02,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,812 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:12:02,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,812 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:12:02,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,813 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:12:02,813 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,813 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:12:02,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,814 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:12:02,814 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,814 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:12:02,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,815 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:12:02,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,815 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:12:02,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,816 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:12:02,816 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,817 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:12:02,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,817 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:12:02,817 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,818 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:12:02,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,818 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:12:02,818 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,819 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:12:02,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,819 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:12:02,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,820 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:12:02,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,820 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:12:02,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,821 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:12:02,821 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,821 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:12:02,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,822 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:12:02,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,822 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:12:02,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,823 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:12:02,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,823 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:12:02,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,824 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:12:02,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,824 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:12:02,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,825 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:12:02,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:02,825 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:12:02,826 [76] DEBUG index - Current user is: admin +01/18/13 12:12:02,826 [76] DEBUG index - Current theme is: softed +01/18/13 12:12:02,826 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:12:02,826 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:12:02,828 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:12:02,828 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:12:02,830 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:12:02,830 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:12:02,832 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:12:02,832 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:12:02,832 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:12:02,832 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:12:02,833 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:12:02,833 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:12:02,833 [76] DEBUG index - skipping headers +01/18/13 12:12:02,834 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:12:02,834 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:12:02,839 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:12:02,840 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:12:02,840 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:12:02,840 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:12:02,844 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:13')) +01/18/13 12:12:02,847 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:12:43,196 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:12:43,322 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:12:43,322 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:12:43,323 [76] DEBUG index - ****Starting for new session +01/18/13 12:12:43,323 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:12:43,323 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:12:43,323 [76] INFO index - About to take action CalendarAjax +01/18/13 12:12:43,323 [76] DEBUG index - in CalendarAjax +01/18/13 12:12:43,324 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:12:43,324 [76] INFO index - current module is Calendar +01/18/13 12:12:43,370 [76] DEBUG user - Entering Users() method ... +01/18/13 12:12:43,371 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:12:43,371 [76] DEBUG index - in getColumnFields Users +01/18/13 12:12:43,371 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:43,371 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:43,371 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:43,372 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:43,372 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:12:43,372 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:12:43,380 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:12:43,380 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:12:43,380 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:12:43,380 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:12:43,381 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:12:43,381 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:12:43,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,382 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:12:43,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,383 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:12:43,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,383 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:12:43,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,384 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:12:43,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,384 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:12:43,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,385 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:12:43,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,385 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:12:43,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,386 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:12:43,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,386 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:12:43,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,387 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:12:43,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,387 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:12:43,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,388 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:12:43,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,388 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:12:43,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,389 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:12:43,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,389 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:12:43,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,390 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:12:43,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,390 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:12:43,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,391 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:12:43,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,391 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:12:43,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,392 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:12:43,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,392 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:12:43,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,393 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:12:43,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,393 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:12:43,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,393 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:12:43,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,394 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:12:43,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,395 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:12:43,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,395 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:12:43,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,396 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:12:43,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,396 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:12:43,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,397 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:12:43,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,397 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:12:43,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,398 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:12:43,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,398 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:12:43,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,399 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:12:43,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,399 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:12:43,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,400 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:12:43,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,400 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:12:43,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,401 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:12:43,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,401 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:12:43,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,402 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:12:43,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,402 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:12:43,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,403 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:12:43,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,403 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:12:43,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,404 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:12:43,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,404 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:12:43,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,405 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:12:43,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:12:43,405 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:12:43,406 [76] DEBUG index - Current user is: admin +01/18/13 12:12:43,406 [76] DEBUG index - Current theme is: softed +01/18/13 12:12:43,406 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:12:43,406 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:12:43,408 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:12:43,408 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:12:43,410 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:12:43,410 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:12:43,412 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:12:43,412 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:12:43,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:12:43,413 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:12:43,413 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:12:43,413 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:12:43,413 [76] DEBUG index - skipping headers +01/18/13 12:12:43,414 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:12:43,415 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:12:43,420 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:12:43,421 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:12:43,421 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:12:43,421 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:12:43,427 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:13')) +01/18/13 12:12:43,431 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:13:23,780 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:13:23,910 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:13:23,910 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:13:23,911 [76] DEBUG index - ****Starting for new session +01/18/13 12:13:23,911 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:13:23,911 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:13:23,911 [76] INFO index - About to take action CalendarAjax +01/18/13 12:13:23,911 [76] DEBUG index - in CalendarAjax +01/18/13 12:13:23,912 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:13:23,912 [76] INFO index - current module is Calendar +01/18/13 12:13:23,958 [76] DEBUG user - Entering Users() method ... +01/18/13 12:13:23,958 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:13:23,958 [76] DEBUG index - in getColumnFields Users +01/18/13 12:13:23,958 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:13:23,959 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:13:23,959 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:13:23,959 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:13:23,959 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:13:23,960 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:13:23,970 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:13:23,970 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:13:23,970 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:13:23,970 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:13:23,971 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:13:23,971 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:13:23,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,972 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:13:23,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,973 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:13:23,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,973 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:13:23,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,974 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:13:23,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,974 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:13:23,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,975 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:13:23,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,975 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:13:23,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,976 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:13:23,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,976 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:13:23,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,977 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:13:23,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,977 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:13:23,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,978 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:13:23,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,979 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:13:23,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,979 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:13:23,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,980 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:13:23,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,980 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:13:23,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,981 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:13:23,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,981 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:13:23,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,982 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:13:23,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,982 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:13:23,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,983 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:13:23,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,983 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:13:23,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,984 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:13:23,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,984 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:13:23,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,984 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:13:23,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,985 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:13:23,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,985 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:13:23,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,986 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:13:23,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,986 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:13:23,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,987 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:13:23,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,988 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:13:23,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,988 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:13:23,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,989 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:13:23,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,989 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:13:23,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,990 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:13:23,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,990 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:13:23,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,991 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:13:23,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,991 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:13:23,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,992 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:13:23,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,992 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:13:23,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,993 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:13:23,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,993 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:13:23,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,994 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:13:23,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,994 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:13:23,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,995 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:13:23,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,996 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:13:23,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:13:23,996 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:13:23,997 [76] DEBUG index - Current user is: admin +01/18/13 12:13:23,997 [76] DEBUG index - Current theme is: softed +01/18/13 12:13:23,997 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:13:23,997 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:13:23,999 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:13:23,999 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:13:24,001 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:13:24,001 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:13:24,003 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:13:24,003 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:13:24,003 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:13:24,004 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:13:24,004 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:13:24,004 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:13:24,004 [76] DEBUG index - skipping headers +01/18/13 12:13:24,005 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:13:24,005 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:13:24,010 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:13:24,011 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:13:24,011 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:13:24,011 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:13:24,016 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:14')) +01/18/13 12:13:24,019 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:14:04,511 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:14:04,639 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:14:04,640 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:14:04,640 [76] DEBUG index - ****Starting for new session +01/18/13 12:14:04,640 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:14:04,640 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:14:04,641 [76] INFO index - About to take action CalendarAjax +01/18/13 12:14:04,641 [76] DEBUG index - in CalendarAjax +01/18/13 12:14:04,641 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:14:04,641 [76] INFO index - current module is Calendar +01/18/13 12:14:04,688 [76] DEBUG user - Entering Users() method ... +01/18/13 12:14:04,688 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:14:04,688 [76] DEBUG index - in getColumnFields Users +01/18/13 12:14:04,688 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:04,688 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:04,689 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:04,689 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:04,689 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:14:04,689 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:14:04,697 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:04,697 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:04,697 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:14:04,697 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:14:04,698 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:14:04,698 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:14:04,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,699 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:14:04,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,699 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:14:04,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,700 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:14:04,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,700 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:14:04,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,701 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:14:04,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,701 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:14:04,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,702 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:14:04,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,702 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:14:04,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,703 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:14:04,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,703 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:14:04,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,704 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:14:04,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,705 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:14:04,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,705 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:14:04,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,706 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:14:04,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,706 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:14:04,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,707 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:14:04,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,707 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:14:04,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,708 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:14:04,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,708 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:14:04,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,709 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:14:04,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,709 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:14:04,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,710 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:14:04,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,710 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:14:04,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,710 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:14:04,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,711 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:14:04,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,711 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:14:04,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,712 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:14:04,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,712 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:14:04,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,713 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:14:04,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,713 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:14:04,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,714 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:14:04,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,714 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:14:04,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,715 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:14:04,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,715 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:14:04,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,716 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:14:04,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,716 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:14:04,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,717 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:14:04,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,717 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:14:04,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,718 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:14:04,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,718 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:14:04,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,719 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:14:04,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,719 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:14:04,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,720 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:14:04,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,720 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:14:04,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,721 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:14:04,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,721 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:14:04,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:04,722 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:14:04,722 [76] DEBUG index - Current user is: admin +01/18/13 12:14:04,722 [76] DEBUG index - Current theme is: softed +01/18/13 12:14:04,722 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:14:04,723 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:14:04,724 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:14:04,724 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:14:04,726 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:14:04,726 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:14:04,728 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:14:04,728 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:14:04,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:14:04,729 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:14:04,729 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:14:04,729 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:14:04,729 [76] DEBUG index - skipping headers +01/18/13 12:14:04,730 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:14:04,731 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:14:04,736 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:14:04,736 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:14:04,736 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:14:04,737 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:14:04,741 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:15')) +01/18/13 12:14:04,744 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:14:45,175 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:14:45,303 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:14:45,304 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:14:45,304 [76] DEBUG index - ****Starting for new session +01/18/13 12:14:45,304 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:14:45,304 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:14:45,305 [76] INFO index - About to take action CalendarAjax +01/18/13 12:14:45,305 [76] DEBUG index - in CalendarAjax +01/18/13 12:14:45,305 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:14:45,305 [76] INFO index - current module is Calendar +01/18/13 12:14:45,352 [76] DEBUG user - Entering Users() method ... +01/18/13 12:14:45,352 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:14:45,352 [76] DEBUG index - in getColumnFields Users +01/18/13 12:14:45,352 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:45,353 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:45,353 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:45,353 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:45,353 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:14:45,353 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:14:45,364 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:14:45,364 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:14:45,364 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:14:45,364 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:14:45,365 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:14:45,365 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:14:45,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,366 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:14:45,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,366 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:14:45,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,367 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:14:45,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,367 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:14:45,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,368 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:14:45,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,368 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:14:45,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,369 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:14:45,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,369 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:14:45,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,370 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:14:45,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,371 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:14:45,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,371 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:14:45,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,372 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:14:45,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,372 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:14:45,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,373 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:14:45,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,373 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:14:45,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,374 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:14:45,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,374 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:14:45,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,375 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:14:45,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,375 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:14:45,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,376 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:14:45,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,376 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:14:45,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,377 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:14:45,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,377 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:14:45,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,378 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:14:45,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,378 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:14:45,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,379 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:14:45,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,379 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:14:45,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,380 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:14:45,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,380 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:14:45,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,381 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:14:45,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,381 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:14:45,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,382 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:14:45,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,382 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:14:45,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,383 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:14:45,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,383 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:14:45,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,384 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:14:45,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,384 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:14:45,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,385 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:14:45,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,385 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:14:45,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,386 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:14:45,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,386 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:14:45,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,387 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:14:45,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,387 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:14:45,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,388 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:14:45,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,388 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:14:45,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,389 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:14:45,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:14:45,389 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:14:45,390 [76] DEBUG index - Current user is: admin +01/18/13 12:14:45,390 [76] DEBUG index - Current theme is: softed +01/18/13 12:14:45,390 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:14:45,390 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:14:45,392 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:14:45,392 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:14:45,394 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:14:45,394 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:14:45,395 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:14:45,395 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:14:45,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:14:45,396 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:14:45,396 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:14:45,396 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:14:45,397 [76] DEBUG index - skipping headers +01/18/13 12:14:45,397 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:14:45,398 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:14:45,402 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:14:45,403 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:14:45,403 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:14:45,403 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:14:45,407 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:15')) +01/18/13 12:14:45,410 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:15:25,500 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:15:25,632 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:15:25,632 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:15:25,632 [76] DEBUG index - ****Starting for new session +01/18/13 12:15:25,633 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:15:25,633 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:15:25,633 [76] INFO index - About to take action CalendarAjax +01/18/13 12:15:25,633 [76] DEBUG index - in CalendarAjax +01/18/13 12:15:25,633 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:15:25,633 [76] INFO index - current module is Calendar +01/18/13 12:15:25,680 [76] DEBUG user - Entering Users() method ... +01/18/13 12:15:25,680 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:15:25,680 [76] DEBUG index - in getColumnFields Users +01/18/13 12:15:25,680 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:15:25,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:15:25,681 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:15:25,681 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:15:25,681 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:15:25,681 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:15:25,689 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:15:25,689 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:15:25,689 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:15:25,689 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:15:25,690 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:15:25,690 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:15:25,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,691 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:15:25,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,691 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:15:25,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,692 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:15:25,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,693 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:15:25,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,693 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:15:25,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,694 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:15:25,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,694 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:15:25,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,695 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:15:25,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,695 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:15:25,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,696 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:15:25,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,696 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:15:25,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,697 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:15:25,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,697 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:15:25,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,698 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:15:25,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,698 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:15:25,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,699 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:15:25,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,699 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:15:25,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,700 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:15:25,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,700 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:15:25,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,701 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:15:25,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,701 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:15:25,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,702 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:15:25,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,702 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:15:25,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,703 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:15:25,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,703 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:15:25,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,703 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:15:25,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,704 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:15:25,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,705 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:15:25,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,705 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:15:25,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,706 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:15:25,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,706 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:15:25,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,707 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:15:25,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,707 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:15:25,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,708 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:15:25,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,708 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:15:25,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,709 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:15:25,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,710 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:15:25,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,710 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:15:25,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,711 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:15:25,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,711 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:15:25,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,712 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:15:25,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,712 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:15:25,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,713 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:15:25,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,713 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:15:25,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,714 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:15:25,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,714 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:15:25,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:15:25,715 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:15:25,715 [76] DEBUG index - Current user is: admin +01/18/13 12:15:25,715 [76] DEBUG index - Current theme is: softed +01/18/13 12:15:25,715 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:15:25,715 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:15:25,717 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:15:25,717 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:15:25,719 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:15:25,719 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:15:25,721 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:15:25,721 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:15:25,722 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:15:25,722 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:15:25,722 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:15:25,722 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:15:25,722 [76] DEBUG index - skipping headers +01/18/13 12:15:25,723 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:15:25,723 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:15:25,728 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:15:25,729 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:15:25,729 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:15:25,729 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:15:25,737 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:16')) +01/18/13 12:15:25,741 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:16:05,840 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:16:05,968 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:16:05,968 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:16:05,968 [76] DEBUG index - ****Starting for new session +01/18/13 12:16:05,969 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:16:05,969 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:16:05,969 [76] INFO index - About to take action CalendarAjax +01/18/13 12:16:05,969 [76] DEBUG index - in CalendarAjax +01/18/13 12:16:05,970 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:16:05,970 [76] INFO index - current module is Calendar +01/18/13 12:16:06,017 [76] DEBUG user - Entering Users() method ... +01/18/13 12:16:06,017 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:16:06,017 [76] DEBUG index - in getColumnFields Users +01/18/13 12:16:06,017 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:06,017 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:06,018 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:06,018 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:06,018 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:16:06,018 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:16:06,026 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:06,026 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:06,026 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:16:06,027 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:16:06,027 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:16:06,028 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:16:06,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,028 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:16:06,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,029 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:16:06,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,029 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:16:06,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,030 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:16:06,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,030 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:16:06,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,031 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:16:06,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,031 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:16:06,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,032 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:16:06,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,032 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:16:06,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,033 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:16:06,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,033 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:16:06,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,034 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:16:06,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,035 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:16:06,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,035 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:16:06,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,036 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:16:06,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,036 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:16:06,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,037 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:16:06,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,037 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:16:06,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,038 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:16:06,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,038 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:16:06,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,039 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:16:06,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,039 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:16:06,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,040 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:16:06,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,040 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:16:06,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,041 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:16:06,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,041 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:16:06,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,042 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:16:06,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,042 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:16:06,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,043 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:16:06,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,043 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:16:06,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,044 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:16:06,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,044 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:16:06,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,045 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:16:06,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,045 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:16:06,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,046 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:16:06,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,046 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:16:06,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,047 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:16:06,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,047 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:16:06,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,048 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:16:06,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,049 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:16:06,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,049 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:16:06,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,050 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:16:06,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,050 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:16:06,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,051 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:16:06,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,051 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:16:06,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,052 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:16:06,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:06,052 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:16:06,053 [76] DEBUG index - Current user is: admin +01/18/13 12:16:06,053 [76] DEBUG index - Current theme is: softed +01/18/13 12:16:06,053 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:16:06,053 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:16:06,055 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:16:06,055 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:16:06,057 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:16:06,057 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:16:06,058 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:16:06,059 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:16:06,059 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:16:06,059 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:16:06,059 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:16:06,059 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:16:06,060 [76] DEBUG index - skipping headers +01/18/13 12:16:06,061 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:16:06,061 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:16:06,066 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:16:06,066 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:16:06,066 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:16:06,066 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:16:06,073 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:17')) +01/18/13 12:16:06,077 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:16:46,164 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:16:46,316 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:16:46,317 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:16:46,317 [76] DEBUG index - ****Starting for new session +01/18/13 12:16:46,317 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:16:46,318 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:16:46,318 [76] INFO index - About to take action CalendarAjax +01/18/13 12:16:46,318 [76] DEBUG index - in CalendarAjax +01/18/13 12:16:46,318 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:16:46,318 [76] INFO index - current module is Calendar +01/18/13 12:16:46,366 [76] DEBUG user - Entering Users() method ... +01/18/13 12:16:46,366 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:16:46,366 [76] DEBUG index - in getColumnFields Users +01/18/13 12:16:46,366 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:46,366 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:46,366 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:46,367 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:46,367 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:16:46,367 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:16:46,374 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:16:46,374 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:16:46,374 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:16:46,374 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:16:46,375 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:16:46,376 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:16:46,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,376 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:16:46,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,377 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:16:46,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,377 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:16:46,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,378 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:16:46,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,378 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:16:46,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,379 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:16:46,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,379 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:16:46,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,380 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:16:46,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,380 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:16:46,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,381 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:16:46,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,381 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:16:46,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,382 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:16:46,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,382 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:16:46,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,383 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:16:46,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,384 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:16:46,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,384 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:16:46,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,385 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:16:46,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,385 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:16:46,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,386 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:16:46,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,386 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:16:46,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,387 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:16:46,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,387 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:16:46,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,388 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:16:46,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,388 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:16:46,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,388 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:16:46,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,389 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:16:46,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,389 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:16:46,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,390 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:16:46,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,391 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:16:46,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,391 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:16:46,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,392 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:16:46,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,392 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:16:46,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,393 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:16:46,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,393 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:16:46,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,394 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:16:46,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,394 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:16:46,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,395 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:16:46,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,395 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:16:46,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,396 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:16:46,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,397 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:16:46,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,397 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:16:46,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,398 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:16:46,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,398 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:16:46,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,399 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:16:46,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,399 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:16:46,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,400 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:16:46,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:16:46,400 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:16:46,401 [76] DEBUG index - Current user is: admin +01/18/13 12:16:46,401 [76] DEBUG index - Current theme is: softed +01/18/13 12:16:46,401 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:16:46,401 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:16:46,403 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:16:46,403 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:16:46,405 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:16:46,405 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:16:46,407 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:16:46,407 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:16:46,408 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:16:46,408 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:16:46,408 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:16:46,408 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:16:46,408 [76] DEBUG index - skipping headers +01/18/13 12:16:46,409 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:16:46,410 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:16:46,415 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:16:46,415 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:16:46,415 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:16:46,415 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:16:46,423 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:17')) +01/18/13 12:16:46,426 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:17:26,844 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:17:26,973 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:17:26,973 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:17:26,974 [76] DEBUG index - ****Starting for new session +01/18/13 12:17:26,974 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:17:26,974 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:17:26,974 [76] INFO index - About to take action CalendarAjax +01/18/13 12:17:26,975 [76] DEBUG index - in CalendarAjax +01/18/13 12:17:26,975 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:17:26,975 [76] INFO index - current module is Calendar +01/18/13 12:17:27,021 [76] DEBUG user - Entering Users() method ... +01/18/13 12:17:27,021 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:17:27,022 [76] DEBUG index - in getColumnFields Users +01/18/13 12:17:27,022 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:17:27,022 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:17:27,022 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:17:27,022 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:17:27,023 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:17:27,023 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:17:27,033 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:17:27,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:17:27,034 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:17:27,034 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:17:27,034 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:17:27,035 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:17:27,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,035 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:17:27,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,036 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:17:27,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,037 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:17:27,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,037 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:17:27,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,038 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:17:27,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,038 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:17:27,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,039 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:17:27,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,039 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:17:27,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,040 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:17:27,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,040 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:17:27,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,041 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:17:27,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,041 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:17:27,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,042 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:17:27,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,042 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:17:27,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,043 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:17:27,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,043 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:17:27,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,044 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:17:27,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,044 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:17:27,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,045 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:17:27,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,045 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:17:27,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,046 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:17:27,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,046 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:17:27,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,047 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:17:27,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,047 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:17:27,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,047 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:17:27,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,048 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:17:27,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,048 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:17:27,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,049 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:17:27,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,050 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:17:27,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,050 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:17:27,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,051 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:17:27,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,051 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:17:27,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,052 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:17:27,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,052 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:17:27,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,053 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:17:27,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,053 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:17:27,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,054 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:17:27,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,054 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:17:27,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,055 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:17:27,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,055 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:17:27,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,056 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:17:27,056 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,056 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:17:27,056 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,057 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:17:27,057 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,057 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:17:27,057 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,058 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:17:27,058 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,058 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:17:27,058 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:17:27,059 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:17:27,059 [76] DEBUG index - Current user is: admin +01/18/13 12:17:27,059 [76] DEBUG index - Current theme is: softed +01/18/13 12:17:27,059 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:17:27,059 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:17:27,061 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:17:27,061 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:17:27,063 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:17:27,063 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:17:27,065 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:17:27,065 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:17:27,065 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:17:27,066 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:17:27,066 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:17:27,066 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:17:27,066 [76] DEBUG index - skipping headers +01/18/13 12:17:27,067 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:17:27,067 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:17:27,072 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:17:27,073 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:17:27,073 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:17:27,073 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:17:27,077 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:18')) +01/18/13 12:17:27,080 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:18:07,161 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:18:07,291 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:18:07,291 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:18:07,291 [76] DEBUG index - ****Starting for new session +01/18/13 12:18:07,292 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:18:07,292 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:18:07,292 [76] INFO index - About to take action CalendarAjax +01/18/13 12:18:07,292 [76] DEBUG index - in CalendarAjax +01/18/13 12:18:07,292 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:18:07,292 [76] INFO index - current module is Calendar +01/18/13 12:18:07,339 [76] DEBUG user - Entering Users() method ... +01/18/13 12:18:07,339 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:18:07,339 [76] DEBUG index - in getColumnFields Users +01/18/13 12:18:07,339 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:07,340 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:07,340 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:07,340 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:07,340 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:18:07,340 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:18:07,348 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:07,348 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:07,349 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:18:07,349 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:18:07,349 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:18:07,350 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:18:07,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,350 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:18:07,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,351 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:18:07,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,351 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:18:07,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,352 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:18:07,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,352 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:18:07,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,353 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:18:07,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,353 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:18:07,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,354 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:18:07,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,355 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:18:07,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,355 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:18:07,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,356 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:18:07,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,356 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:18:07,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,357 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:18:07,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,357 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:18:07,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,358 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:18:07,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,358 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:18:07,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,359 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:18:07,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,359 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:18:07,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,360 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:18:07,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,360 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:18:07,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,361 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:18:07,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,361 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:18:07,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,362 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:18:07,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,362 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:18:07,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,363 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:18:07,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,363 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:18:07,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,364 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:18:07,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,364 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:18:07,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,365 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:18:07,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,365 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:18:07,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,366 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:18:07,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,366 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:18:07,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,367 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:18:07,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,367 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:18:07,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,368 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:18:07,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,368 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:18:07,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,369 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:18:07,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,369 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:18:07,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,370 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:18:07,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,370 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:18:07,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,371 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:18:07,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,371 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:18:07,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,372 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:18:07,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,372 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:18:07,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,373 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:18:07,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,374 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:18:07,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:07,374 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:18:07,374 [76] DEBUG index - Current user is: admin +01/18/13 12:18:07,375 [76] DEBUG index - Current theme is: softed +01/18/13 12:18:07,375 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:18:07,375 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:18:07,376 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:18:07,377 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:18:07,379 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:18:07,379 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:18:07,380 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:18:07,380 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:18:07,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:18:07,381 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:18:07,381 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:18:07,381 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:18:07,381 [76] DEBUG index - skipping headers +01/18/13 12:18:07,383 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:18:07,383 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:18:07,388 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:18:07,388 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:18:07,388 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:18:07,389 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:18:07,393 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:19')) +01/18/13 12:18:07,398 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:18:47,512 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:18:47,644 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:18:47,644 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:18:47,644 [76] DEBUG index - ****Starting for new session +01/18/13 12:18:47,645 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:18:47,645 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:18:47,645 [76] INFO index - About to take action CalendarAjax +01/18/13 12:18:47,645 [76] DEBUG index - in CalendarAjax +01/18/13 12:18:47,645 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:18:47,645 [76] INFO index - current module is Calendar +01/18/13 12:18:47,692 [76] DEBUG user - Entering Users() method ... +01/18/13 12:18:47,692 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:18:47,692 [76] DEBUG index - in getColumnFields Users +01/18/13 12:18:47,692 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:47,692 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:47,693 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:47,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:47,693 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:18:47,693 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:18:47,703 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:18:47,703 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:18:47,703 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:18:47,703 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:18:47,703 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:18:47,704 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:18:47,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,705 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:18:47,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,705 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:18:47,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,706 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:18:47,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,706 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:18:47,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,707 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:18:47,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,707 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:18:47,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,708 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:18:47,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,709 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:18:47,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,709 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:18:47,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,710 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:18:47,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,710 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:18:47,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,711 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:18:47,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,711 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:18:47,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,712 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:18:47,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,712 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:18:47,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,713 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:18:47,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,713 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:18:47,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,714 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:18:47,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,714 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:18:47,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,715 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:18:47,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,715 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:18:47,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,716 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:18:47,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,716 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:18:47,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,716 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:18:47,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,717 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:18:47,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,718 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:18:47,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,718 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:18:47,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,719 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:18:47,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,719 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:18:47,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,720 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:18:47,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,720 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:18:47,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,721 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:18:47,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,721 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:18:47,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,722 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:18:47,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,722 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:18:47,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,723 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:18:47,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,723 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:18:47,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,724 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:18:47,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,724 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:18:47,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,725 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:18:47,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,725 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:18:47,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,726 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:18:47,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,726 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:18:47,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,727 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:18:47,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,727 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:18:47,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,728 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:18:47,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:18:47,728 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:18:47,729 [76] DEBUG index - Current user is: admin +01/18/13 12:18:47,729 [76] DEBUG index - Current theme is: softed +01/18/13 12:18:47,729 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:18:47,729 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:18:47,731 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:18:47,731 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:18:47,733 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:18:47,733 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:18:47,734 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:18:47,735 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:18:47,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:18:47,735 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:18:47,735 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:18:47,736 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:18:47,736 [76] DEBUG index - skipping headers +01/18/13 12:18:47,737 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:18:47,737 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:18:47,742 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:18:47,743 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:18:47,743 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:18:47,743 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:18:47,747 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:19')) +01/18/13 12:18:47,751 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:19:28,284 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:19:28,425 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:19:28,425 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:19:28,425 [76] DEBUG index - ****Starting for new session +01/18/13 12:19:28,426 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:19:28,426 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:19:28,426 [76] INFO index - About to take action CalendarAjax +01/18/13 12:19:28,426 [76] DEBUG index - in CalendarAjax +01/18/13 12:19:28,426 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:19:28,426 [76] INFO index - current module is Calendar +01/18/13 12:19:28,472 [76] DEBUG user - Entering Users() method ... +01/18/13 12:19:28,472 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:19:28,473 [76] DEBUG index - in getColumnFields Users +01/18/13 12:19:28,473 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:19:28,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:19:28,473 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:19:28,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:19:28,473 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:19:28,474 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:19:28,482 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:19:28,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:19:28,483 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:19:28,483 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:19:28,483 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:19:28,484 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:19:28,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,484 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:19:28,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,485 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:19:28,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,485 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:19:28,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,486 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:19:28,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,486 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:19:28,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,487 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:19:28,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,488 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:19:28,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,488 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:19:28,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,489 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:19:28,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,489 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:19:28,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,490 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:19:28,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,490 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:19:28,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,491 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:19:28,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,491 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:19:28,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,492 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:19:28,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,492 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:19:28,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,493 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:19:28,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,493 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:19:28,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,494 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:19:28,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,494 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:19:28,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,495 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:19:28,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,495 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:19:28,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,496 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:19:28,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,496 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:19:28,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,496 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:19:28,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,497 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:19:28,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,497 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:19:28,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,498 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:19:28,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,498 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:19:28,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,499 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:19:28,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,499 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:19:28,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,500 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:19:28,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,500 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:19:28,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,501 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:19:28,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,502 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:19:28,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,502 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:19:28,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,503 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:19:28,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,503 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:19:28,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,504 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:19:28,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,505 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:19:28,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,505 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:19:28,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,506 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:19:28,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,506 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:19:28,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,507 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:19:28,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,507 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:19:28,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,508 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:19:28,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:19:28,508 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:19:28,509 [76] DEBUG index - Current user is: admin +01/18/13 12:19:28,509 [76] DEBUG index - Current theme is: softed +01/18/13 12:19:28,509 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:19:28,509 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:19:28,511 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:19:28,511 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:19:28,513 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:19:28,513 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:19:28,514 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:19:28,515 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:19:28,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:19:28,515 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:19:28,515 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:19:28,515 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:19:28,516 [76] DEBUG index - skipping headers +01/18/13 12:19:28,517 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:19:28,517 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:19:28,522 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:19:28,523 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:19:28,523 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:19:28,523 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:19:28,528 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:20')) +01/18/13 12:19:28,531 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:20:08,934 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:20:09,063 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:20:09,063 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:20:09,063 [76] DEBUG index - ****Starting for new session +01/18/13 12:20:09,064 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:20:09,064 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:20:09,064 [76] INFO index - About to take action CalendarAjax +01/18/13 12:20:09,064 [76] DEBUG index - in CalendarAjax +01/18/13 12:20:09,064 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:20:09,064 [76] INFO index - current module is Calendar +01/18/13 12:20:09,111 [76] DEBUG user - Entering Users() method ... +01/18/13 12:20:09,111 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:20:09,111 [76] DEBUG index - in getColumnFields Users +01/18/13 12:20:09,111 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:09,112 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:09,112 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:09,112 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:09,112 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:20:09,112 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:20:09,121 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:09,121 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:09,121 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:20:09,121 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:20:09,122 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:20:09,122 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:20:09,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,123 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:20:09,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,123 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:20:09,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,124 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:20:09,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,124 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:20:09,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,125 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:20:09,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,125 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:20:09,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,126 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:20:09,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,126 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:20:09,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,127 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:20:09,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,127 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:20:09,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,128 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:20:09,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,129 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:20:09,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,129 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:20:09,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,130 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:20:09,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,130 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:20:09,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,131 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:20:09,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,132 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:20:09,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,132 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:20:09,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,133 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:20:09,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,133 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:20:09,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,134 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:20:09,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,134 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:20:09,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,135 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:20:09,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,135 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:20:09,135 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,135 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:20:09,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,136 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:20:09,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,136 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:20:09,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,137 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:20:09,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,137 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:20:09,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,138 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:20:09,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,138 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:20:09,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,139 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:20:09,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,139 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:20:09,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,140 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:20:09,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,140 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:20:09,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,141 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:20:09,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,141 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:20:09,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,142 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:20:09,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,143 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:20:09,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,143 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:20:09,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,144 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:20:09,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,144 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:20:09,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,145 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:20:09,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,145 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:20:09,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,146 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:20:09,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,146 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:20:09,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:09,147 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:20:09,147 [76] DEBUG index - Current user is: admin +01/18/13 12:20:09,147 [76] DEBUG index - Current theme is: softed +01/18/13 12:20:09,147 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:20:09,148 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:20:09,149 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:20:09,149 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:20:09,151 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:20:09,151 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:20:09,153 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:20:09,153 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:20:09,154 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:20:09,154 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:20:09,154 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:20:09,154 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:20:09,154 [76] DEBUG index - skipping headers +01/18/13 12:20:09,155 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:20:09,156 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:20:09,160 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:20:09,161 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:20:09,161 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:20:09,161 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:20:09,165 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:21')) +01/18/13 12:20:09,171 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:20:49,276 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:20:49,403 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:20:49,404 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:20:49,404 [76] DEBUG index - ****Starting for new session +01/18/13 12:20:49,404 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:20:49,404 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:20:49,405 [76] INFO index - About to take action CalendarAjax +01/18/13 12:20:49,405 [76] DEBUG index - in CalendarAjax +01/18/13 12:20:49,405 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:20:49,405 [76] INFO index - current module is Calendar +01/18/13 12:20:49,453 [76] DEBUG user - Entering Users() method ... +01/18/13 12:20:49,453 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:20:49,453 [76] DEBUG index - in getColumnFields Users +01/18/13 12:20:49,453 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:49,454 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:49,454 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:49,454 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:49,454 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:20:49,454 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:20:49,463 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:20:49,463 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:20:49,463 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:20:49,464 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:20:49,464 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:20:49,465 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:20:49,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,465 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:20:49,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,466 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:20:49,466 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,466 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:20:49,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,467 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:20:49,467 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,467 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:20:49,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,468 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:20:49,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,468 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:20:49,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,469 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:20:49,469 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,469 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:20:49,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,470 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:20:49,470 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,470 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:20:49,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,471 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:20:49,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,471 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:20:49,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,472 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:20:49,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,472 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:20:49,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,473 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:20:49,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,473 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:20:49,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,474 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:20:49,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,474 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:20:49,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,475 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:20:49,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,475 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:20:49,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,476 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:20:49,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,476 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:20:49,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,477 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:20:49,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,477 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:20:49,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,478 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:20:49,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,478 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:20:49,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,479 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:20:49,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,479 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:20:49,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,480 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:20:49,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,480 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:20:49,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,481 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:20:49,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,481 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:20:49,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,482 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:20:49,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,482 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:20:49,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,483 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:20:49,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,483 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:20:49,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,484 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:20:49,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,484 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:20:49,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,485 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:20:49,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,485 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:20:49,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,486 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:20:49,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,486 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:20:49,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,487 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:20:49,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,487 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:20:49,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,488 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:20:49,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:20:49,489 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:20:49,489 [76] DEBUG index - Current user is: admin +01/18/13 12:20:49,489 [76] DEBUG index - Current theme is: softed +01/18/13 12:20:49,489 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:20:49,489 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:20:49,491 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:20:49,491 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:20:49,493 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:20:49,493 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:20:49,495 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:20:49,495 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:20:49,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:20:49,496 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:20:49,496 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:20:49,496 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:20:49,496 [76] DEBUG index - skipping headers +01/18/13 12:20:49,497 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:20:49,497 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:20:49,502 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:20:49,503 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:20:49,503 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:20:49,503 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:20:49,507 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:21')) +01/18/13 12:20:49,515 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:21:29,627 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:21:29,763 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:21:29,763 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:21:29,763 [76] DEBUG index - ****Starting for new session +01/18/13 12:21:29,764 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:21:29,764 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:21:29,764 [76] INFO index - About to take action CalendarAjax +01/18/13 12:21:29,764 [76] DEBUG index - in CalendarAjax +01/18/13 12:21:29,764 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:21:29,764 [76] INFO index - current module is Calendar +01/18/13 12:21:29,811 [76] DEBUG user - Entering Users() method ... +01/18/13 12:21:29,811 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:21:29,811 [76] DEBUG index - in getColumnFields Users +01/18/13 12:21:29,811 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:21:29,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:21:29,812 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:21:29,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:21:29,812 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:21:29,812 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:21:29,821 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:21:29,821 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:21:29,822 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:21:29,822 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:21:29,822 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:21:29,823 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:21:29,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,823 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:21:29,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,824 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:21:29,824 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,824 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:21:29,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,825 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:21:29,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,825 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:21:29,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,826 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:21:29,826 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,826 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:21:29,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,827 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:21:29,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,827 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:21:29,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,828 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:21:29,828 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,828 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:21:29,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,829 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:21:29,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,829 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:21:29,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,830 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:21:29,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,830 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:21:29,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,831 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:21:29,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,831 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:21:29,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,832 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:21:29,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,832 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:21:29,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,833 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:21:29,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,833 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:21:29,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,834 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:21:29,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,834 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:21:29,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,835 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:21:29,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,835 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:21:29,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,836 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:21:29,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,836 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:21:29,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,837 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:21:29,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,837 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:21:29,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,838 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:21:29,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,838 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:21:29,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,839 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:21:29,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,839 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:21:29,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,840 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:21:29,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,840 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:21:29,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,841 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:21:29,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,841 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:21:29,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,842 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:21:29,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,842 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:21:29,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,843 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:21:29,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,843 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:21:29,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,844 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:21:29,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,844 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:21:29,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,845 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:21:29,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,846 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:21:29,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,846 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:21:29,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:21:29,847 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:21:29,847 [76] DEBUG index - Current user is: admin +01/18/13 12:21:29,847 [76] DEBUG index - Current theme is: softed +01/18/13 12:21:29,847 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:21:29,847 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:21:29,849 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:21:29,849 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:21:29,851 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:21:29,851 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:21:29,853 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:21:29,853 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:21:29,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:21:29,854 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:21:29,854 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:21:29,854 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:21:29,854 [76] DEBUG index - skipping headers +01/18/13 12:21:29,855 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:21:29,856 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:21:29,861 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:21:29,861 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:21:29,861 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:21:29,861 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:21:29,867 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:22')) +01/18/13 12:21:29,870 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:22:09,963 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:22:10,092 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:22:10,092 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:22:10,092 [76] DEBUG index - ****Starting for new session +01/18/13 12:22:10,093 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:22:10,093 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:22:10,093 [76] INFO index - About to take action CalendarAjax +01/18/13 12:22:10,093 [76] DEBUG index - in CalendarAjax +01/18/13 12:22:10,093 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:22:10,093 [76] INFO index - current module is Calendar +01/18/13 12:22:10,140 [76] DEBUG user - Entering Users() method ... +01/18/13 12:22:10,140 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:22:10,140 [76] DEBUG index - in getColumnFields Users +01/18/13 12:22:10,140 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:10,141 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:10,141 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:10,141 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:10,141 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:22:10,141 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:22:10,152 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:10,152 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:10,152 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:22:10,152 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:22:10,153 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:22:10,153 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:22:10,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,154 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:22:10,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,154 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:22:10,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,155 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:22:10,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,155 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:22:10,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,156 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:22:10,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,156 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:22:10,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,157 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:22:10,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,157 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:22:10,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,158 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:22:10,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,158 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:22:10,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,159 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:22:10,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,159 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:22:10,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,160 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:22:10,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,160 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:22:10,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,161 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:22:10,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,162 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:22:10,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,162 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:22:10,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,163 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:22:10,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,163 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:22:10,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,164 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:22:10,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,164 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:22:10,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,165 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:22:10,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,165 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:22:10,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,165 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:22:10,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,166 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:22:10,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,166 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:22:10,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,167 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:22:10,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,168 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:22:10,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,168 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:22:10,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,169 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:22:10,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,169 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:22:10,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,170 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:22:10,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,170 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:22:10,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,171 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:22:10,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,171 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:22:10,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,172 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:22:10,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,172 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:22:10,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,173 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:22:10,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,173 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:22:10,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,174 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:22:10,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,174 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:22:10,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,175 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:22:10,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,176 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:22:10,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,176 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:22:10,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,177 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:22:10,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,177 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:22:10,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:10,178 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:22:10,178 [76] DEBUG index - Current user is: admin +01/18/13 12:22:10,178 [76] DEBUG index - Current theme is: softed +01/18/13 12:22:10,178 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:22:10,178 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:22:10,180 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:22:10,180 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:22:10,182 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:22:10,182 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:22:10,184 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:22:10,184 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:22:10,185 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:22:10,185 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:22:10,185 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:22:10,185 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:22:10,185 [76] DEBUG index - skipping headers +01/18/13 12:22:10,186 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:22:10,187 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:22:10,192 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:22:10,192 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:22:10,192 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:22:10,192 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:22:10,199 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:23')) +01/18/13 12:22:10,207 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:22:50,718 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:22:50,844 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:22:50,845 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:22:50,845 [76] DEBUG index - ****Starting for new session +01/18/13 12:22:50,845 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:22:50,846 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:22:50,846 [76] INFO index - About to take action CalendarAjax +01/18/13 12:22:50,846 [76] DEBUG index - in CalendarAjax +01/18/13 12:22:50,846 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:22:50,846 [76] INFO index - current module is Calendar +01/18/13 12:22:50,893 [76] DEBUG user - Entering Users() method ... +01/18/13 12:22:50,893 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:22:50,893 [76] DEBUG index - in getColumnFields Users +01/18/13 12:22:50,893 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:50,894 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:50,894 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:50,894 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:50,894 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:22:50,894 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:22:50,904 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:22:50,904 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:22:50,904 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:22:50,904 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:22:50,905 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:22:50,905 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:22:50,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,906 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:22:50,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,906 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:22:50,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,907 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:22:50,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,907 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:22:50,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,908 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:22:50,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,909 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:22:50,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,909 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:22:50,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,910 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:22:50,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,910 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:22:50,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,911 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:22:50,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,911 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:22:50,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,912 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:22:50,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,912 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:22:50,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,913 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:22:50,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,913 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:22:50,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,914 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:22:50,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,914 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:22:50,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,915 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:22:50,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,915 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:22:50,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,916 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:22:50,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,916 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:22:50,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,917 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:22:50,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,917 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:22:50,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,918 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:22:50,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,918 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:22:50,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,919 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:22:50,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,919 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:22:50,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,920 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:22:50,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,920 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:22:50,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,921 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:22:50,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,921 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:22:50,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,922 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:22:50,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,922 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:22:50,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,923 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:22:50,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,923 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:22:50,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,924 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:22:50,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,924 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:22:50,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,925 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:22:50,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,925 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:22:50,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,926 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:22:50,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,926 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:22:50,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,927 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:22:50,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,927 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:22:50,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,928 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:22:50,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,928 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:22:50,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,929 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:22:50,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:22:50,929 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:22:50,930 [76] DEBUG index - Current user is: admin +01/18/13 12:22:50,930 [76] DEBUG index - Current theme is: softed +01/18/13 12:22:50,930 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:22:50,930 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:22:50,932 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:22:50,932 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:22:50,934 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:22:50,934 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:22:50,936 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:22:50,936 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:22:50,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:22:50,937 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:22:50,937 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:22:50,937 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:22:50,937 [76] DEBUG index - skipping headers +01/18/13 12:22:50,938 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:22:50,938 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:22:50,943 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:22:50,944 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:22:50,944 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:22:50,944 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:22:50,948 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:23')) +01/18/13 12:22:50,953 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:23:31,067 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:23:31,196 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:23:31,196 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:23:31,197 [76] DEBUG index - ****Starting for new session +01/18/13 12:23:31,197 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:23:31,197 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:23:31,197 [76] INFO index - About to take action CalendarAjax +01/18/13 12:23:31,197 [76] DEBUG index - in CalendarAjax +01/18/13 12:23:31,198 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:23:31,198 [76] INFO index - current module is Calendar +01/18/13 12:23:31,242 [76] DEBUG user - Entering Users() method ... +01/18/13 12:23:31,243 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:23:31,243 [76] DEBUG index - in getColumnFields Users +01/18/13 12:23:31,243 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:23:31,243 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:23:31,243 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:23:31,244 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:23:31,244 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:23:31,244 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:23:31,257 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:23:31,257 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:23:31,257 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:23:31,258 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:23:31,258 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:23:31,259 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:23:31,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,259 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:23:31,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,260 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:23:31,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,260 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:23:31,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,261 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:23:31,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,261 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:23:31,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,262 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:23:31,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,262 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:23:31,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,263 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:23:31,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,263 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:23:31,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,264 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:23:31,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,264 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:23:31,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,265 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:23:31,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,265 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:23:31,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,266 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:23:31,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,267 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:23:31,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,267 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:23:31,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,268 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:23:31,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,268 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:23:31,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,269 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:23:31,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,269 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:23:31,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,270 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:23:31,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,270 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:23:31,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,271 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:23:31,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,271 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:23:31,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,272 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:23:31,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,272 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:23:31,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,273 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:23:31,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,273 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:23:31,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,274 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:23:31,274 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,274 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:23:31,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,275 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:23:31,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,275 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:23:31,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,276 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:23:31,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,276 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:23:31,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,277 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:23:31,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,277 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:23:31,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,278 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:23:31,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,278 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:23:31,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,279 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:23:31,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,279 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:23:31,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,280 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:23:31,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,280 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:23:31,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,281 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:23:31,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,281 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:23:31,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,282 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:23:31,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,282 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:23:31,283 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:23:31,283 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:23:31,283 [76] DEBUG index - Current user is: admin +01/18/13 12:23:31,283 [76] DEBUG index - Current theme is: softed +01/18/13 12:23:31,284 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:23:31,284 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:23:31,285 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:23:31,286 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:23:31,287 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:23:31,287 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:23:31,289 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:23:31,289 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:23:31,290 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:23:31,290 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:23:31,290 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:23:31,290 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:23:31,290 [76] DEBUG index - skipping headers +01/18/13 12:23:31,291 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:23:31,292 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:23:31,296 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:23:31,297 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:23:31,297 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:23:31,297 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:23:31,301 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:24')) +01/18/13 12:23:31,307 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:24:11,415 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:24:11,543 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:24:11,543 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:24:11,543 [76] DEBUG index - ****Starting for new session +01/18/13 12:24:11,544 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:24:11,544 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:24:11,544 [76] INFO index - About to take action CalendarAjax +01/18/13 12:24:11,544 [76] DEBUG index - in CalendarAjax +01/18/13 12:24:11,544 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:24:11,544 [76] INFO index - current module is Calendar +01/18/13 12:24:11,591 [76] DEBUG user - Entering Users() method ... +01/18/13 12:24:11,591 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:24:11,591 [76] DEBUG index - in getColumnFields Users +01/18/13 12:24:11,591 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:11,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:11,592 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:11,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:11,592 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:24:11,592 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:24:11,608 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:11,608 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:11,609 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:24:11,609 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:24:11,609 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:24:11,610 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:24:11,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,610 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:24:11,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,611 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:24:11,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,611 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:24:11,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,612 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:24:11,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,612 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:24:11,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,613 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:24:11,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,613 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:24:11,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,614 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:24:11,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,615 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:24:11,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,615 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:24:11,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,616 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:24:11,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,616 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:24:11,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,617 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:24:11,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,617 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:24:11,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,618 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:24:11,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,618 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:24:11,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,619 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:24:11,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,619 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:24:11,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,620 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:24:11,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,621 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:24:11,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,621 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:24:11,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,622 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:24:11,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,622 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:24:11,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,622 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:24:11,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,623 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:24:11,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,623 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:24:11,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,624 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:24:11,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,624 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:24:11,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,625 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:24:11,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,625 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:24:11,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,626 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:24:11,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,627 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:24:11,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,627 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:24:11,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,628 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:24:11,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,628 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:24:11,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,629 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:24:11,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,629 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:24:11,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,630 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:24:11,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,630 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:24:11,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,631 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:24:11,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,631 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:24:11,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,632 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:24:11,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,632 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:24:11,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,633 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:24:11,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,633 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:24:11,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,634 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:24:11,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:11,634 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:24:11,635 [76] DEBUG index - Current user is: admin +01/18/13 12:24:11,635 [76] DEBUG index - Current theme is: softed +01/18/13 12:24:11,635 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:24:11,635 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:24:11,637 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:24:11,637 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:24:11,639 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:24:11,639 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:24:11,640 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:24:11,641 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:24:11,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:24:11,641 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:24:11,641 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:24:11,642 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:24:11,642 [76] DEBUG index - skipping headers +01/18/13 12:24:11,643 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:24:11,643 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:24:11,648 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:24:11,648 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:24:11,648 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:24:11,648 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:24:11,656 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:25')) +01/18/13 12:24:11,665 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:24:51,769 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:24:51,894 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:24:51,894 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:24:51,895 [76] DEBUG index - ****Starting for new session +01/18/13 12:24:51,895 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:24:51,895 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:24:51,895 [76] INFO index - About to take action CalendarAjax +01/18/13 12:24:51,896 [76] DEBUG index - in CalendarAjax +01/18/13 12:24:51,896 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:24:51,896 [76] INFO index - current module is Calendar +01/18/13 12:24:51,942 [76] DEBUG user - Entering Users() method ... +01/18/13 12:24:51,942 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:24:51,943 [76] DEBUG index - in getColumnFields Users +01/18/13 12:24:51,943 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:51,943 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:51,943 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:51,943 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:51,943 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:24:51,944 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:24:51,952 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:24:51,952 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:24:51,952 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:24:51,952 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:24:51,952 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:24:51,953 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:24:51,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,954 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:24:51,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,954 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:24:51,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,955 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:24:51,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,955 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:24:51,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,956 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:24:51,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,956 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:24:51,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,957 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:24:51,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,957 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:24:51,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,958 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:24:51,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,958 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:24:51,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,959 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:24:51,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,959 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:24:51,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,960 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:24:51,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,960 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:24:51,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,961 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:24:51,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,961 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:24:51,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,962 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:24:51,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,962 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:24:51,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,963 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:24:51,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,963 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:24:51,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,964 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:24:51,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,964 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:24:51,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,965 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:24:51,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,965 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:24:51,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,966 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:24:51,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,966 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:24:51,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,967 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:24:51,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,967 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:24:51,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,968 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:24:51,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,968 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:24:51,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,969 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:24:51,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,969 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:24:51,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,970 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:24:51,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,970 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:24:51,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,971 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:24:51,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,971 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:24:51,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,972 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:24:51,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,972 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:24:51,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,973 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:24:51,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,973 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:24:51,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,974 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:24:51,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,975 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:24:51,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,975 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:24:51,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,976 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:24:51,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,976 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:24:51,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,977 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:24:51,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:24:51,977 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:24:51,977 [76] DEBUG index - Current user is: admin +01/18/13 12:24:51,978 [76] DEBUG index - Current theme is: softed +01/18/13 12:24:51,978 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:24:51,978 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:24:51,979 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:24:51,980 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:24:51,981 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:24:51,982 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:24:51,983 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:24:51,983 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:24:51,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:24:51,984 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:24:51,984 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:24:51,984 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:24:51,984 [76] DEBUG index - skipping headers +01/18/13 12:24:51,985 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:24:51,986 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:24:51,991 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:24:51,991 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:24:51,991 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:24:51,991 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:24:51,998 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:25')) +01/18/13 12:24:52,002 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:25:32,126 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:25:32,257 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:25:32,257 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:25:32,258 [76] DEBUG index - ****Starting for new session +01/18/13 12:25:32,258 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:25:32,258 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:25:32,258 [76] INFO index - About to take action CalendarAjax +01/18/13 12:25:32,258 [76] DEBUG index - in CalendarAjax +01/18/13 12:25:32,259 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:25:32,259 [76] INFO index - current module is Calendar +01/18/13 12:25:32,306 [76] DEBUG user - Entering Users() method ... +01/18/13 12:25:32,306 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:25:32,306 [76] DEBUG index - in getColumnFields Users +01/18/13 12:25:32,306 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:25:32,307 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:25:32,307 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:25:32,307 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:25:32,307 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:25:32,307 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:25:32,315 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:25:32,315 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:25:32,315 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:25:32,315 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:25:32,316 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:25:32,316 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:25:32,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,317 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:25:32,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,317 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:25:32,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,318 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:25:32,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,318 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:25:32,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,319 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:25:32,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,319 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:25:32,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,320 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:25:32,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,321 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:25:32,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,321 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:25:32,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,322 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:25:32,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,322 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:25:32,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,323 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:25:32,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,323 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:25:32,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,324 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:25:32,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,324 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:25:32,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,325 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:25:32,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,325 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:25:32,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,326 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:25:32,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,326 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:25:32,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,327 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:25:32,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,327 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:25:32,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,328 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:25:32,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,328 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:25:32,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,328 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:25:32,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,329 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:25:32,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,329 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:25:32,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,330 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:25:32,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,330 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:25:32,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,331 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:25:32,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,332 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:25:32,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,332 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:25:32,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,333 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:25:32,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,333 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:25:32,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,334 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:25:32,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,334 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:25:32,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,335 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:25:32,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,336 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:25:32,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,336 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:25:32,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,337 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:25:32,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,337 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:25:32,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,338 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:25:32,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,338 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:25:32,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,339 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:25:32,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,339 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:25:32,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,340 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:25:32,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,340 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:25:32,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:25:32,341 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:25:32,341 [76] DEBUG index - Current user is: admin +01/18/13 12:25:32,341 [76] DEBUG index - Current theme is: softed +01/18/13 12:25:32,341 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:25:32,341 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:25:32,343 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:25:32,343 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:25:32,345 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:25:32,345 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:25:32,347 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:25:32,347 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:25:32,348 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:25:32,348 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:25:32,348 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:25:32,348 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:25:32,348 [76] DEBUG index - skipping headers +01/18/13 12:25:32,349 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:25:32,350 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:25:32,355 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:25:32,355 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:25:32,355 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:25:32,355 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:25:32,359 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:26')) +01/18/13 12:25:32,363 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:26:12,896 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:26:13,022 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:26:13,022 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:26:13,023 [76] DEBUG index - ****Starting for new session +01/18/13 12:26:13,023 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:26:13,023 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:26:13,023 [76] INFO index - About to take action CalendarAjax +01/18/13 12:26:13,024 [76] DEBUG index - in CalendarAjax +01/18/13 12:26:13,024 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:26:13,024 [76] INFO index - current module is Calendar +01/18/13 12:26:13,071 [76] DEBUG user - Entering Users() method ... +01/18/13 12:26:13,071 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:26:13,071 [76] DEBUG index - in getColumnFields Users +01/18/13 12:26:13,071 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:13,072 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:13,072 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:13,072 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:13,072 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:26:13,072 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:26:13,082 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:13,082 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:13,083 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:26:13,083 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:26:13,083 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:26:13,084 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:26:13,084 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,084 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:26:13,085 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,085 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:26:13,085 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,085 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:26:13,086 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,086 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:26:13,086 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,086 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:26:13,087 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,087 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:26:13,088 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,088 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:26:13,088 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,088 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:26:13,089 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,089 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:26:13,089 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,089 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:26:13,090 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,090 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:26:13,090 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,090 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:26:13,091 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,091 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:26:13,091 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,091 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:26:13,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,092 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:26:13,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,092 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:26:13,093 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,093 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:26:13,093 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,093 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:26:13,094 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,094 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:26:13,094 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,094 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:26:13,095 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,095 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:26:13,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,096 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:26:13,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,096 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:26:13,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,097 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:26:13,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,097 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:26:13,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,098 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:26:13,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,098 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:26:13,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,099 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:26:13,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,099 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:26:13,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,100 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:26:13,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,100 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:26:13,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,101 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:26:13,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,101 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:26:13,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,102 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:26:13,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,102 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:26:13,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,103 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:26:13,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,103 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:26:13,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,104 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:26:13,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,104 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:26:13,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,105 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:26:13,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,105 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:26:13,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,106 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:26:13,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,106 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:26:13,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,107 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:26:13,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,107 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:26:13,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,108 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:26:13,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:13,108 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:26:13,109 [76] DEBUG index - Current user is: admin +01/18/13 12:26:13,109 [76] DEBUG index - Current theme is: softed +01/18/13 12:26:13,109 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:26:13,109 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:26:13,111 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:26:13,111 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:26:13,113 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:26:13,113 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:26:13,115 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:26:13,115 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:26:13,115 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:26:13,116 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:26:13,116 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:26:13,116 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:26:13,116 [76] DEBUG index - skipping headers +01/18/13 12:26:13,117 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:26:13,117 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:26:13,122 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:26:13,123 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:26:13,123 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:26:13,123 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:26:13,127 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:27')) +01/18/13 12:26:13,130 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:26:53,724 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:26:53,851 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:26:53,851 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:26:53,852 [76] DEBUG index - ****Starting for new session +01/18/13 12:26:53,852 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:26:53,852 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:26:53,852 [76] INFO index - About to take action CalendarAjax +01/18/13 12:26:53,853 [76] DEBUG index - in CalendarAjax +01/18/13 12:26:53,853 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:26:53,853 [76] INFO index - current module is Calendar +01/18/13 12:26:53,900 [76] DEBUG user - Entering Users() method ... +01/18/13 12:26:53,900 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:26:53,900 [76] DEBUG index - in getColumnFields Users +01/18/13 12:26:53,900 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:53,901 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:53,901 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:53,901 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:53,901 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:26:53,901 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:26:53,910 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:26:53,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:26:53,911 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:26:53,911 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:26:53,911 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:26:53,912 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:26:53,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,912 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:26:53,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,913 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:26:53,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,913 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:26:53,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,914 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:26:53,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,915 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:26:53,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,915 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:26:53,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,916 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:26:53,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,916 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:26:53,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,917 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:26:53,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,917 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:26:53,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,918 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:26:53,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,918 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:26:53,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,919 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:26:53,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,919 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:26:53,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,920 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:26:53,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,920 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:26:53,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,921 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:26:53,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,921 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:26:53,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,922 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:26:53,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,922 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:26:53,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,923 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:26:53,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,923 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:26:53,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,924 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:26:53,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,924 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:26:53,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,924 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:26:53,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,925 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:26:53,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,925 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:26:53,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,926 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:26:53,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,926 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:26:53,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,927 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:26:53,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,927 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:26:53,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,928 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:26:53,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,928 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:26:53,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,929 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:26:53,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,930 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:26:53,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,930 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:26:53,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,931 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:26:53,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,931 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:26:53,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,932 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:26:53,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,932 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:26:53,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,933 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:26:53,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,933 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:26:53,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,934 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:26:53,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,934 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:26:53,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,935 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:26:53,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,935 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:26:53,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:26:53,936 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:26:53,936 [76] DEBUG index - Current user is: admin +01/18/13 12:26:53,936 [76] DEBUG index - Current theme is: softed +01/18/13 12:26:53,936 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:26:53,936 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:26:53,938 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:26:53,938 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:26:53,940 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:26:53,940 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:26:53,942 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:26:53,942 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:26:53,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:26:53,943 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:26:53,943 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:26:53,943 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:26:53,943 [76] DEBUG index - skipping headers +01/18/13 12:26:53,944 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:26:53,945 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:26:53,950 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:26:53,950 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:26:53,951 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:26:53,951 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:26:53,956 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:27')) +01/18/13 12:26:53,959 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:27:34,051 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:27:34,185 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:27:34,185 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:27:34,185 [76] DEBUG index - ****Starting for new session +01/18/13 12:27:34,186 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:27:34,186 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:27:34,186 [76] INFO index - About to take action CalendarAjax +01/18/13 12:27:34,186 [76] DEBUG index - in CalendarAjax +01/18/13 12:27:34,186 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:27:34,187 [76] INFO index - current module is Calendar +01/18/13 12:27:34,233 [76] DEBUG user - Entering Users() method ... +01/18/13 12:27:34,233 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:27:34,233 [76] DEBUG index - in getColumnFields Users +01/18/13 12:27:34,234 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:27:34,234 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:27:34,234 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:27:34,234 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:27:34,234 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:27:34,234 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:27:34,243 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:27:34,243 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:27:34,243 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:27:34,243 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:27:34,243 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:27:34,244 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:27:34,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,245 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:27:34,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,245 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:27:34,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,246 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:27:34,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,246 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:27:34,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,247 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:27:34,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,247 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:27:34,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,248 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:27:34,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,248 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:27:34,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,249 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:27:34,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,249 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:27:34,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,250 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:27:34,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,250 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:27:34,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,251 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:27:34,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,251 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:27:34,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,252 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:27:34,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,252 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:27:34,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,253 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:27:34,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,253 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:27:34,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,254 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:27:34,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,254 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:27:34,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,255 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:27:34,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,256 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:27:34,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,256 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:27:34,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,256 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:27:34,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,257 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:27:34,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,257 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:27:34,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,258 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:27:34,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,258 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:27:34,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,259 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:27:34,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,260 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:27:34,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,260 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:27:34,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,261 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:27:34,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,261 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:27:34,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,262 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:27:34,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,262 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:27:34,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,263 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:27:34,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,263 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:27:34,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,264 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:27:34,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,264 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:27:34,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,265 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:27:34,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,266 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:27:34,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,266 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:27:34,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,267 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:27:34,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,267 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:27:34,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,268 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:27:34,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,268 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:27:34,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:27:34,269 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:27:34,269 [76] DEBUG index - Current user is: admin +01/18/13 12:27:34,270 [76] DEBUG index - Current theme is: softed +01/18/13 12:27:34,270 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:27:34,270 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:27:34,272 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:27:34,272 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:27:34,274 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:27:34,274 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:27:34,275 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:27:34,275 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:27:34,276 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:27:34,276 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:27:34,276 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:27:34,276 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:27:34,276 [76] DEBUG index - skipping headers +01/18/13 12:27:34,277 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:27:34,278 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:27:34,282 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:27:34,283 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:27:34,283 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:27:34,283 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:27:34,289 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:28')) +01/18/13 12:27:34,292 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:28:14,723 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:28:14,852 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:28:14,852 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:28:14,852 [76] DEBUG index - ****Starting for new session +01/18/13 12:28:14,853 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:28:14,853 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:28:14,853 [76] INFO index - About to take action CalendarAjax +01/18/13 12:28:14,853 [76] DEBUG index - in CalendarAjax +01/18/13 12:28:14,853 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:28:14,853 [76] INFO index - current module is Calendar +01/18/13 12:28:14,901 [76] DEBUG user - Entering Users() method ... +01/18/13 12:28:14,901 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:28:14,901 [76] DEBUG index - in getColumnFields Users +01/18/13 12:28:14,901 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:14,901 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:14,902 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:14,902 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:14,902 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:28:14,902 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:28:14,910 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:14,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:14,910 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:28:14,910 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:28:14,911 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:28:14,911 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:28:14,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,912 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:28:14,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,912 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:28:14,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,913 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:28:14,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,913 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:28:14,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,914 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:28:14,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,915 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:28:14,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,915 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:28:14,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,916 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:28:14,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,916 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:28:14,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,917 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:28:14,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,917 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:28:14,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,918 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:28:14,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,918 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:28:14,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,919 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:28:14,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,919 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:28:14,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,920 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:28:14,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,920 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:28:14,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,921 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:28:14,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,921 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:28:14,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,922 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:28:14,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,923 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:28:14,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,923 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:28:14,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,924 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:28:14,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,924 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:28:14,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,924 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:28:14,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,925 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:28:14,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,925 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:28:14,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,926 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:28:14,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,926 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:28:14,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,927 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:28:14,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,928 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:28:14,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,928 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:28:14,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,929 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:28:14,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,929 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:28:14,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,930 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:28:14,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,930 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:28:14,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,931 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:28:14,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,931 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:28:14,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,932 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:28:14,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,933 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:28:14,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,933 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:28:14,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,934 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:28:14,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,934 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:28:14,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,935 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:28:14,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,935 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:28:14,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,936 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:28:14,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:14,936 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:28:14,937 [76] DEBUG index - Current user is: admin +01/18/13 12:28:14,937 [76] DEBUG index - Current theme is: softed +01/18/13 12:28:14,937 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:28:14,937 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:28:14,939 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:28:14,939 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:28:14,941 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:28:14,941 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:28:14,942 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:28:14,943 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:28:14,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:28:14,943 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:28:14,943 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:28:14,943 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:28:14,943 [76] DEBUG index - skipping headers +01/18/13 12:28:14,945 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:28:14,945 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:28:14,950 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:28:14,951 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:28:14,951 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:28:14,951 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:28:14,956 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:29')) +01/18/13 12:28:14,959 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:28:55,468 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:28:55,600 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:28:55,600 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:28:55,600 [76] DEBUG index - ****Starting for new session +01/18/13 12:28:55,601 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:28:55,601 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:28:55,601 [76] INFO index - About to take action CalendarAjax +01/18/13 12:28:55,601 [76] DEBUG index - in CalendarAjax +01/18/13 12:28:55,601 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:28:55,601 [76] INFO index - current module is Calendar +01/18/13 12:28:55,648 [76] DEBUG user - Entering Users() method ... +01/18/13 12:28:55,648 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:28:55,649 [76] DEBUG index - in getColumnFields Users +01/18/13 12:28:55,649 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:55,649 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:55,649 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:55,649 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:55,649 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:28:55,650 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:28:55,658 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:28:55,658 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:28:55,658 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:28:55,659 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:28:55,659 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:28:55,660 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:28:55,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,660 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:28:55,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,661 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:28:55,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,661 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:28:55,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,662 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:28:55,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,663 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:28:55,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,663 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:28:55,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,664 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:28:55,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,664 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:28:55,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,665 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:28:55,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,665 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:28:55,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,666 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:28:55,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,666 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:28:55,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,667 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:28:55,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,667 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:28:55,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,668 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:28:55,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,668 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:28:55,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,669 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:28:55,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,669 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:28:55,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,670 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:28:55,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,670 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:28:55,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,671 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:28:55,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,671 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:28:55,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,672 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:28:55,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,672 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:28:55,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,673 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:28:55,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,673 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:28:55,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,674 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:28:55,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,674 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:28:55,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,675 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:28:55,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,675 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:28:55,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,676 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:28:55,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,677 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:28:55,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,677 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:28:55,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,678 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:28:55,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,678 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:28:55,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,679 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:28:55,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,679 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:28:55,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,680 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:28:55,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,680 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:28:55,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,681 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:28:55,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,681 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:28:55,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,682 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:28:55,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,682 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:28:55,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,683 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:28:55,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,683 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:28:55,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,684 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:28:55,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:28:55,684 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:28:55,685 [76] DEBUG index - Current user is: admin +01/18/13 12:28:55,685 [76] DEBUG index - Current theme is: softed +01/18/13 12:28:55,685 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:28:55,685 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:28:55,687 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:28:55,687 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:28:55,689 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:28:55,689 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:28:55,691 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:28:55,691 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:28:55,692 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:28:55,692 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:28:55,692 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:28:55,692 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:28:55,692 [76] DEBUG index - skipping headers +01/18/13 12:28:55,693 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:28:55,694 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:28:55,698 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:28:55,699 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:28:55,699 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:28:55,699 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:28:55,703 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:29')) +01/18/13 12:28:55,709 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:29:35,838 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:29:35,968 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:29:35,969 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:29:35,969 [76] DEBUG index - ****Starting for new session +01/18/13 12:29:35,969 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:29:35,969 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:29:35,970 [76] INFO index - About to take action CalendarAjax +01/18/13 12:29:35,970 [76] DEBUG index - in CalendarAjax +01/18/13 12:29:35,970 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:29:35,970 [76] INFO index - current module is Calendar +01/18/13 12:29:36,015 [76] DEBUG user - Entering Users() method ... +01/18/13 12:29:36,016 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:29:36,016 [76] DEBUG index - in getColumnFields Users +01/18/13 12:29:36,016 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:29:36,016 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:29:36,016 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:29:36,017 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:29:36,017 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:29:36,017 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:29:36,024 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:29:36,025 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:29:36,025 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:29:36,025 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:29:36,025 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:29:36,026 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:29:36,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,026 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:29:36,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,027 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:29:36,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,027 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:29:36,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,028 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:29:36,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,028 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:29:36,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,029 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:29:36,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,029 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:29:36,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,030 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:29:36,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,030 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:29:36,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,031 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:29:36,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,032 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:29:36,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,032 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:29:36,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,033 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:29:36,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,033 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:29:36,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,034 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:29:36,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,034 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:29:36,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,035 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:29:36,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,035 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:29:36,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,036 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:29:36,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,036 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:29:36,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,037 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:29:36,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,037 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:29:36,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,038 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:29:36,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,038 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:29:36,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,038 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:29:36,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,039 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:29:36,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,039 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:29:36,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,040 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:29:36,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,040 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:29:36,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,041 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:29:36,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,041 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:29:36,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,042 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:29:36,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,042 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:29:36,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,043 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:29:36,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,043 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:29:36,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,044 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:29:36,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,044 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:29:36,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,045 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:29:36,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,045 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:29:36,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,046 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:29:36,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,046 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:29:36,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,047 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:29:36,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,047 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:29:36,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,048 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:29:36,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,049 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:29:36,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,049 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:29:36,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:29:36,050 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:29:36,050 [76] DEBUG index - Current user is: admin +01/18/13 12:29:36,050 [76] DEBUG index - Current theme is: softed +01/18/13 12:29:36,050 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:29:36,050 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:29:36,052 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:29:36,052 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:29:36,054 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:29:36,054 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:29:36,056 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:29:36,056 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:29:36,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:29:36,057 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:29:36,057 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:29:36,057 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:29:36,057 [76] DEBUG index - skipping headers +01/18/13 12:29:36,058 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:29:36,058 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:29:36,063 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:29:36,064 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:29:36,064 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:29:36,064 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:29:36,068 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:30')) +01/18/13 12:29:36,071 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:30:16,162 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:30:16,287 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:30:16,287 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:30:16,288 [76] DEBUG index - ****Starting for new session +01/18/13 12:30:16,288 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:30:16,288 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:30:16,288 [76] INFO index - About to take action CalendarAjax +01/18/13 12:30:16,288 [76] DEBUG index - in CalendarAjax +01/18/13 12:30:16,289 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:30:16,289 [76] INFO index - current module is Calendar +01/18/13 12:30:16,334 [76] DEBUG user - Entering Users() method ... +01/18/13 12:30:16,334 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:30:16,334 [76] DEBUG index - in getColumnFields Users +01/18/13 12:30:16,334 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:16,335 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:16,335 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:16,335 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:16,335 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:30:16,335 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:30:16,344 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:16,344 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:16,344 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:30:16,344 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:30:16,345 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:30:16,345 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:30:16,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,346 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:30:16,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,346 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:30:16,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,347 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:30:16,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,347 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:30:16,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,348 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:30:16,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,348 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:30:16,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,349 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:30:16,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,349 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:30:16,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,350 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:30:16,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,350 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:30:16,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,351 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:30:16,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,351 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:30:16,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,352 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:30:16,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,352 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:30:16,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,353 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:30:16,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,353 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:30:16,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,354 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:30:16,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,354 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:30:16,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,355 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:30:16,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,356 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:30:16,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,356 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:30:16,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,357 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:30:16,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,357 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:30:16,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,357 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:30:16,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,358 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:30:16,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,358 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:30:16,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,359 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:30:16,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,360 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:30:16,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,360 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:30:16,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,361 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:30:16,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,361 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:30:16,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,362 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:30:16,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,362 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:30:16,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,363 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:30:16,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,363 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:30:16,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,364 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:30:16,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,364 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:30:16,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,365 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:30:16,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,365 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:30:16,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,366 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:30:16,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,366 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:30:16,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,367 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:30:16,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,367 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:30:16,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,368 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:30:16,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,368 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:30:16,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,369 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:30:16,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:16,369 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:30:16,370 [76] DEBUG index - Current user is: admin +01/18/13 12:30:16,370 [76] DEBUG index - Current theme is: softed +01/18/13 12:30:16,370 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:30:16,370 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:30:16,372 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:30:16,372 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:30:16,374 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:30:16,374 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:30:16,376 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:30:16,376 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:30:16,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:30:16,376 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:30:16,377 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:30:16,377 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:30:16,377 [76] DEBUG index - skipping headers +01/18/13 12:30:16,378 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:30:16,378 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:30:16,383 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:30:16,384 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:30:16,384 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:30:16,384 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:30:16,388 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:31')) +01/18/13 12:30:16,391 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:30:56,490 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:30:56,620 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:30:56,620 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:30:56,621 [76] DEBUG index - ****Starting for new session +01/18/13 12:30:56,621 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:30:56,621 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:30:56,621 [76] INFO index - About to take action CalendarAjax +01/18/13 12:30:56,621 [76] DEBUG index - in CalendarAjax +01/18/13 12:30:56,622 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:30:56,622 [76] INFO index - current module is Calendar +01/18/13 12:30:56,668 [76] DEBUG user - Entering Users() method ... +01/18/13 12:30:56,668 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:30:56,668 [76] DEBUG index - in getColumnFields Users +01/18/13 12:30:56,668 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:56,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:56,669 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:56,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:56,669 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:30:56,669 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:30:56,677 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:30:56,678 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:30:56,678 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:30:56,678 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:30:56,678 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:30:56,679 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:30:56,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,679 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:30:56,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,680 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:30:56,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,680 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:30:56,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,681 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:30:56,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,682 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:30:56,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,682 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:30:56,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,682 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:30:56,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,683 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:30:56,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,684 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:30:56,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,684 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:30:56,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,685 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:30:56,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,685 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:30:56,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,686 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:30:56,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,686 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:30:56,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,687 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:30:56,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,687 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:30:56,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,688 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:30:56,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,688 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:30:56,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,689 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:30:56,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,689 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:30:56,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,690 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:30:56,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,690 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:30:56,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,691 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:30:56,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,691 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:30:56,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,692 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:30:56,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,692 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:30:56,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,693 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:30:56,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,693 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:30:56,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,694 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:30:56,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,694 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:30:56,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,695 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:30:56,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,695 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:30:56,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,696 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:30:56,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,696 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:30:56,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,697 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:30:56,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,697 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:30:56,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,698 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:30:56,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,698 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:30:56,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,699 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:30:56,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,699 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:30:56,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,700 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:30:56,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,700 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:30:56,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,701 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:30:56,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,701 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:30:56,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,702 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:30:56,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,702 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:30:56,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:30:56,703 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:30:56,703 [76] DEBUG index - Current user is: admin +01/18/13 12:30:56,703 [76] DEBUG index - Current theme is: softed +01/18/13 12:30:56,704 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:30:56,704 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:30:56,705 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:30:56,706 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:30:56,707 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:30:56,708 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:30:56,709 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:30:56,709 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:30:56,710 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:30:56,710 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:30:56,710 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:30:56,710 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:30:56,710 [76] DEBUG index - skipping headers +01/18/13 12:30:56,711 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:30:56,712 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:30:56,716 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:30:56,717 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:30:56,717 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:30:56,717 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:30:56,723 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:31')) +01/18/13 12:30:56,728 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:31:36,828 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:31:36,956 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:31:36,957 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:31:36,957 [76] DEBUG index - ****Starting for new session +01/18/13 12:31:36,957 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:31:36,958 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:31:36,958 [76] INFO index - About to take action CalendarAjax +01/18/13 12:31:36,958 [76] DEBUG index - in CalendarAjax +01/18/13 12:31:36,958 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:31:36,958 [76] INFO index - current module is Calendar +01/18/13 12:31:37,005 [76] DEBUG user - Entering Users() method ... +01/18/13 12:31:37,005 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:31:37,005 [76] DEBUG index - in getColumnFields Users +01/18/13 12:31:37,005 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:31:37,005 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:31:37,006 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:31:37,006 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:31:37,006 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:31:37,006 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:31:37,015 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:31:37,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:31:37,015 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:31:37,015 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:31:37,016 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:31:37,016 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:31:37,017 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,017 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:31:37,017 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,017 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:31:37,018 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,018 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:31:37,018 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,018 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:31:37,019 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,019 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:31:37,019 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,019 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:31:37,020 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,020 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:31:37,020 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,020 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:31:37,021 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,021 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:31:37,021 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,021 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:31:37,022 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,022 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:31:37,022 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,022 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:31:37,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,023 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:31:37,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,023 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:31:37,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,024 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:31:37,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,024 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:31:37,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,025 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:31:37,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,025 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:31:37,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,026 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:31:37,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,026 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:31:37,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,027 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:31:37,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,028 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:31:37,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,028 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:31:37,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,028 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:31:37,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,029 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:31:37,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,029 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:31:37,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,030 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:31:37,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,030 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:31:37,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,031 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:31:37,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,031 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:31:37,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,032 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:31:37,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,032 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:31:37,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,033 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:31:37,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,033 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:31:37,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,034 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:31:37,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,034 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:31:37,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,035 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:31:37,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,035 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:31:37,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,036 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:31:37,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,036 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:31:37,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,037 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:31:37,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,037 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:31:37,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,038 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:31:37,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,038 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:31:37,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,039 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:31:37,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,039 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:31:37,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:31:37,040 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:31:37,040 [76] DEBUG index - Current user is: admin +01/18/13 12:31:37,040 [76] DEBUG index - Current theme is: softed +01/18/13 12:31:37,041 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:31:37,041 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:31:37,042 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:31:37,043 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:31:37,044 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:31:37,044 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:31:37,046 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:31:37,046 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:31:37,047 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:31:37,047 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:31:37,047 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:31:37,047 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:31:37,047 [76] DEBUG index - skipping headers +01/18/13 12:31:37,048 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:31:37,049 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:31:37,053 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:31:37,054 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:31:37,054 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:31:37,054 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:31:37,058 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:32')) +01/18/13 12:31:37,064 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:32:17,167 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:32:17,295 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:32:17,295 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:32:17,296 [76] DEBUG index - ****Starting for new session +01/18/13 12:32:17,296 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:32:17,296 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:32:17,296 [76] INFO index - About to take action CalendarAjax +01/18/13 12:32:17,297 [76] DEBUG index - in CalendarAjax +01/18/13 12:32:17,297 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:32:17,297 [76] INFO index - current module is Calendar +01/18/13 12:32:17,342 [76] DEBUG user - Entering Users() method ... +01/18/13 12:32:17,342 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:32:17,342 [76] DEBUG index - in getColumnFields Users +01/18/13 12:32:17,342 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:17,343 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:17,343 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:17,343 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:17,343 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:32:17,343 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:32:17,352 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:17,352 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:17,352 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:32:17,352 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:32:17,352 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:32:17,353 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:32:17,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,353 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:32:17,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,354 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:32:17,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,354 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:32:17,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,355 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:32:17,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,355 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:32:17,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,356 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:32:17,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,356 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:32:17,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,357 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:32:17,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,357 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:32:17,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,358 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:32:17,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,358 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:32:17,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,359 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:32:17,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,359 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:32:17,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,360 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:32:17,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,360 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:32:17,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,361 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:32:17,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,361 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:32:17,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,362 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:32:17,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,362 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:32:17,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,363 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:32:17,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,364 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:32:17,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,364 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:32:17,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,365 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:32:17,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,365 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:32:17,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,365 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:32:17,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,366 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:32:17,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,366 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:32:17,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,367 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:32:17,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,367 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:32:17,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,368 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:32:17,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,368 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:32:17,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,369 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:32:17,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,369 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:32:17,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,370 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:32:17,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,370 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:32:17,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,371 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:32:17,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,371 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:32:17,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,372 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:32:17,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,372 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:32:17,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,373 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:32:17,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,373 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:32:17,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,374 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:32:17,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,374 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:32:17,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,375 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:32:17,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,375 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:32:17,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,376 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:32:17,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:17,376 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:32:17,377 [76] DEBUG index - Current user is: admin +01/18/13 12:32:17,377 [76] DEBUG index - Current theme is: softed +01/18/13 12:32:17,377 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:32:17,377 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:32:17,378 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:32:17,379 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:32:17,380 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:32:17,381 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:32:17,382 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:32:17,382 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:32:17,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:32:17,383 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:32:17,383 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:32:17,383 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:32:17,383 [76] DEBUG index - skipping headers +01/18/13 12:32:17,384 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:32:17,385 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:32:17,389 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:32:17,390 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:32:17,390 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:32:17,390 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:32:17,399 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:33')) +01/18/13 12:32:17,402 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:32:57,856 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:32:57,982 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:32:57,982 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:32:57,982 [76] DEBUG index - ****Starting for new session +01/18/13 12:32:57,983 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:32:57,983 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:32:57,983 [76] INFO index - About to take action CalendarAjax +01/18/13 12:32:57,983 [76] DEBUG index - in CalendarAjax +01/18/13 12:32:57,983 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:32:57,983 [76] INFO index - current module is Calendar +01/18/13 12:32:58,028 [76] DEBUG user - Entering Users() method ... +01/18/13 12:32:58,029 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:32:58,029 [76] DEBUG index - in getColumnFields Users +01/18/13 12:32:58,029 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:58,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:58,029 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:58,030 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:58,030 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:32:58,030 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:32:58,038 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:32:58,038 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:32:58,038 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:32:58,039 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:32:58,039 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:32:58,039 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:32:58,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,040 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:32:58,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,041 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:32:58,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,041 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:32:58,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,042 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:32:58,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,042 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:32:58,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,043 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:32:58,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,043 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:32:58,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,044 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:32:58,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,044 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:32:58,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,045 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:32:58,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,045 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:32:58,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,046 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:32:58,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,046 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:32:58,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,047 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:32:58,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,047 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:32:58,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,048 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:32:58,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,048 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:32:58,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,049 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:32:58,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,049 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:32:58,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,050 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:32:58,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,050 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:32:58,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,051 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:32:58,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,051 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:32:58,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,051 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:32:58,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,052 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:32:58,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,052 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:32:58,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,053 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:32:58,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,053 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:32:58,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,054 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:32:58,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,054 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:32:58,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,055 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:32:58,055 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,055 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:32:58,056 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,056 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:32:58,056 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,056 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:32:58,057 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,057 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:32:58,057 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,057 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:32:58,058 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,058 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:32:58,058 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,058 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:32:58,059 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,059 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:32:58,059 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,059 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:32:58,060 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,060 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:32:58,060 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,060 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:32:58,061 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,061 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:32:58,061 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,061 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:32:58,062 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,062 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:32:58,062 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,062 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:32:58,063 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:32:58,063 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:32:58,063 [76] DEBUG index - Current user is: admin +01/18/13 12:32:58,063 [76] DEBUG index - Current theme is: softed +01/18/13 12:32:58,063 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:32:58,063 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:32:58,065 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:32:58,065 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:32:58,067 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:32:58,067 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:32:58,069 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:32:58,069 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:32:58,070 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:32:58,070 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:32:58,070 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:32:58,070 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:32:58,070 [76] DEBUG index - skipping headers +01/18/13 12:32:58,071 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:32:58,072 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:32:58,076 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:32:58,077 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:32:58,077 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:32:58,077 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:32:58,081 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:33')) +01/18/13 12:32:58,084 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:33:38,186 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:33:38,313 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:33:38,313 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:33:38,313 [76] DEBUG index - ****Starting for new session +01/18/13 12:33:38,314 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:33:38,314 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:33:38,314 [76] INFO index - About to take action CalendarAjax +01/18/13 12:33:38,314 [76] DEBUG index - in CalendarAjax +01/18/13 12:33:38,314 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:33:38,314 [76] INFO index - current module is Calendar +01/18/13 12:33:38,359 [76] DEBUG user - Entering Users() method ... +01/18/13 12:33:38,359 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:33:38,359 [76] DEBUG index - in getColumnFields Users +01/18/13 12:33:38,359 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:33:38,360 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:33:38,360 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:33:38,360 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:33:38,360 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:33:38,360 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:33:38,370 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:33:38,370 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:33:38,371 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:33:38,371 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:33:38,371 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:33:38,372 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:33:38,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,372 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:33:38,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,373 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:33:38,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,373 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:33:38,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,374 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:33:38,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,374 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:33:38,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,375 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:33:38,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,375 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:33:38,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,376 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:33:38,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,376 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:33:38,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,377 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:33:38,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,377 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:33:38,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,378 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:33:38,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,378 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:33:38,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,379 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:33:38,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,379 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:33:38,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,380 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:33:38,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,380 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:33:38,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,381 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:33:38,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,381 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:33:38,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,382 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:33:38,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,382 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:33:38,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,383 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:33:38,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,383 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:33:38,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,383 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:33:38,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,384 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:33:38,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,384 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:33:38,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,385 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:33:38,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,385 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:33:38,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,386 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:33:38,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,386 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:33:38,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,387 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:33:38,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,387 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:33:38,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,388 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:33:38,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,388 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:33:38,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,389 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:33:38,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,389 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:33:38,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,390 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:33:38,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,390 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:33:38,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,391 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:33:38,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,392 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:33:38,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,392 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:33:38,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,393 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:33:38,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,393 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:33:38,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,394 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:33:38,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,394 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:33:38,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,395 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:33:38,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:33:38,395 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:33:38,396 [76] DEBUG index - Current user is: admin +01/18/13 12:33:38,396 [76] DEBUG index - Current theme is: softed +01/18/13 12:33:38,396 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:33:38,396 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:33:38,398 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:33:38,398 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:33:38,400 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:33:38,400 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:33:38,401 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:33:38,402 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:33:38,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:33:38,402 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:33:38,402 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:33:38,402 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:33:38,403 [76] DEBUG index - skipping headers +01/18/13 12:33:38,403 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:33:38,404 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:33:38,409 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:33:38,409 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:33:38,409 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:33:38,409 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:33:38,413 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:34')) +01/18/13 12:33:38,416 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:34:18,953 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:34:19,077 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:34:19,077 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:34:19,077 [76] DEBUG index - ****Starting for new session +01/18/13 12:34:19,078 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:34:19,078 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:34:19,078 [76] INFO index - About to take action CalendarAjax +01/18/13 12:34:19,078 [76] DEBUG index - in CalendarAjax +01/18/13 12:34:19,078 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:34:19,078 [76] INFO index - current module is Calendar +01/18/13 12:34:19,124 [76] DEBUG user - Entering Users() method ... +01/18/13 12:34:19,124 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:34:19,124 [76] DEBUG index - in getColumnFields Users +01/18/13 12:34:19,124 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:19,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:19,125 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:19,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:19,125 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:34:19,125 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:34:19,135 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:19,135 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:19,135 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:34:19,135 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:34:19,135 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:34:19,136 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:34:19,136 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,136 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:34:19,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,137 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:34:19,137 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,137 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:34:19,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,138 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:34:19,138 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,138 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:34:19,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,139 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:34:19,139 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,140 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:34:19,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,140 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:34:19,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,141 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:34:19,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,141 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:34:19,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,142 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:34:19,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,142 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:34:19,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,143 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:34:19,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,143 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:34:19,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,144 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:34:19,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,144 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:34:19,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,145 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:34:19,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,145 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:34:19,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,146 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:34:19,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,146 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:34:19,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,147 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:34:19,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,147 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:34:19,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,148 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:34:19,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,148 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:34:19,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,149 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:34:19,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,149 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:34:19,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,150 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:34:19,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,150 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:34:19,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,151 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:34:19,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,151 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:34:19,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,152 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:34:19,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,152 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:34:19,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,153 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:34:19,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,153 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:34:19,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,154 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:34:19,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,154 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:34:19,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,155 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:34:19,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,155 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:34:19,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,156 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:34:19,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,156 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:34:19,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,157 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:34:19,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,157 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:34:19,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,158 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:34:19,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,158 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:34:19,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,159 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:34:19,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,160 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:34:19,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:19,160 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:34:19,161 [76] DEBUG index - Current user is: admin +01/18/13 12:34:19,161 [76] DEBUG index - Current theme is: softed +01/18/13 12:34:19,161 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:34:19,161 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:34:19,163 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:34:19,163 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:34:19,165 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:34:19,165 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:34:19,167 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:34:19,167 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:34:19,167 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:34:19,168 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:34:19,168 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:34:19,168 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:34:19,168 [76] DEBUG index - skipping headers +01/18/13 12:34:19,169 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:34:19,169 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:34:19,174 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:34:19,175 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:34:19,175 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:34:19,175 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:34:19,179 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:35')) +01/18/13 12:34:19,183 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:34:59,714 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:34:59,841 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:34:59,841 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:34:59,841 [76] DEBUG index - ****Starting for new session +01/18/13 12:34:59,841 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:34:59,842 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:34:59,842 [76] INFO index - About to take action CalendarAjax +01/18/13 12:34:59,842 [76] DEBUG index - in CalendarAjax +01/18/13 12:34:59,842 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:34:59,842 [76] INFO index - current module is Calendar +01/18/13 12:34:59,888 [76] DEBUG user - Entering Users() method ... +01/18/13 12:34:59,888 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:34:59,888 [76] DEBUG index - in getColumnFields Users +01/18/13 12:34:59,888 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:59,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:59,889 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:59,889 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:59,889 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:34:59,889 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:34:59,897 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:34:59,897 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:34:59,897 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:34:59,897 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:34:59,898 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:34:59,898 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:34:59,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,899 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:34:59,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,900 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:34:59,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,900 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:34:59,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,901 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:34:59,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,901 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:34:59,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,902 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:34:59,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,902 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:34:59,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,903 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:34:59,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,903 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:34:59,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,904 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:34:59,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,904 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:34:59,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,905 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:34:59,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,905 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:34:59,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,906 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:34:59,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,906 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:34:59,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,907 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:34:59,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,908 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:34:59,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,908 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:34:59,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,909 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:34:59,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,909 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:34:59,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,910 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:34:59,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,910 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:34:59,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,911 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:34:59,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,911 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:34:59,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,911 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:34:59,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,912 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:34:59,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,912 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:34:59,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,913 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:34:59,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,913 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:34:59,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,914 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:34:59,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,914 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:34:59,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,915 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:34:59,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,915 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:34:59,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,916 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:34:59,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,917 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:34:59,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,917 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:34:59,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,918 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:34:59,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,918 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:34:59,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,919 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:34:59,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,919 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:34:59,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,920 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:34:59,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,920 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:34:59,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,921 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:34:59,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,921 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:34:59,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,922 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:34:59,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,922 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:34:59,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:34:59,923 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:34:59,923 [76] DEBUG index - Current user is: admin +01/18/13 12:34:59,923 [76] DEBUG index - Current theme is: softed +01/18/13 12:34:59,923 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:34:59,923 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:34:59,925 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:34:59,925 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:34:59,927 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:34:59,927 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:34:59,929 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:34:59,929 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:34:59,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:34:59,930 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:34:59,930 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:34:59,930 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:34:59,930 [76] DEBUG index - skipping headers +01/18/13 12:34:59,931 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:34:59,932 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:34:59,937 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:34:59,937 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:34:59,937 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:34:59,937 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:34:59,944 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:35')) +01/18/13 12:34:59,950 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:35:40,451 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:35:40,583 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:35:40,583 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:35:40,583 [76] DEBUG index - ****Starting for new session +01/18/13 12:35:40,584 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:35:40,584 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:35:40,584 [76] INFO index - About to take action CalendarAjax +01/18/13 12:35:40,584 [76] DEBUG index - in CalendarAjax +01/18/13 12:35:40,584 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:35:40,584 [76] INFO index - current module is Calendar +01/18/13 12:35:40,632 [76] DEBUG user - Entering Users() method ... +01/18/13 12:35:40,633 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:35:40,633 [76] DEBUG index - in getColumnFields Users +01/18/13 12:35:40,633 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:35:40,633 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:35:40,633 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:35:40,633 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:35:40,634 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:35:40,634 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:35:40,642 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:35:40,642 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:35:40,642 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:35:40,642 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:35:40,643 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:35:40,643 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:35:40,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,644 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:35:40,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,645 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:35:40,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,645 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:35:40,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,646 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:35:40,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,646 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:35:40,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,647 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:35:40,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,647 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:35:40,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,648 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:35:40,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,648 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:35:40,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,649 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:35:40,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,649 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:35:40,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,650 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:35:40,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,650 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:35:40,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,651 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:35:40,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,651 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:35:40,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,652 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:35:40,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,652 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:35:40,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,653 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:35:40,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,654 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:35:40,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,654 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:35:40,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,655 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:35:40,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,655 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:35:40,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,656 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:35:40,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,656 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:35:40,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,656 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:35:40,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,657 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:35:40,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,657 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:35:40,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,658 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:35:40,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,658 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:35:40,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,659 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:35:40,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,659 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:35:40,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,660 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:35:40,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,660 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:35:40,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,661 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:35:40,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,662 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:35:40,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,662 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:35:40,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,663 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:35:40,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,663 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:35:40,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,664 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:35:40,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,664 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:35:40,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,665 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:35:40,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,665 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:35:40,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,666 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:35:40,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,666 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:35:40,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,667 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:35:40,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,668 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:35:40,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:35:40,668 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:35:40,668 [76] DEBUG index - Current user is: admin +01/18/13 12:35:40,669 [76] DEBUG index - Current theme is: softed +01/18/13 12:35:40,669 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:35:40,669 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:35:40,671 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:35:40,671 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:35:40,673 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:35:40,673 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:35:40,675 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:35:40,675 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:35:40,676 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:35:40,676 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:35:40,676 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:35:40,676 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:35:40,676 [76] DEBUG index - skipping headers +01/18/13 12:35:40,677 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:35:40,678 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:35:40,683 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:35:40,683 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:35:40,683 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:35:40,683 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:35:40,687 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:36')) +01/18/13 12:35:40,691 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:36:21,135 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:36:21,266 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:36:21,266 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:36:21,267 [76] DEBUG index - ****Starting for new session +01/18/13 12:36:21,267 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:36:21,267 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:36:21,267 [76] INFO index - About to take action CalendarAjax +01/18/13 12:36:21,267 [76] DEBUG index - in CalendarAjax +01/18/13 12:36:21,268 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:36:21,268 [76] INFO index - current module is Calendar +01/18/13 12:36:21,317 [76] DEBUG user - Entering Users() method ... +01/18/13 12:36:21,318 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:36:21,318 [76] DEBUG index - in getColumnFields Users +01/18/13 12:36:21,318 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:36:21,318 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:36:21,318 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:36:21,319 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:36:21,319 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:36:21,319 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:36:21,355 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:36:21,355 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:36:21,356 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:36:21,356 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:36:21,356 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:36:21,357 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:36:21,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,357 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:36:21,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,358 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:36:21,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,358 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:36:21,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,359 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:36:21,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,360 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:36:21,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,360 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:36:21,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,361 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:36:21,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,361 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:36:21,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,362 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:36:21,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,362 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:36:21,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,363 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:36:21,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,363 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:36:21,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,364 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:36:21,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,364 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:36:21,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,365 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:36:21,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,365 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:36:21,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,366 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:36:21,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,366 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:36:21,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,367 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:36:21,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,367 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:36:21,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,368 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:36:21,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,369 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:36:21,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,369 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:36:21,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,369 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:36:21,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,370 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:36:21,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,370 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:36:21,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,371 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:36:21,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,371 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:36:21,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,372 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:36:21,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,372 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:36:21,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,373 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:36:21,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,373 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:36:21,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,374 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:36:21,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,374 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:36:21,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,375 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:36:21,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,375 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:36:21,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,376 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:36:21,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,376 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:36:21,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,377 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:36:21,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,378 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:36:21,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,378 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:36:21,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,379 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:36:21,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,379 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:36:21,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,380 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:36:21,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,380 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:36:21,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,381 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:36:21,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:36:21,381 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:36:21,382 [76] DEBUG index - Current user is: admin +01/18/13 12:36:21,382 [76] DEBUG index - Current theme is: softed +01/18/13 12:36:21,382 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:36:21,382 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:36:21,384 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:36:21,384 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:36:21,386 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:36:21,386 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:36:21,388 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:36:21,388 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:36:21,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:36:21,389 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:36:21,389 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:36:21,389 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:36:21,389 [76] DEBUG index - skipping headers +01/18/13 12:36:21,390 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:36:21,390 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:36:21,395 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:36:21,395 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:36:21,396 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:36:21,396 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:36:21,400 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:37')) +01/18/13 12:36:21,403 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:37:01,976 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:37:02,106 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:37:02,106 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:37:02,106 [76] DEBUG index - ****Starting for new session +01/18/13 12:37:02,107 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:37:02,107 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:37:02,107 [76] INFO index - About to take action CalendarAjax +01/18/13 12:37:02,107 [76] DEBUG index - in CalendarAjax +01/18/13 12:37:02,107 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:37:02,107 [76] INFO index - current module is Calendar +01/18/13 12:37:02,155 [76] DEBUG user - Entering Users() method ... +01/18/13 12:37:02,155 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:37:02,155 [76] DEBUG index - in getColumnFields Users +01/18/13 12:37:02,155 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:02,156 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:02,156 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:02,156 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:02,156 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:37:02,156 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:37:02,165 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:02,166 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:02,166 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:37:02,166 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:37:02,166 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:37:02,167 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:37:02,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,167 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:37:02,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,168 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:37:02,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,169 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:37:02,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,169 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:37:02,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,170 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:37:02,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,170 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:37:02,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,171 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:37:02,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,171 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:37:02,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,172 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:37:02,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,172 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:37:02,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,173 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:37:02,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,173 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:37:02,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,174 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:37:02,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,174 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:37:02,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,175 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:37:02,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,176 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:37:02,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,176 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:37:02,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,177 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:37:02,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,177 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:37:02,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,178 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:37:02,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,178 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:37:02,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,179 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:37:02,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,179 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:37:02,180 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,180 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:37:02,180 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,180 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:37:02,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,181 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:37:02,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,181 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:37:02,182 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,182 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:37:02,182 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,182 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:37:02,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,183 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:37:02,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,183 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:37:02,184 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,184 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:37:02,184 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,185 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:37:02,185 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,185 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:37:02,186 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,186 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:37:02,186 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,186 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:37:02,187 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,187 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:37:02,187 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,187 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:37:02,188 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,188 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:37:02,188 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,188 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:37:02,189 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,189 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:37:02,189 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,189 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:37:02,190 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,190 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:37:02,190 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,191 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:37:02,191 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,191 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:37:02,192 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,192 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:37:02,192 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:02,192 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:37:02,193 [76] DEBUG index - Current user is: admin +01/18/13 12:37:02,193 [76] DEBUG index - Current theme is: softed +01/18/13 12:37:02,193 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:37:02,193 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:37:02,195 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:37:02,195 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:37:02,197 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:37:02,197 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:37:02,199 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:37:02,199 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:37:02,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:37:02,199 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:37:02,200 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:37:02,200 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:37:02,200 [76] DEBUG index - skipping headers +01/18/13 12:37:02,201 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:37:02,201 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:37:02,206 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:37:02,207 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:37:02,207 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:37:02,207 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:37:02,213 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:38')) +01/18/13 12:37:02,216 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:37:42,320 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:37:42,452 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:37:42,452 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:37:42,453 [76] DEBUG index - ****Starting for new session +01/18/13 12:37:42,453 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:37:42,453 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:37:42,453 [76] INFO index - About to take action CalendarAjax +01/18/13 12:37:42,454 [76] DEBUG index - in CalendarAjax +01/18/13 12:37:42,454 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:37:42,454 [76] INFO index - current module is Calendar +01/18/13 12:37:42,501 [76] DEBUG user - Entering Users() method ... +01/18/13 12:37:42,501 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:37:42,501 [76] DEBUG index - in getColumnFields Users +01/18/13 12:37:42,501 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:42,502 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:42,502 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:42,502 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:42,502 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:37:42,502 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:37:42,511 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:37:42,511 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:37:42,511 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:37:42,511 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:37:42,512 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:37:42,512 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:37:42,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,513 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:37:42,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,514 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:37:42,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,514 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:37:42,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,515 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:37:42,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,515 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:37:42,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,516 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:37:42,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,516 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:37:42,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,517 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:37:42,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,517 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:37:42,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,518 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:37:42,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,518 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:37:42,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,519 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:37:42,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,519 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:37:42,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,520 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:37:42,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,520 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:37:42,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,521 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:37:42,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,521 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:37:42,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,522 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:37:42,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,522 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:37:42,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,523 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:37:42,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,523 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:37:42,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,524 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:37:42,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,524 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:37:42,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,525 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:37:42,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,525 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:37:42,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,526 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:37:42,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,526 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:37:42,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,527 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:37:42,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,527 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:37:42,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,528 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:37:42,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,528 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:37:42,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,529 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:37:42,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,529 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:37:42,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,530 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:37:42,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,530 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:37:42,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,531 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:37:42,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,531 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:37:42,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,532 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:37:42,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,532 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:37:42,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,533 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:37:42,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,533 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:37:42,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,534 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:37:42,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,534 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:37:42,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,535 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:37:42,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,535 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:37:42,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,536 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:37:42,536 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:37:42,536 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:37:42,537 [76] DEBUG index - Current user is: admin +01/18/13 12:37:42,537 [76] DEBUG index - Current theme is: softed +01/18/13 12:37:42,537 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:37:42,537 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:37:42,539 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:37:42,539 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:37:42,541 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:37:42,541 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:37:42,542 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:37:42,543 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:37:42,543 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:37:42,544 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:37:42,544 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:37:42,544 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:37:42,544 [76] DEBUG index - skipping headers +01/18/13 12:37:42,545 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:37:42,546 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:37:42,550 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:37:42,551 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:37:42,551 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:37:42,551 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:37:42,559 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:38')) +01/18/13 12:37:42,562 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:38:22,663 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:38:22,798 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:38:22,798 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:38:22,798 [76] DEBUG index - ****Starting for new session +01/18/13 12:38:22,799 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:38:22,799 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:38:22,799 [76] INFO index - About to take action CalendarAjax +01/18/13 12:38:22,799 [76] DEBUG index - in CalendarAjax +01/18/13 12:38:22,799 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:38:22,799 [76] INFO index - current module is Calendar +01/18/13 12:38:22,847 [76] DEBUG user - Entering Users() method ... +01/18/13 12:38:22,847 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:38:22,847 [76] DEBUG index - in getColumnFields Users +01/18/13 12:38:22,848 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:38:22,848 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:38:22,848 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:38:22,848 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:38:22,848 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:38:22,849 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:38:22,859 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:38:22,859 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:38:22,860 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:38:22,860 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:38:22,860 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:38:22,861 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:38:22,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,862 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:38:22,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,862 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:38:22,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,863 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:38:22,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,863 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:38:22,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,864 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:38:22,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,864 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:38:22,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,865 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:38:22,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,865 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:38:22,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,866 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:38:22,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,866 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:38:22,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,867 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:38:22,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,867 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:38:22,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,868 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:38:22,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,868 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:38:22,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,869 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:38:22,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,870 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:38:22,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,870 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:38:22,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,871 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:38:22,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,871 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:38:22,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,872 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:38:22,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,872 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:38:22,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,873 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:38:22,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,873 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:38:22,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,873 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:38:22,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,874 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:38:22,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,875 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:38:22,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,875 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:38:22,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,876 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:38:22,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,876 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:38:22,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,877 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:38:22,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,877 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:38:22,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,878 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:38:22,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,878 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:38:22,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,879 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:38:22,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,879 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:38:22,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,880 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:38:22,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,880 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:38:22,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,881 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:38:22,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,881 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:38:22,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,882 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:38:22,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,882 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:38:22,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,883 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:38:22,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,883 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:38:22,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,884 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:38:22,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,884 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:38:22,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,885 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:38:22,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:38:22,885 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:38:22,886 [76] DEBUG index - Current user is: admin +01/18/13 12:38:22,886 [76] DEBUG index - Current theme is: softed +01/18/13 12:38:22,886 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:38:22,886 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:38:22,888 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:38:22,888 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:38:22,890 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:38:22,890 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:38:22,892 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:38:22,892 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:38:22,893 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:38:22,893 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:38:22,893 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:38:22,893 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:38:22,893 [76] DEBUG index - skipping headers +01/18/13 12:38:22,894 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:38:22,895 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:38:22,899 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:38:22,900 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:38:22,900 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:38:22,900 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:38:22,905 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:39')) +01/18/13 12:38:22,908 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:39:03,015 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:39:03,143 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:39:03,143 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:39:03,144 [76] DEBUG index - ****Starting for new session +01/18/13 12:39:03,144 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:39:03,144 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:39:03,145 [76] INFO index - About to take action CalendarAjax +01/18/13 12:39:03,145 [76] DEBUG index - in CalendarAjax +01/18/13 12:39:03,145 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:39:03,145 [76] INFO index - current module is Calendar +01/18/13 12:39:03,192 [76] DEBUG user - Entering Users() method ... +01/18/13 12:39:03,193 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:39:03,193 [76] DEBUG index - in getColumnFields Users +01/18/13 12:39:03,193 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:03,193 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:03,193 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:03,194 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:03,194 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:39:03,194 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:39:03,207 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:03,208 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:03,208 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:39:03,208 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:39:03,208 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:39:03,209 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:39:03,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,210 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:39:03,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,210 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:39:03,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,211 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:39:03,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,211 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:39:03,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,212 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:39:03,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,212 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:39:03,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,213 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:39:03,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,213 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:39:03,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,214 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:39:03,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,214 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:39:03,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,215 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:39:03,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,215 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:39:03,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,216 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:39:03,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,216 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:39:03,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,217 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:39:03,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,217 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:39:03,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,218 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:39:03,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,218 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:39:03,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,219 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:39:03,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,219 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:39:03,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,220 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:39:03,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,221 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:39:03,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,221 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:39:03,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,221 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:39:03,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,222 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:39:03,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,223 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:39:03,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,223 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:39:03,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,224 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:39:03,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,224 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:39:03,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,225 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:39:03,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,225 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:39:03,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,226 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:39:03,226 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,226 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:39:03,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,227 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:39:03,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,227 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:39:03,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,228 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:39:03,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,228 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:39:03,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,229 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:39:03,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,229 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:39:03,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,230 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:39:03,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,230 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:39:03,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,231 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:39:03,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,231 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:39:03,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,232 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:39:03,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,232 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:39:03,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,233 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:39:03,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:03,233 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:39:03,234 [76] DEBUG index - Current user is: admin +01/18/13 12:39:03,234 [76] DEBUG index - Current theme is: softed +01/18/13 12:39:03,234 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:39:03,234 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:39:03,236 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:39:03,236 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:39:03,238 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:39:03,238 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:39:03,240 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:39:03,240 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:39:03,241 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:39:03,241 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:39:03,241 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:39:03,241 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:39:03,241 [76] DEBUG index - skipping headers +01/18/13 12:39:03,242 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:39:03,243 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:39:03,247 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:39:03,248 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:39:03,248 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:39:03,248 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:39:03,252 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:40')) +01/18/13 12:39:03,255 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:39:43,346 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:39:43,478 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:39:43,478 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:39:43,479 [76] DEBUG index - ****Starting for new session +01/18/13 12:39:43,479 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:39:43,479 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:39:43,480 [76] INFO index - About to take action CalendarAjax +01/18/13 12:39:43,480 [76] DEBUG index - in CalendarAjax +01/18/13 12:39:43,480 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:39:43,480 [76] INFO index - current module is Calendar +01/18/13 12:39:43,527 [76] DEBUG user - Entering Users() method ... +01/18/13 12:39:43,527 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:39:43,527 [76] DEBUG index - in getColumnFields Users +01/18/13 12:39:43,527 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:43,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:43,528 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:43,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:43,528 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:39:43,528 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:39:43,538 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:39:43,538 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:39:43,538 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:39:43,538 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:39:43,538 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:39:43,539 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:39:43,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,540 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:39:43,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,540 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:39:43,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,541 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:39:43,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,541 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:39:43,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,542 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:39:43,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,542 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:39:43,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,543 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:39:43,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,543 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:39:43,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,544 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:39:43,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,544 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:39:43,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,545 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:39:43,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,545 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:39:43,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,546 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:39:43,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,546 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:39:43,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,547 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:39:43,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,547 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:39:43,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,548 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:39:43,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,549 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:39:43,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,549 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:39:43,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,550 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:39:43,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,550 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:39:43,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,551 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:39:43,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,551 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:39:43,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,552 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:39:43,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,552 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:39:43,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,553 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:39:43,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,553 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:39:43,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,554 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:39:43,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,554 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:39:43,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,555 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:39:43,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,555 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:39:43,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,556 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:39:43,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,556 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:39:43,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,557 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:39:43,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,557 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:39:43,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,558 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:39:43,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,558 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:39:43,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,559 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:39:43,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,560 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:39:43,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,560 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:39:43,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,561 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:39:43,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,561 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:39:43,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,562 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:39:43,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,562 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:39:43,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,563 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:39:43,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,563 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:39:43,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:39:43,564 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:39:43,564 [76] DEBUG index - Current user is: admin +01/18/13 12:39:43,564 [76] DEBUG index - Current theme is: softed +01/18/13 12:39:43,564 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:39:43,564 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:39:43,566 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:39:43,567 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:39:43,568 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:39:43,568 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:39:43,570 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:39:43,570 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:39:43,571 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:39:43,571 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:39:43,571 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:39:43,571 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:39:43,571 [76] DEBUG index - skipping headers +01/18/13 12:39:43,572 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:39:43,573 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:39:43,577 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:39:43,578 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:39:43,578 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:39:43,578 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:39:43,582 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:40')) +01/18/13 12:39:43,587 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:40:23,694 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:40:23,823 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:40:23,823 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:40:23,824 [76] DEBUG index - ****Starting for new session +01/18/13 12:40:23,824 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:40:23,824 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:40:23,824 [76] INFO index - About to take action CalendarAjax +01/18/13 12:40:23,824 [76] DEBUG index - in CalendarAjax +01/18/13 12:40:23,825 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:40:23,825 [76] INFO index - current module is Calendar +01/18/13 12:40:23,872 [76] DEBUG user - Entering Users() method ... +01/18/13 12:40:23,872 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:40:23,872 [76] DEBUG index - in getColumnFields Users +01/18/13 12:40:23,872 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:40:23,873 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:40:23,873 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:40:23,873 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:40:23,873 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:40:23,873 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:40:23,881 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:40:23,881 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:40:23,881 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:40:23,881 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:40:23,882 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:40:23,883 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:40:23,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,883 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:40:23,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,884 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:40:23,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,884 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:40:23,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,885 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:40:23,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,885 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:40:23,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,886 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:40:23,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,886 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:40:23,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,887 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:40:23,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,887 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:40:23,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,888 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:40:23,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,888 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:40:23,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,889 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:40:23,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,889 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:40:23,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,890 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:40:23,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,890 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:40:23,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,891 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:40:23,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,891 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:40:23,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,892 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:40:23,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,892 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:40:23,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,893 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:40:23,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,893 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:40:23,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,894 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:40:23,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,894 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:40:23,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,895 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:40:23,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,895 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:40:23,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,896 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:40:23,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,896 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:40:23,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,897 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:40:23,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,897 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:40:23,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,898 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:40:23,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,898 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:40:23,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,899 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:40:23,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,899 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:40:23,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,900 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:40:23,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,901 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:40:23,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,901 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:40:23,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,902 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:40:23,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,902 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:40:23,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,903 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:40:23,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,903 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:40:23,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,904 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:40:23,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,904 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:40:23,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,905 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:40:23,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,905 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:40:23,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,906 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:40:23,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,906 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:40:23,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:40:23,907 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:40:23,907 [76] DEBUG index - Current user is: admin +01/18/13 12:40:23,907 [76] DEBUG index - Current theme is: softed +01/18/13 12:40:23,907 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:40:23,907 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:40:23,909 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:40:23,909 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:40:23,911 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:40:23,911 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:40:23,913 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:40:23,913 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:40:23,914 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:40:23,914 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:40:23,914 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:40:23,914 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:40:23,914 [76] DEBUG index - skipping headers +01/18/13 12:40:23,915 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:40:23,916 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:40:23,921 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:40:23,921 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:40:23,921 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:40:23,921 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:40:23,925 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:41')) +01/18/13 12:40:23,932 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:41:04,039 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:41:04,166 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:41:04,166 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:41:04,166 [76] DEBUG index - ****Starting for new session +01/18/13 12:41:04,167 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:41:04,167 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:41:04,167 [76] INFO index - About to take action CalendarAjax +01/18/13 12:41:04,167 [76] DEBUG index - in CalendarAjax +01/18/13 12:41:04,167 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:41:04,167 [76] INFO index - current module is Calendar +01/18/13 12:41:04,216 [76] DEBUG user - Entering Users() method ... +01/18/13 12:41:04,216 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:41:04,216 [76] DEBUG index - in getColumnFields Users +01/18/13 12:41:04,216 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:04,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:04,217 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:04,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:04,217 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:41:04,217 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:41:04,225 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:04,225 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:04,225 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:41:04,225 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:41:04,226 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:41:04,227 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:41:04,227 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,227 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:41:04,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,228 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:41:04,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,228 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:41:04,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,229 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:41:04,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,229 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:41:04,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,230 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:41:04,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,230 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:41:04,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,231 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:41:04,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,231 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:41:04,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,232 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:41:04,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,233 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:41:04,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,233 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:41:04,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,234 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:41:04,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,234 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:41:04,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,235 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:41:04,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,235 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:41:04,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,236 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:41:04,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,236 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:41:04,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,237 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:41:04,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,238 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:41:04,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,238 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:41:04,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,239 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:41:04,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,239 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:41:04,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,239 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:41:04,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,240 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:41:04,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,240 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:41:04,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,241 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:41:04,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,241 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:41:04,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,242 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:41:04,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,242 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:41:04,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,243 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:41:04,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,243 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:41:04,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,244 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:41:04,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,244 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:41:04,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,245 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:41:04,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,245 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:41:04,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,246 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:41:04,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,246 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:41:04,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,247 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:41:04,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,248 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:41:04,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,248 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:41:04,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,249 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:41:04,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,249 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:41:04,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,250 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:41:04,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,250 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:41:04,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,251 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:41:04,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:04,251 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:41:04,252 [76] DEBUG index - Current user is: admin +01/18/13 12:41:04,252 [76] DEBUG index - Current theme is: softed +01/18/13 12:41:04,252 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:41:04,252 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:41:04,254 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:41:04,254 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:41:04,256 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:41:04,256 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:41:04,257 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:41:04,258 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:41:04,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:41:04,258 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:41:04,258 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:41:04,258 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:41:04,259 [76] DEBUG index - skipping headers +01/18/13 12:41:04,260 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:41:04,260 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:41:04,265 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:41:04,265 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:41:04,266 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:41:04,266 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:41:04,270 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:42')) +01/18/13 12:41:04,273 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:41:44,375 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:41:48,635 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:41:48,635 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:41:48,635 [76] DEBUG index - ****Starting for new session +01/18/13 12:41:48,636 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:41:48,637 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:41:48,637 [76] INFO index - About to take action CalendarAjax +01/18/13 12:41:48,637 [76] DEBUG index - in CalendarAjax +01/18/13 12:41:48,638 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:41:48,638 [76] INFO index - current module is Calendar +01/18/13 12:41:48,693 [76] DEBUG user - Entering Users() method ... +01/18/13 12:41:48,694 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:41:48,694 [76] DEBUG index - in getColumnFields Users +01/18/13 12:41:48,694 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:48,694 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:48,694 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:48,695 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:48,695 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:41:48,695 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:41:48,704 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:41:48,704 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:41:48,704 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:41:48,704 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:41:48,704 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:41:48,705 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:41:48,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,706 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:41:48,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,706 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:41:48,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,707 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:41:48,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,707 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:41:48,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,708 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:41:48,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,708 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:41:48,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,709 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:41:48,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,709 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:41:48,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,710 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:41:48,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,710 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:41:48,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,711 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:41:48,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,711 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:41:48,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,712 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:41:48,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,712 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:41:48,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,713 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:41:48,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,713 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:41:48,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,714 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:41:48,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,714 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:41:48,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,715 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:41:48,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,715 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:41:48,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,716 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:41:48,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,716 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:41:48,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,717 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:41:48,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,717 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:41:48,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,718 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:41:48,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,718 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:41:48,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,718 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:41:48,719 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,719 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:41:48,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,720 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:41:48,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,720 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:41:48,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,721 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:41:48,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,721 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:41:48,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,722 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:41:48,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,722 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:41:48,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,723 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:41:48,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,723 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:41:48,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,724 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:41:48,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,724 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:41:48,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,725 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:41:48,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,725 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:41:48,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,726 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:41:48,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,726 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:41:48,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,727 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:41:48,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,727 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:41:48,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,728 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:41:48,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,728 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:41:48,729 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:41:48,729 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:41:48,729 [76] DEBUG index - Current user is: admin +01/18/13 12:41:48,729 [76] DEBUG index - Current theme is: softed +01/18/13 12:41:48,730 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:41:48,730 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:41:48,731 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:41:48,732 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:41:48,733 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:41:48,734 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:41:48,735 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:41:48,735 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:41:48,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:41:48,736 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:41:48,736 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:41:48,736 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:41:48,736 [76] DEBUG index - skipping headers +01/18/13 12:41:48,737 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:41:48,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:41:48,742 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:41:48,743 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:41:48,743 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:41:48,743 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:41:48,747 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:42')) +01/18/13 12:41:48,750 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:42:31,285 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:42:31,416 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:42:31,416 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:42:31,416 [76] DEBUG index - ****Starting for new session +01/18/13 12:42:31,417 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:42:31,417 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:42:31,417 [76] INFO index - About to take action CalendarAjax +01/18/13 12:42:31,417 [76] DEBUG index - in CalendarAjax +01/18/13 12:42:31,417 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:42:31,417 [76] INFO index - current module is Calendar +01/18/13 12:42:31,466 [76] DEBUG user - Entering Users() method ... +01/18/13 12:42:31,466 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:42:31,466 [76] DEBUG index - in getColumnFields Users +01/18/13 12:42:31,466 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:42:31,466 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:42:31,467 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:42:31,467 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:42:31,467 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:42:31,467 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:42:31,480 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:42:31,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:42:31,481 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:42:31,481 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:42:31,481 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:42:31,482 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:42:31,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,482 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:42:31,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,483 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:42:31,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,483 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:42:31,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,484 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:42:31,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,484 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:42:31,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,485 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:42:31,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,486 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:42:31,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,486 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:42:31,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,487 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:42:31,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,487 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:42:31,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,488 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:42:31,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,488 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:42:31,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,489 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:42:31,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,489 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:42:31,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,490 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:42:31,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,490 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:42:31,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,491 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:42:31,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,492 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:42:31,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,492 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:42:31,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,493 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:42:31,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,493 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:42:31,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,494 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:42:31,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,494 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:42:31,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,494 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:42:31,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,495 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:42:31,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,496 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:42:31,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,496 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:42:31,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,497 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:42:31,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,497 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:42:31,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,498 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:42:31,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,498 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:42:31,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,499 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:42:31,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,499 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:42:31,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,500 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:42:31,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,500 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:42:31,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,501 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:42:31,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,501 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:42:31,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,502 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:42:31,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,502 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:42:31,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,503 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:42:31,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,503 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:42:31,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,504 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:42:31,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,504 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:42:31,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,505 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:42:31,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,506 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:42:31,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,506 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:42:31,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:42:31,507 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:42:31,507 [76] DEBUG index - Current user is: admin +01/18/13 12:42:31,507 [76] DEBUG index - Current theme is: softed +01/18/13 12:42:31,507 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:42:31,507 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:42:31,509 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:42:31,509 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:42:31,511 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:42:31,511 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:42:31,513 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:42:31,513 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:42:31,513 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:42:31,513 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:42:31,514 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:42:31,514 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:42:31,514 [76] DEBUG index - skipping headers +01/18/13 12:42:31,515 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:42:31,515 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:42:31,520 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:42:31,520 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:42:31,521 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:42:31,521 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:42:31,529 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:43')) +01/18/13 12:42:31,533 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:43:12,043 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:43:12,176 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:43:12,176 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:43:12,176 [76] DEBUG index - ****Starting for new session +01/18/13 12:43:12,177 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:43:12,177 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:43:12,177 [76] INFO index - About to take action CalendarAjax +01/18/13 12:43:12,177 [76] DEBUG index - in CalendarAjax +01/18/13 12:43:12,177 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:43:12,178 [76] INFO index - current module is Calendar +01/18/13 12:43:12,227 [76] DEBUG user - Entering Users() method ... +01/18/13 12:43:12,227 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:43:12,227 [76] DEBUG index - in getColumnFields Users +01/18/13 12:43:12,227 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:12,228 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:12,228 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:12,228 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:12,228 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:43:12,228 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:43:12,236 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:12,237 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:12,237 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:43:12,237 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:43:12,237 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:43:12,238 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:43:12,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,239 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:43:12,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,239 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:43:12,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,240 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:43:12,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,240 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:43:12,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,241 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:43:12,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,241 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:43:12,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,242 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:43:12,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,242 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:43:12,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,243 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:43:12,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,243 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:43:12,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,244 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:43:12,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,244 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:43:12,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,245 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:43:12,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,245 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:43:12,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,246 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:43:12,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,246 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:43:12,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,247 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:43:12,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,247 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:43:12,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,248 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:43:12,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,248 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:43:12,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,249 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:43:12,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,250 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:43:12,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,250 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:43:12,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,250 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:43:12,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,251 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:43:12,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,251 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:43:12,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,252 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:43:12,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,252 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:43:12,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,253 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:43:12,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,253 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:43:12,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,254 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:43:12,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,254 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:43:12,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,255 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:43:12,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,255 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:43:12,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,256 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:43:12,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,257 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:43:12,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,257 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:43:12,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,258 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:43:12,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,258 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:43:12,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,259 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:43:12,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,259 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:43:12,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,260 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:43:12,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,260 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:43:12,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,261 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:43:12,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,261 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:43:12,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,262 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:43:12,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:12,262 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:43:12,263 [76] DEBUG index - Current user is: admin +01/18/13 12:43:12,263 [76] DEBUG index - Current theme is: softed +01/18/13 12:43:12,263 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:43:12,263 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:43:12,265 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:43:12,265 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:43:12,267 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:43:12,267 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:43:12,269 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:43:12,269 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:43:12,269 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:43:12,269 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:43:12,270 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:43:12,270 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:43:12,270 [76] DEBUG index - skipping headers +01/18/13 12:43:12,271 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:43:12,271 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:43:12,276 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:43:12,277 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:43:12,277 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:43:12,277 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:43:12,282 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:44')) +01/18/13 12:43:12,285 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:43:52,691 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:43:52,824 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:43:52,824 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:43:52,824 [76] DEBUG index - ****Starting for new session +01/18/13 12:43:52,825 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:43:52,825 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:43:52,825 [76] INFO index - About to take action CalendarAjax +01/18/13 12:43:52,825 [76] DEBUG index - in CalendarAjax +01/18/13 12:43:52,825 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:43:52,825 [76] INFO index - current module is Calendar +01/18/13 12:43:52,871 [76] DEBUG user - Entering Users() method ... +01/18/13 12:43:52,871 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:43:52,872 [76] DEBUG index - in getColumnFields Users +01/18/13 12:43:52,872 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:52,872 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:52,872 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:52,872 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:52,872 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:43:52,873 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:43:52,881 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:43:52,882 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:43:52,882 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:43:52,882 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:43:52,882 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:43:52,883 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:43:52,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,883 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:43:52,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,884 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:43:52,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,884 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:43:52,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,885 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:43:52,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,886 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:43:52,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,886 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:43:52,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,887 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:43:52,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,887 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:43:52,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,888 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:43:52,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,888 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:43:52,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,889 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:43:52,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,889 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:43:52,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,890 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:43:52,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,890 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:43:52,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,891 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:43:52,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,891 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:43:52,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,892 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:43:52,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,892 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:43:52,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,893 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:43:52,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,893 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:43:52,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,894 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:43:52,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,894 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:43:52,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,895 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:43:52,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,895 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:43:52,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,896 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:43:52,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,896 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:43:52,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,897 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:43:52,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,897 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:43:52,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,898 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:43:52,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,898 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:43:52,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,899 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:43:52,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,899 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:43:52,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,900 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:43:52,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,900 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:43:52,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,901 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:43:52,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,902 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:43:52,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,902 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:43:52,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,903 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:43:52,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,903 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:43:52,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,904 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:43:52,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,904 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:43:52,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,905 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:43:52,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,905 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:43:52,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,906 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:43:52,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,906 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:43:52,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,907 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:43:52,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:43:52,908 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:43:52,908 [76] DEBUG index - Current user is: admin +01/18/13 12:43:52,908 [76] DEBUG index - Current theme is: softed +01/18/13 12:43:52,908 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:43:52,908 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:43:52,910 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:43:52,910 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:43:52,912 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:43:52,912 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:43:52,914 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:43:52,914 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:43:52,914 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:43:52,915 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:43:52,915 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:43:52,915 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:43:52,915 [76] DEBUG index - skipping headers +01/18/13 12:43:52,916 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:43:52,916 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:43:52,921 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:43:52,921 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:43:52,922 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:43:52,922 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:43:52,927 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:44')) +01/18/13 12:43:52,930 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:44:33,044 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:44:33,174 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:44:33,175 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:44:33,175 [76] DEBUG index - ****Starting for new session +01/18/13 12:44:33,175 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:44:33,176 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:44:33,176 [76] INFO index - About to take action CalendarAjax +01/18/13 12:44:33,176 [76] DEBUG index - in CalendarAjax +01/18/13 12:44:33,176 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:44:33,176 [76] INFO index - current module is Calendar +01/18/13 12:44:33,223 [76] DEBUG user - Entering Users() method ... +01/18/13 12:44:33,223 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:44:33,223 [76] DEBUG index - in getColumnFields Users +01/18/13 12:44:33,223 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:44:33,224 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:44:33,224 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:44:33,224 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:44:33,224 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:44:33,224 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:44:33,233 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:44:33,233 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:44:33,233 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:44:33,233 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:44:33,234 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:44:33,234 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:44:33,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,235 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:44:33,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,235 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:44:33,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,236 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:44:33,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,236 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:44:33,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,237 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:44:33,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,237 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:44:33,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,238 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:44:33,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,239 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:44:33,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,239 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:44:33,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,240 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:44:33,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,240 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:44:33,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,241 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:44:33,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,241 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:44:33,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,242 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:44:33,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,242 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:44:33,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,243 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:44:33,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,243 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:44:33,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,244 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:44:33,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,244 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:44:33,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,245 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:44:33,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,245 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:44:33,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,246 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:44:33,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,246 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:44:33,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,246 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:44:33,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,247 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:44:33,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,247 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:44:33,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,248 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:44:33,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,248 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:44:33,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,249 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:44:33,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,249 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:44:33,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,250 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:44:33,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,250 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:44:33,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,251 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:44:33,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,251 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:44:33,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,252 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:44:33,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,253 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:44:33,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,253 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:44:33,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,254 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:44:33,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,254 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:44:33,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,255 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:44:33,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,255 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:44:33,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,256 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:44:33,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,256 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:44:33,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,257 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:44:33,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,257 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:44:33,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,258 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:44:33,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:44:33,258 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:44:33,259 [76] DEBUG index - Current user is: admin +01/18/13 12:44:33,259 [76] DEBUG index - Current theme is: softed +01/18/13 12:44:33,259 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:44:33,259 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:44:33,261 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:44:33,261 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:44:33,263 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:44:33,263 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:44:33,264 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:44:33,264 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:44:33,265 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:44:33,265 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:44:33,265 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:44:33,265 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:44:33,265 [76] DEBUG index - skipping headers +01/18/13 12:44:33,266 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:44:33,267 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:44:33,272 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:44:33,272 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:44:33,273 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:44:33,273 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:44:33,280 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:45')) +01/18/13 12:44:33,285 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:45:13,383 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:45:13,510 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:45:13,510 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:45:13,511 [76] DEBUG index - ****Starting for new session +01/18/13 12:45:13,511 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:45:13,511 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:45:13,511 [76] INFO index - About to take action CalendarAjax +01/18/13 12:45:13,511 [76] DEBUG index - in CalendarAjax +01/18/13 12:45:13,512 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:45:13,512 [76] INFO index - current module is Calendar +01/18/13 12:45:13,558 [76] DEBUG user - Entering Users() method ... +01/18/13 12:45:13,558 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:45:13,558 [76] DEBUG index - in getColumnFields Users +01/18/13 12:45:13,558 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:13,558 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:13,559 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:13,559 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:13,559 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:45:13,559 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:45:13,567 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:13,567 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:13,567 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:45:13,567 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:45:13,568 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:45:13,569 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:45:13,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,569 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:45:13,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,570 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:45:13,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,570 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:45:13,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,571 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:45:13,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,571 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:45:13,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,572 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:45:13,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,572 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:45:13,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,573 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:45:13,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,573 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:45:13,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,574 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:45:13,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,574 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:45:13,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,575 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:45:13,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,575 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:45:13,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,576 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:45:13,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,576 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:45:13,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,577 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:45:13,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,577 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:45:13,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,578 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:45:13,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,578 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:45:13,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,579 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:45:13,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,579 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:45:13,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,580 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:45:13,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,581 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:45:13,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,581 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:45:13,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,581 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:45:13,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,582 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:45:13,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,582 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:45:13,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,583 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:45:13,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,583 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:45:13,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,584 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:45:13,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,584 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:45:13,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,585 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:45:13,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,585 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:45:13,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,586 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:45:13,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,587 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:45:13,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,587 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:45:13,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,588 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:45:13,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,588 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:45:13,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,589 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:45:13,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,589 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:45:13,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,590 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:45:13,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,590 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:45:13,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,591 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:45:13,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,591 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:45:13,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,592 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:45:13,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,592 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:45:13,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:13,593 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:45:13,593 [76] DEBUG index - Current user is: admin +01/18/13 12:45:13,593 [76] DEBUG index - Current theme is: softed +01/18/13 12:45:13,593 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:45:13,593 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:45:13,595 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:45:13,595 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:45:13,597 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:45:13,598 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:45:13,599 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:45:13,599 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:45:13,600 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:45:13,600 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:45:13,600 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:45:13,600 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:45:13,600 [76] DEBUG index - skipping headers +01/18/13 12:45:13,601 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:45:13,602 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:45:13,606 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:45:13,607 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:45:13,607 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:45:13,607 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:45:13,611 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:46')) +01/18/13 12:45:13,615 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:45:53,726 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:45:53,853 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:45:53,853 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:45:53,853 [76] DEBUG index - ****Starting for new session +01/18/13 12:45:53,854 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:45:53,854 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:45:53,854 [76] INFO index - About to take action CalendarAjax +01/18/13 12:45:53,854 [76] DEBUG index - in CalendarAjax +01/18/13 12:45:53,854 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:45:53,854 [76] INFO index - current module is Calendar +01/18/13 12:45:53,901 [76] DEBUG user - Entering Users() method ... +01/18/13 12:45:53,901 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:45:53,901 [76] DEBUG index - in getColumnFields Users +01/18/13 12:45:53,901 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:53,902 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:53,902 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:53,902 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:53,902 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:45:53,902 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:45:53,910 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:45:53,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:45:53,910 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:45:53,910 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:45:53,911 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:45:53,911 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:45:53,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,912 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:45:53,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,912 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:45:53,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,913 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:45:53,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,913 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:45:53,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,914 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:45:53,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,914 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:45:53,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,915 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:45:53,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,915 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:45:53,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,916 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:45:53,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,916 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:45:53,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,917 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:45:53,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,917 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:45:53,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,918 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:45:53,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,918 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:45:53,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,919 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:45:53,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,920 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:45:53,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,920 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:45:53,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,921 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:45:53,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,921 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:45:53,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,922 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:45:53,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,922 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:45:53,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,923 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:45:53,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,923 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:45:53,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,924 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:45:53,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,924 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:45:53,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,925 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:45:53,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,925 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:45:53,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,926 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:45:53,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,926 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:45:53,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,927 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:45:53,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,927 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:45:53,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,928 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:45:53,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,928 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:45:53,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,929 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:45:53,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,929 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:45:53,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,930 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:45:53,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,930 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:45:53,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,931 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:45:53,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,931 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:45:53,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,932 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:45:53,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,932 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:45:53,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,933 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:45:53,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,933 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:45:53,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,934 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:45:53,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,934 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:45:53,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,935 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:45:53,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:45:53,935 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:45:53,936 [76] DEBUG index - Current user is: admin +01/18/13 12:45:53,936 [76] DEBUG index - Current theme is: softed +01/18/13 12:45:53,936 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:45:53,936 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:45:53,938 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:45:53,938 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:45:53,940 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:45:53,940 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:45:53,941 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:45:53,942 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:45:53,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:45:53,942 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:45:53,942 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:45:53,943 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:45:53,943 [76] DEBUG index - skipping headers +01/18/13 12:45:53,944 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:45:53,944 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:45:53,949 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:45:53,949 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:45:53,949 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:45:53,950 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:45:53,953 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:46')) +01/18/13 12:45:53,956 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:46:34,489 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:46:34,615 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:46:34,615 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:46:34,615 [76] DEBUG index - ****Starting for new session +01/18/13 12:46:34,616 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:46:34,616 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:46:34,616 [76] INFO index - About to take action CalendarAjax +01/18/13 12:46:34,616 [76] DEBUG index - in CalendarAjax +01/18/13 12:46:34,616 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:46:34,616 [76] INFO index - current module is Calendar +01/18/13 12:46:34,661 [76] DEBUG user - Entering Users() method ... +01/18/13 12:46:34,662 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:46:34,662 [76] DEBUG index - in getColumnFields Users +01/18/13 12:46:34,662 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:46:34,662 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:46:34,662 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:46:34,663 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:46:34,663 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:46:34,663 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:46:34,673 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:46:34,673 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:46:34,673 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:46:34,673 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:46:34,673 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:46:34,674 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:46:34,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,675 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:46:34,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,675 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:46:34,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,676 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:46:34,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,676 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:46:34,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,677 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:46:34,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,677 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:46:34,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,678 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:46:34,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,678 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:46:34,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,679 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:46:34,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,679 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:46:34,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,680 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:46:34,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,680 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:46:34,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,681 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:46:34,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,681 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:46:34,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,682 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:46:34,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,682 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:46:34,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,683 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:46:34,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,683 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:46:34,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,684 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:46:34,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,684 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:46:34,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,685 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:46:34,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,686 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:46:34,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,686 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:46:34,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,686 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:46:34,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,687 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:46:34,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,687 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:46:34,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,688 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:46:34,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,688 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:46:34,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,689 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:46:34,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,690 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:46:34,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,690 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:46:34,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,691 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:46:34,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,691 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:46:34,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,692 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:46:34,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,692 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:46:34,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,693 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:46:34,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,693 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:46:34,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,694 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:46:34,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,694 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:46:34,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,695 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:46:34,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,695 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:46:34,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,696 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:46:34,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,696 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:46:34,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,697 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:46:34,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,697 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:46:34,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,698 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:46:34,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:46:34,698 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:46:34,699 [76] DEBUG index - Current user is: admin +01/18/13 12:46:34,699 [76] DEBUG index - Current theme is: softed +01/18/13 12:46:34,699 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:46:34,699 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:46:34,701 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:46:34,701 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:46:34,703 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:46:34,703 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:46:34,704 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:46:34,705 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:46:34,705 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:46:34,705 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:46:34,705 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:46:34,705 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:46:34,706 [76] DEBUG index - skipping headers +01/18/13 12:46:34,706 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:46:34,707 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:46:34,712 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:46:34,712 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:46:34,712 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:46:34,713 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:46:34,721 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:47')) +01/18/13 12:46:34,727 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:47:14,839 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:47:14,964 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:47:14,964 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:47:14,965 [76] DEBUG index - ****Starting for new session +01/18/13 12:47:14,965 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:47:14,965 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:47:14,965 [76] INFO index - About to take action CalendarAjax +01/18/13 12:47:14,965 [76] DEBUG index - in CalendarAjax +01/18/13 12:47:14,966 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:47:14,966 [76] INFO index - current module is Calendar +01/18/13 12:47:15,012 [76] DEBUG user - Entering Users() method ... +01/18/13 12:47:15,012 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:47:15,012 [76] DEBUG index - in getColumnFields Users +01/18/13 12:47:15,013 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:15,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:15,013 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:15,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:15,013 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:47:15,013 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:47:15,028 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:15,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:15,029 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:47:15,029 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:47:15,029 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:47:15,030 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:47:15,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,031 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:47:15,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,031 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:47:15,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,032 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:47:15,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,032 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:47:15,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,033 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:47:15,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,033 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:47:15,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,034 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:47:15,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,034 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:47:15,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,035 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:47:15,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,035 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:47:15,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,036 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:47:15,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,036 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:47:15,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,037 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:47:15,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,037 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:47:15,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,038 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:47:15,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,038 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:47:15,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,039 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:47:15,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,039 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:47:15,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,040 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:47:15,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,040 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:47:15,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,041 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:47:15,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,041 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:47:15,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,042 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:47:15,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,042 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:47:15,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,043 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:47:15,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,043 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:47:15,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,044 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:47:15,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,044 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:47:15,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,045 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:47:15,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,045 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:47:15,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,046 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:47:15,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,046 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:47:15,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,047 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:47:15,047 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,047 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:47:15,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,048 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:47:15,048 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,048 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:47:15,049 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,049 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:47:15,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,050 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:47:15,050 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,050 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:47:15,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,051 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:47:15,051 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,051 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:47:15,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,052 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:47:15,052 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,052 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:47:15,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,053 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:47:15,053 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,053 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:47:15,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,054 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:47:15,054 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:15,054 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:47:15,055 [76] DEBUG index - Current user is: admin +01/18/13 12:47:15,055 [76] DEBUG index - Current theme is: softed +01/18/13 12:47:15,055 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:47:15,055 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:47:15,057 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:47:15,057 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:47:15,059 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:47:15,059 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:47:15,060 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:47:15,061 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:47:15,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:47:15,061 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:47:15,061 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:47:15,061 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:47:15,061 [76] DEBUG index - skipping headers +01/18/13 12:47:15,062 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:47:15,063 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:47:15,068 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:47:15,068 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:47:15,068 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:47:15,069 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:47:15,077 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:48')) +01/18/13 12:47:15,080 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:47:55,168 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:47:55,315 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:47:55,315 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:47:55,316 [76] DEBUG index - ****Starting for new session +01/18/13 12:47:55,316 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:47:55,316 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:47:55,317 [76] INFO index - About to take action CalendarAjax +01/18/13 12:47:55,317 [76] DEBUG index - in CalendarAjax +01/18/13 12:47:55,317 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:47:55,317 [76] INFO index - current module is Calendar +01/18/13 12:47:55,369 [76] DEBUG user - Entering Users() method ... +01/18/13 12:47:55,369 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:47:55,369 [76] DEBUG index - in getColumnFields Users +01/18/13 12:47:55,369 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:55,370 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:55,370 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:55,370 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:55,370 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:47:55,370 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:47:55,384 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:47:55,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:47:55,385 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:47:55,385 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:47:55,386 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:47:55,386 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:47:55,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,387 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:47:55,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,388 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:47:55,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,388 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:47:55,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,389 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:47:55,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,389 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:47:55,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,390 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:47:55,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,391 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:47:55,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,391 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:47:55,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,392 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:47:55,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,392 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:47:55,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,393 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:47:55,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,393 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:47:55,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,394 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:47:55,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,394 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:47:55,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,395 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:47:55,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,396 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:47:55,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,396 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:47:55,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,397 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:47:55,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,397 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:47:55,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,398 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:47:55,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,398 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:47:55,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,399 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:47:55,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,399 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:47:55,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,399 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:47:55,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,400 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:47:55,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,401 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:47:55,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,401 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:47:55,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,402 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:47:55,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,402 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:47:55,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,403 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:47:55,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,403 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:47:55,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,404 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:47:55,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,404 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:47:55,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,405 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:47:55,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,406 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:47:55,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,406 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:47:55,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,407 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:47:55,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,407 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:47:55,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,408 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:47:55,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,408 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:47:55,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,409 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:47:55,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,410 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:47:55,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,410 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:47:55,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,411 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:47:55,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,411 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:47:55,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,412 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:47:55,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:47:55,412 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:47:55,413 [76] DEBUG index - Current user is: admin +01/18/13 12:47:55,413 [76] DEBUG index - Current theme is: softed +01/18/13 12:47:55,413 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:47:55,413 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:47:55,415 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:47:55,415 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:47:55,417 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:47:55,418 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:47:55,419 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:47:55,420 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:47:55,420 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:47:55,421 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:47:55,421 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:47:55,421 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:47:55,421 [76] DEBUG index - skipping headers +01/18/13 12:47:55,422 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:47:55,423 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:47:55,428 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:47:55,429 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:47:55,429 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:47:55,429 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:47:55,437 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:48')) +01/18/13 12:47:55,440 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:48:36,065 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:48:36,197 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:48:36,197 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:48:36,198 [76] DEBUG index - ****Starting for new session +01/18/13 12:48:36,198 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:48:36,198 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:48:36,198 [76] INFO index - About to take action CalendarAjax +01/18/13 12:48:36,198 [76] DEBUG index - in CalendarAjax +01/18/13 12:48:36,199 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:48:36,199 [76] INFO index - current module is Calendar +01/18/13 12:48:36,245 [76] DEBUG user - Entering Users() method ... +01/18/13 12:48:36,245 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:48:36,245 [76] DEBUG index - in getColumnFields Users +01/18/13 12:48:36,245 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:48:36,246 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:48:36,246 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:48:36,246 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:48:36,246 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:48:36,246 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:48:36,257 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:48:36,257 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:48:36,257 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:48:36,257 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:48:36,258 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:48:36,258 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:48:36,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,259 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:48:36,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,259 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:48:36,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,260 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:48:36,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,260 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:48:36,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,261 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:48:36,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,262 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:48:36,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,262 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:48:36,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,263 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:48:36,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,263 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:48:36,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,264 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:48:36,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,264 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:48:36,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,265 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:48:36,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,265 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:48:36,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,266 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:48:36,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,266 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:48:36,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,267 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:48:36,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,267 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:48:36,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,268 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:48:36,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,268 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:48:36,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,269 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:48:36,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,269 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:48:36,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,270 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:48:36,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,270 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:48:36,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,270 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:48:36,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,271 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:48:36,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,272 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:48:36,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,272 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:48:36,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,273 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:48:36,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,273 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:48:36,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,274 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:48:36,274 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,274 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:48:36,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,275 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:48:36,275 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,275 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:48:36,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,276 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:48:36,276 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,276 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:48:36,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,277 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:48:36,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,277 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:48:36,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,278 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:48:36,278 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,278 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:48:36,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,279 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:48:36,279 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,279 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:48:36,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,280 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:48:36,280 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,280 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:48:36,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,281 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:48:36,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,281 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:48:36,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,282 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:48:36,282 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:48:36,282 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:48:36,283 [76] DEBUG index - Current user is: admin +01/18/13 12:48:36,283 [76] DEBUG index - Current theme is: softed +01/18/13 12:48:36,283 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:48:36,283 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:48:36,285 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:48:36,285 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:48:36,287 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:48:36,287 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:48:36,289 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:48:36,289 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:48:36,290 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:48:36,290 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:48:36,290 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:48:36,290 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:48:36,291 [76] DEBUG index - skipping headers +01/18/13 12:48:36,292 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:48:36,292 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:48:36,297 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:48:36,298 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:48:36,298 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:48:36,298 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:48:36,302 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:49')) +01/18/13 12:48:36,307 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:49:16,407 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:49:16,561 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:49:16,561 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:49:16,561 [76] DEBUG index - ****Starting for new session +01/18/13 12:49:16,562 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:49:16,562 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:49:16,562 [76] INFO index - About to take action CalendarAjax +01/18/13 12:49:16,562 [76] DEBUG index - in CalendarAjax +01/18/13 12:49:16,562 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:49:16,562 [76] INFO index - current module is Calendar +01/18/13 12:49:16,611 [76] DEBUG user - Entering Users() method ... +01/18/13 12:49:16,611 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:49:16,611 [76] DEBUG index - in getColumnFields Users +01/18/13 12:49:16,611 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:16,611 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:16,612 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:16,612 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:16,612 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:49:16,612 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:49:16,620 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:16,620 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:16,620 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:49:16,621 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:49:16,621 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:49:16,622 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:49:16,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,622 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:49:16,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,623 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:49:16,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,623 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:49:16,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,624 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:49:16,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,624 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:49:16,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,625 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:49:16,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,625 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:49:16,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,626 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:49:16,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,626 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:49:16,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,627 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:49:16,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,627 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:49:16,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,628 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:49:16,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,628 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:49:16,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,629 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:49:16,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,629 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:49:16,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,630 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:49:16,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,630 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:49:16,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,631 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:49:16,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,631 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:49:16,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,632 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:49:16,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,633 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:49:16,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,633 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:49:16,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,634 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:49:16,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,634 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:49:16,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,634 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:49:16,635 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,635 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:49:16,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,636 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:49:16,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,636 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:49:16,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,637 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:49:16,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,637 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:49:16,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,638 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:49:16,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,638 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:49:16,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,639 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:49:16,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,640 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:49:16,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,640 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:49:16,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,641 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:49:16,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,641 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:49:16,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,642 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:49:16,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,642 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:49:16,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,643 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:49:16,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,644 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:49:16,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,644 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:49:16,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,645 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:49:16,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,645 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:49:16,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,646 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:49:16,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,646 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:49:16,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:16,647 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:49:16,647 [76] DEBUG index - Current user is: admin +01/18/13 12:49:16,647 [76] DEBUG index - Current theme is: softed +01/18/13 12:49:16,647 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:49:16,648 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:49:16,649 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:49:16,650 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:49:16,652 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:49:16,652 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:49:16,653 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:49:16,654 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:49:16,654 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:49:16,654 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:49:16,654 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:49:16,654 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:49:16,655 [76] DEBUG index - skipping headers +01/18/13 12:49:16,656 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:49:16,656 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:49:16,661 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:49:16,661 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:49:16,662 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:49:16,662 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:49:16,666 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:50')) +01/18/13 12:49:16,669 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:49:56,756 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:49:56,891 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:49:56,891 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:49:56,891 [76] DEBUG index - ****Starting for new session +01/18/13 12:49:56,892 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:49:56,892 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:49:56,892 [76] INFO index - About to take action CalendarAjax +01/18/13 12:49:56,892 [76] DEBUG index - in CalendarAjax +01/18/13 12:49:56,892 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:49:56,892 [76] INFO index - current module is Calendar +01/18/13 12:49:56,940 [76] DEBUG user - Entering Users() method ... +01/18/13 12:49:56,940 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:49:56,940 [76] DEBUG index - in getColumnFields Users +01/18/13 12:49:56,940 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:56,941 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:56,941 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:56,941 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:56,941 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:49:56,941 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:49:56,949 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:49:56,949 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:49:56,950 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:49:56,950 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:49:56,950 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:49:56,951 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:49:56,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,951 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:49:56,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,952 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:49:56,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,952 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:49:56,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,953 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:49:56,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,953 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:49:56,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,954 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:49:56,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,955 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:49:56,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,955 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:49:56,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,956 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:49:56,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,956 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:49:56,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,957 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:49:56,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,957 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:49:56,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,958 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:49:56,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,958 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:49:56,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,959 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:49:56,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,959 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:49:56,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,960 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:49:56,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,960 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:49:56,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,961 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:49:56,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,962 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:49:56,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,962 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:49:56,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,963 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:49:56,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,963 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:49:56,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,963 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:49:56,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,964 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:49:56,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,964 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:49:56,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,965 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:49:56,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,965 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:49:56,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,966 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:49:56,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,966 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:49:56,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,967 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:49:56,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,967 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:49:56,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,968 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:49:56,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,969 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:49:56,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,969 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:49:56,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,970 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:49:56,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,970 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:49:56,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,971 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:49:56,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,971 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:49:56,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,972 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:49:56,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,972 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:49:56,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,973 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:49:56,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,973 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:49:56,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,974 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:49:56,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,974 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:49:56,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,975 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:49:56,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:49:56,975 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:49:56,976 [76] DEBUG index - Current user is: admin +01/18/13 12:49:56,976 [76] DEBUG index - Current theme is: softed +01/18/13 12:49:56,976 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:49:56,976 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:49:56,978 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:49:56,978 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:49:56,980 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:49:56,980 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:49:56,982 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:49:56,982 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:49:56,982 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:49:56,983 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:49:56,983 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:49:56,983 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:49:56,983 [76] DEBUG index - skipping headers +01/18/13 12:49:56,984 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:49:56,984 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:49:56,989 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:49:56,990 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:49:56,990 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:49:56,990 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:49:56,996 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:50')) +01/18/13 12:49:56,999 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:50:37,101 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:50:37,233 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:50:37,233 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:50:37,233 [76] DEBUG index - ****Starting for new session +01/18/13 12:50:37,234 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:50:37,234 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:50:37,234 [76] INFO index - About to take action CalendarAjax +01/18/13 12:50:37,234 [76] DEBUG index - in CalendarAjax +01/18/13 12:50:37,234 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:50:37,235 [76] INFO index - current module is Calendar +01/18/13 12:50:37,282 [76] DEBUG user - Entering Users() method ... +01/18/13 12:50:37,282 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:50:37,282 [76] DEBUG index - in getColumnFields Users +01/18/13 12:50:37,282 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:50:37,283 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:50:37,283 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:50:37,283 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:50:37,283 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:50:37,283 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:50:37,291 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:50:37,291 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:50:37,292 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:50:37,292 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:50:37,292 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:50:37,293 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:50:37,293 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,293 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:50:37,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,294 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:50:37,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,295 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:50:37,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,295 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:50:37,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,296 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:50:37,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,296 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:50:37,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,297 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:50:37,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,297 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:50:37,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,298 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:50:37,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,298 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:50:37,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,299 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:50:37,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,299 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:50:37,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,300 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:50:37,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,300 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:50:37,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,301 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:50:37,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,301 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:50:37,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,302 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:50:37,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,302 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:50:37,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,303 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:50:37,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,304 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:50:37,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,304 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:50:37,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,305 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:50:37,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,305 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:50:37,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,305 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:50:37,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,306 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:50:37,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,306 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:50:37,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,307 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:50:37,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,308 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:50:37,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,308 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:50:37,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,309 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:50:37,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,309 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:50:37,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,310 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:50:37,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,310 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:50:37,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,311 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:50:37,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,311 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:50:37,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,312 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:50:37,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,312 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:50:37,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,313 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:50:37,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,314 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:50:37,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,314 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:50:37,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,315 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:50:37,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,315 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:50:37,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,316 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:50:37,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,316 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:50:37,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,317 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:50:37,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,317 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:50:37,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:50:37,318 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:50:37,318 [76] DEBUG index - Current user is: admin +01/18/13 12:50:37,318 [76] DEBUG index - Current theme is: softed +01/18/13 12:50:37,318 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:50:37,318 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:50:37,320 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:50:37,320 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:50:37,322 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:50:37,322 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:50:37,324 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:50:37,324 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:50:37,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:50:37,325 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:50:37,325 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:50:37,325 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:50:37,325 [76] DEBUG index - skipping headers +01/18/13 12:50:37,326 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:50:37,327 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:50:37,332 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:50:37,332 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:50:37,332 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:50:37,333 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:50:37,336 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:51')) +01/18/13 12:50:37,343 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:51:17,448 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:51:17,578 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:51:17,578 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:51:17,578 [76] DEBUG index - ****Starting for new session +01/18/13 12:51:17,579 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:51:17,579 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:51:17,579 [76] INFO index - About to take action CalendarAjax +01/18/13 12:51:17,579 [76] DEBUG index - in CalendarAjax +01/18/13 12:51:17,580 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:51:17,580 [76] INFO index - current module is Calendar +01/18/13 12:51:17,629 [76] DEBUG user - Entering Users() method ... +01/18/13 12:51:17,629 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:51:17,629 [76] DEBUG index - in getColumnFields Users +01/18/13 12:51:17,630 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:17,630 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:17,630 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:17,630 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:17,630 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:51:17,630 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:51:17,639 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:17,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:17,639 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:51:17,639 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:51:17,640 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:51:17,641 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:51:17,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,641 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:51:17,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,642 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:51:17,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,642 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:51:17,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,643 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:51:17,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,643 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:51:17,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,644 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:51:17,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,644 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:51:17,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,645 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:51:17,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,645 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:51:17,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,646 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:51:17,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,646 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:51:17,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,647 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:51:17,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,648 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:51:17,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,648 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:51:17,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,649 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:51:17,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,649 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:51:17,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,650 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:51:17,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,651 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:51:17,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,651 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:51:17,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,652 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:51:17,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,652 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:51:17,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,653 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:51:17,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,653 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:51:17,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,654 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:51:17,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,654 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:51:17,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,655 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:51:17,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,655 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:51:17,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,656 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:51:17,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,656 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:51:17,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,657 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:51:17,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,658 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:51:17,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,658 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:51:17,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,659 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:51:17,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,660 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:51:17,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,660 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:51:17,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,661 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:51:17,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,662 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:51:17,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,662 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:51:17,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,663 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:51:17,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,663 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:51:17,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,664 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:51:17,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,664 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:51:17,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,665 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:51:17,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,665 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:51:17,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,666 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:51:17,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,666 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:51:17,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:17,667 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:51:17,667 [76] DEBUG index - Current user is: admin +01/18/13 12:51:17,667 [76] DEBUG index - Current theme is: softed +01/18/13 12:51:17,667 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:51:17,667 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:51:17,669 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:51:17,669 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:51:17,671 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:51:17,671 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:51:17,673 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:51:17,673 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:51:17,674 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:51:17,674 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:51:17,674 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:51:17,674 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:51:17,674 [76] DEBUG index - skipping headers +01/18/13 12:51:17,676 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:51:17,676 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:51:17,682 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:51:17,682 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:51:17,683 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:51:17,683 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:51:17,688 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:52')) +01/18/13 12:51:17,691 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:51:58,101 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:51:58,231 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:51:58,231 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:51:58,231 [76] DEBUG index - ****Starting for new session +01/18/13 12:51:58,232 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:51:58,232 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:51:58,232 [76] INFO index - About to take action CalendarAjax +01/18/13 12:51:58,232 [76] DEBUG index - in CalendarAjax +01/18/13 12:51:58,232 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:51:58,232 [76] INFO index - current module is Calendar +01/18/13 12:51:58,280 [76] DEBUG user - Entering Users() method ... +01/18/13 12:51:58,280 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:51:58,280 [76] DEBUG index - in getColumnFields Users +01/18/13 12:51:58,280 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:58,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:58,281 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:58,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:58,281 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:51:58,281 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:51:58,292 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:51:58,292 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:51:58,292 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:51:58,292 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:51:58,293 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:51:58,293 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:51:58,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,294 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:51:58,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,294 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:51:58,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,295 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:51:58,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,296 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:51:58,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,296 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:51:58,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,297 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:51:58,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,297 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:51:58,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,298 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:51:58,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,298 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:51:58,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,299 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:51:58,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,299 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:51:58,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,300 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:51:58,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,300 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:51:58,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,301 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:51:58,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,301 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:51:58,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,302 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:51:58,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,302 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:51:58,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,303 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:51:58,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,303 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:51:58,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,304 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:51:58,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,305 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:51:58,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,305 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:51:58,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,306 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:51:58,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,306 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:51:58,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,306 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:51:58,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,307 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:51:58,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,307 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:51:58,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,308 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:51:58,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,308 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:51:58,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,309 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:51:58,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,310 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:51:58,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,310 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:51:58,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,311 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:51:58,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,311 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:51:58,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,312 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:51:58,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,312 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:51:58,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,313 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:51:58,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,313 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:51:58,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,314 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:51:58,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,314 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:51:58,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,315 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:51:58,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,315 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:51:58,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,316 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:51:58,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,317 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:51:58,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,317 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:51:58,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,318 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:51:58,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:51:58,318 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:51:58,319 [76] DEBUG index - Current user is: admin +01/18/13 12:51:58,319 [76] DEBUG index - Current theme is: softed +01/18/13 12:51:58,319 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:51:58,319 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:51:58,321 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:51:58,321 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:51:58,323 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:51:58,323 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:51:58,324 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:51:58,325 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:51:58,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:51:58,325 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:51:58,325 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:51:58,326 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:51:58,326 [76] DEBUG index - skipping headers +01/18/13 12:51:58,327 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:51:58,327 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:51:58,332 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:51:58,333 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:51:58,333 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:51:58,333 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:51:58,339 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:52')) +01/18/13 12:51:58,342 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:52:38,574 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:52:38,705 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:52:38,705 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:52:38,706 [76] DEBUG index - ****Starting for new session +01/18/13 12:52:38,706 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:52:38,706 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:52:38,706 [76] INFO index - About to take action CalendarAjax +01/18/13 12:52:38,706 [76] DEBUG index - in CalendarAjax +01/18/13 12:52:38,707 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:52:38,707 [76] INFO index - current module is Calendar +01/18/13 12:52:38,754 [76] DEBUG user - Entering Users() method ... +01/18/13 12:52:38,754 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:52:38,754 [76] DEBUG index - in getColumnFields Users +01/18/13 12:52:38,754 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:52:38,755 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:52:38,755 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:52:38,755 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:52:38,755 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:52:38,755 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:52:38,763 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:52:38,764 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:52:38,764 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:52:38,764 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:52:38,764 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:52:38,765 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:52:38,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,765 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:52:38,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,766 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:52:38,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,766 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:52:38,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,767 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:52:38,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,767 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:52:38,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,768 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:52:38,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,768 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:52:38,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,769 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:52:38,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,770 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:52:38,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,770 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:52:38,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,771 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:52:38,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,771 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:52:38,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,772 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:52:38,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,772 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:52:38,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,773 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:52:38,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,773 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:52:38,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,774 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:52:38,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,774 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:52:38,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,775 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:52:38,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,775 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:52:38,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,776 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:52:38,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,776 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:52:38,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,777 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:52:38,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,777 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:52:38,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,777 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:52:38,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,778 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:52:38,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,778 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:52:38,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,779 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:52:38,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,779 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:52:38,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,780 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:52:38,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,780 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:52:38,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,781 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:52:38,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,781 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:52:38,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,782 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:52:38,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,782 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:52:38,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,783 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:52:38,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,783 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:52:38,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,784 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:52:38,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,784 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:52:38,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,785 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:52:38,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,785 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:52:38,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,786 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:52:38,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,786 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:52:38,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,787 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:52:38,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,787 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:52:38,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,788 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:52:38,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:52:38,788 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:52:38,789 [76] DEBUG index - Current user is: admin +01/18/13 12:52:38,789 [76] DEBUG index - Current theme is: softed +01/18/13 12:52:38,789 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:52:38,789 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:52:38,791 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:52:38,791 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:52:38,793 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:52:38,793 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:52:38,794 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:52:38,795 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:52:38,795 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:52:38,795 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:52:38,795 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:52:38,795 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:52:38,796 [76] DEBUG index - skipping headers +01/18/13 12:52:38,796 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:52:38,797 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:52:38,802 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:52:38,802 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:52:38,802 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:52:38,802 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:52:38,807 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:53')) +01/18/13 12:52:38,810 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:53:19,163 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:53:19,289 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:53:19,289 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:53:19,289 [76] DEBUG index - ****Starting for new session +01/18/13 12:53:19,290 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:53:19,290 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:53:19,290 [76] INFO index - About to take action CalendarAjax +01/18/13 12:53:19,290 [76] DEBUG index - in CalendarAjax +01/18/13 12:53:19,290 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:53:19,290 [76] INFO index - current module is Calendar +01/18/13 12:53:19,336 [76] DEBUG user - Entering Users() method ... +01/18/13 12:53:19,336 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:53:19,337 [76] DEBUG index - in getColumnFields Users +01/18/13 12:53:19,337 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:53:19,337 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:53:19,337 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:53:19,337 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:53:19,338 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:53:19,338 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:53:19,346 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:53:19,346 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:53:19,346 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:53:19,346 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:53:19,347 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:53:19,347 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:53:19,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,348 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:53:19,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,348 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:53:19,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,349 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:53:19,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,349 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:53:19,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,350 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:53:19,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,350 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:53:19,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,351 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:53:19,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,351 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:53:19,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,352 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:53:19,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,352 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:53:19,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,353 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:53:19,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,353 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:53:19,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,354 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:53:19,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,355 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:53:19,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,355 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:53:19,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,356 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:53:19,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,356 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:53:19,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,357 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:53:19,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,357 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:53:19,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,358 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:53:19,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,358 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:53:19,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,359 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:53:19,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,359 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:53:19,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,359 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:53:19,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,360 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:53:19,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,360 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:53:19,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,361 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:53:19,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,362 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:53:19,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,362 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:53:19,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,363 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:53:19,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,363 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:53:19,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,364 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:53:19,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,364 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:53:19,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,365 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:53:19,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,365 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:53:19,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,366 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:53:19,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,366 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:53:19,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,367 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:53:19,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,367 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:53:19,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,368 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:53:19,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,368 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:53:19,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,369 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:53:19,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,369 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:53:19,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,370 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:53:19,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,370 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:53:19,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,371 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:53:19,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:53:19,371 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:53:19,372 [76] DEBUG index - Current user is: admin +01/18/13 12:53:19,372 [76] DEBUG index - Current theme is: softed +01/18/13 12:53:19,372 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:53:19,372 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:53:19,374 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:53:19,374 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:53:19,376 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:53:19,376 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:53:19,377 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:53:19,378 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:53:19,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:53:19,378 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:53:19,378 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:53:19,378 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:53:19,378 [76] DEBUG index - skipping headers +01/18/13 12:53:19,379 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:53:19,380 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:53:19,385 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:53:19,385 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:53:19,385 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:53:19,385 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:53:19,389 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:54')) +01/18/13 12:53:19,393 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:54:00,036 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:54:00,165 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:54:00,166 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:54:00,166 [76] DEBUG index - ****Starting for new session +01/18/13 12:54:00,166 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:54:00,167 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:54:00,167 [76] INFO index - About to take action CalendarAjax +01/18/13 12:54:00,167 [76] DEBUG index - in CalendarAjax +01/18/13 12:54:00,167 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:54:00,167 [76] INFO index - current module is Calendar +01/18/13 12:54:00,215 [76] DEBUG user - Entering Users() method ... +01/18/13 12:54:00,215 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:54:00,215 [76] DEBUG index - in getColumnFields Users +01/18/13 12:54:00,215 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:00,216 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:00,216 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:00,216 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:00,216 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:54:00,216 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:54:00,232 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:00,232 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:00,232 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:54:00,232 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:54:00,232 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:54:00,233 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:54:00,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,234 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:54:00,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,234 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:54:00,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,235 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:54:00,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,235 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:54:00,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,236 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:54:00,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,236 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:54:00,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,237 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:54:00,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,237 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:54:00,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,238 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:54:00,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,238 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:54:00,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,239 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:54:00,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,239 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:54:00,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,240 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:54:00,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,241 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:54:00,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,241 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:54:00,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,242 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:54:00,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,242 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:54:00,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,243 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:54:00,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,243 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:54:00,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,244 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:54:00,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,244 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:54:00,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,245 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:54:00,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,245 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:54:00,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,245 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:54:00,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,246 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:54:00,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,246 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:54:00,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,247 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:54:00,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,247 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:54:00,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,248 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:54:00,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,248 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:54:00,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,249 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:54:00,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,249 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:54:00,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,250 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:54:00,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,250 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:54:00,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,251 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:54:00,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,252 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:54:00,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,252 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:54:00,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,253 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:54:00,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,253 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:54:00,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,254 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:54:00,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,254 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:54:00,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,255 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:54:00,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,255 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:54:00,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,256 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:54:00,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,256 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:54:00,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,257 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:54:00,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:00,257 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:54:00,258 [76] DEBUG index - Current user is: admin +01/18/13 12:54:00,258 [76] DEBUG index - Current theme is: softed +01/18/13 12:54:00,258 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:54:00,258 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:54:00,260 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:54:00,260 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:54:00,262 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:54:00,262 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:54:00,264 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:54:00,264 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:54:00,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:54:00,265 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:54:00,265 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:54:00,265 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:54:00,265 [76] DEBUG index - skipping headers +01/18/13 12:54:00,266 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:54:00,266 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:54:00,271 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:54:00,271 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:54:00,271 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:54:00,272 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:54:00,277 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:55')) +01/18/13 12:54:00,280 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:54:40,801 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:54:40,930 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:54:40,930 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:54:40,931 [76] DEBUG index - ****Starting for new session +01/18/13 12:54:40,931 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:54:40,931 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:54:40,931 [76] INFO index - About to take action CalendarAjax +01/18/13 12:54:40,932 [76] DEBUG index - in CalendarAjax +01/18/13 12:54:40,932 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:54:40,932 [76] INFO index - current module is Calendar +01/18/13 12:54:40,978 [76] DEBUG user - Entering Users() method ... +01/18/13 12:54:40,979 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:54:40,979 [76] DEBUG index - in getColumnFields Users +01/18/13 12:54:40,979 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:40,979 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:40,979 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:40,979 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:40,980 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:54:40,980 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:54:40,989 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:54:40,989 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:54:40,989 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:54:40,989 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:54:40,990 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:54:40,990 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:54:40,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,991 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:54:40,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,991 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:54:40,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,992 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:54:40,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,992 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:54:40,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,993 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:54:40,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,993 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:54:40,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,994 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:54:40,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,994 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:54:40,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,995 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:54:40,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,996 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:54:40,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,996 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:54:40,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,997 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:54:40,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,997 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:54:40,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,998 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:54:40,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,998 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:54:40,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,999 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:54:40,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,999 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:54:40,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:40,1000 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:54:40,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,000 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:54:41,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,001 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:54:41,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,001 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:54:41,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,002 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:54:41,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,002 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:54:41,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,002 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:54:41,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,003 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:54:41,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,003 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:54:41,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,004 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:54:41,004 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,004 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:54:41,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,005 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:54:41,005 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,005 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:54:41,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,006 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:54:41,006 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,006 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:54:41,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,007 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:54:41,007 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,007 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:54:41,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,008 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:54:41,008 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,008 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:54:41,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,009 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:54:41,009 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,009 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:54:41,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,010 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:54:41,010 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,010 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:54:41,011 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,011 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:54:41,011 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,011 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:54:41,012 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,012 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:54:41,012 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,012 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:54:41,013 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,013 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:54:41,013 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,013 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:54:41,014 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:54:41,014 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:54:41,014 [76] DEBUG index - Current user is: admin +01/18/13 12:54:41,014 [76] DEBUG index - Current theme is: softed +01/18/13 12:54:41,015 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:54:41,015 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:54:41,016 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:54:41,017 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:54:41,019 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:54:41,019 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:54:41,020 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:54:41,021 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:54:41,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:54:41,021 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:54:41,021 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:54:41,021 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:54:41,022 [76] DEBUG index - skipping headers +01/18/13 12:54:41,022 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:54:41,023 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:54:41,028 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:54:41,029 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:54:41,029 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:54:41,029 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:54:41,033 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:55')) +01/18/13 12:54:41,036 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:55:21,140 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:55:21,265 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:55:21,265 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:55:21,266 [76] DEBUG index - ****Starting for new session +01/18/13 12:55:21,266 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:55:21,266 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:55:21,266 [76] INFO index - About to take action CalendarAjax +01/18/13 12:55:21,266 [76] DEBUG index - in CalendarAjax +01/18/13 12:55:21,267 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:55:21,267 [76] INFO index - current module is Calendar +01/18/13 12:55:21,312 [76] DEBUG user - Entering Users() method ... +01/18/13 12:55:21,312 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:55:21,312 [76] DEBUG index - in getColumnFields Users +01/18/13 12:55:21,312 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:55:21,313 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:55:21,313 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:55:21,313 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:55:21,313 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:55:21,313 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:55:21,321 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:55:21,321 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:55:21,321 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:55:21,321 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:55:21,322 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:55:21,322 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:55:21,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,323 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:55:21,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,323 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:55:21,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,324 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:55:21,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,325 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:55:21,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,325 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:55:21,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,326 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:55:21,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,326 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:55:21,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,327 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:55:21,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,327 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:55:21,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,328 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:55:21,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,328 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:55:21,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,329 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:55:21,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,329 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:55:21,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,330 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:55:21,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,330 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:55:21,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,331 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:55:21,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,331 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:55:21,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,332 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:55:21,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,332 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:55:21,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,333 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:55:21,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,334 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:55:21,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,334 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:55:21,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,335 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:55:21,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,335 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:55:21,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,335 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:55:21,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,336 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:55:21,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,336 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:55:21,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,337 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:55:21,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,337 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:55:21,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,338 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:55:21,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,338 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:55:21,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,339 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:55:21,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,339 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:55:21,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,340 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:55:21,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,340 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:55:21,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,341 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:55:21,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,341 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:55:21,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,342 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:55:21,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,342 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:55:21,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,343 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:55:21,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,343 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:55:21,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,344 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:55:21,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,344 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:55:21,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,345 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:55:21,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,345 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:55:21,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,346 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:55:21,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:55:21,346 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:55:21,347 [76] DEBUG index - Current user is: admin +01/18/13 12:55:21,347 [76] DEBUG index - Current theme is: softed +01/18/13 12:55:21,347 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:55:21,347 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:55:21,348 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:55:21,349 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:55:21,350 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:55:21,351 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:55:21,352 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:55:21,353 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:55:21,353 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:55:21,353 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:55:21,353 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:55:21,353 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:55:21,354 [76] DEBUG index - skipping headers +01/18/13 12:55:21,355 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:55:21,355 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:55:21,360 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:55:21,360 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:55:21,360 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:55:21,360 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:55:21,364 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:56')) +01/18/13 12:55:21,370 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:56:01,465 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:56:01,608 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:56:01,608 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:56:01,608 [76] DEBUG index - ****Starting for new session +01/18/13 12:56:01,609 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:56:01,609 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:56:01,609 [76] INFO index - About to take action CalendarAjax +01/18/13 12:56:01,609 [76] DEBUG index - in CalendarAjax +01/18/13 12:56:01,610 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:56:01,610 [76] INFO index - current module is Calendar +01/18/13 12:56:01,656 [76] DEBUG user - Entering Users() method ... +01/18/13 12:56:01,656 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:56:01,656 [76] DEBUG index - in getColumnFields Users +01/18/13 12:56:01,656 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:01,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:01,657 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:01,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:01,657 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:56:01,657 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:56:01,665 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:01,665 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:01,666 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:56:01,666 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:56:01,666 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:56:01,667 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:56:01,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,668 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:56:01,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,668 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:56:01,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,669 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:56:01,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,669 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:56:01,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,670 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:56:01,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,670 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:56:01,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,671 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:56:01,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,671 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:56:01,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,672 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:56:01,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,672 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:56:01,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,673 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:56:01,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,673 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:56:01,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,674 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:56:01,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,674 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:56:01,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,675 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:56:01,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,675 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:56:01,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,676 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:56:01,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,676 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:56:01,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,677 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:56:01,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,677 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:56:01,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,678 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:56:01,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,679 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:56:01,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,679 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:56:01,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,679 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:56:01,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,680 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:56:01,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,680 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:56:01,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,681 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:56:01,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,681 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:56:01,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,682 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:56:01,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,682 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:56:01,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,683 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:56:01,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,683 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:56:01,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,684 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:56:01,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,685 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:56:01,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,685 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:56:01,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,686 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:56:01,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,686 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:56:01,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,687 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:56:01,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,687 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:56:01,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,688 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:56:01,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,688 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:56:01,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,689 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:56:01,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,690 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:56:01,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,690 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:56:01,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,691 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:56:01,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,691 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:56:01,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:01,692 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:56:01,692 [76] DEBUG index - Current user is: admin +01/18/13 12:56:01,692 [76] DEBUG index - Current theme is: softed +01/18/13 12:56:01,692 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:56:01,692 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:56:01,694 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:56:01,695 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:56:01,697 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:56:01,697 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:56:01,698 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:56:01,699 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:56:01,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:56:01,699 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:56:01,699 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:56:01,699 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:56:01,700 [76] DEBUG index - skipping headers +01/18/13 12:56:01,700 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:56:01,701 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:56:01,706 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:56:01,707 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:56:01,707 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:56:01,707 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:56:01,717 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:57')) +01/18/13 12:56:01,741 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:56:42,239 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:56:42,372 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:56:42,372 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:56:42,372 [76] DEBUG index - ****Starting for new session +01/18/13 12:56:42,373 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:56:42,373 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:56:42,373 [76] INFO index - About to take action CalendarAjax +01/18/13 12:56:42,373 [76] DEBUG index - in CalendarAjax +01/18/13 12:56:42,373 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:56:42,373 [76] INFO index - current module is Calendar +01/18/13 12:56:42,420 [76] DEBUG user - Entering Users() method ... +01/18/13 12:56:42,420 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:56:42,420 [76] DEBUG index - in getColumnFields Users +01/18/13 12:56:42,420 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:42,420 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:42,421 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:42,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:42,421 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:56:42,421 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:56:42,429 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:56:42,429 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:56:42,429 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:56:42,429 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:56:42,430 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:56:42,430 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:56:42,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,431 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:56:42,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,431 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:56:42,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,432 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:56:42,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,433 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:56:42,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,433 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:56:42,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,434 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:56:42,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,434 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:56:42,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,435 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:56:42,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,435 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:56:42,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,436 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:56:42,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,436 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:56:42,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,437 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:56:42,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,437 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:56:42,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,438 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:56:42,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,438 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:56:42,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,439 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:56:42,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,439 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:56:42,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,440 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:56:42,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,440 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:56:42,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,441 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:56:42,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,441 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:56:42,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,442 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:56:42,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,442 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:56:42,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,443 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:56:42,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,443 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:56:42,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,444 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:56:42,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,444 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:56:42,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,445 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:56:42,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,445 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:56:42,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,446 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:56:42,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,447 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:56:42,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,447 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:56:42,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,448 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:56:42,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,448 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:56:42,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,449 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:56:42,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,449 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:56:42,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,450 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:56:42,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,450 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:56:42,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,451 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:56:42,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,451 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:56:42,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,452 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:56:42,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,452 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:56:42,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,453 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:56:42,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,453 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:56:42,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,454 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:56:42,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,454 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:56:42,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:56:42,455 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:56:42,455 [76] DEBUG index - Current user is: admin +01/18/13 12:56:42,455 [76] DEBUG index - Current theme is: softed +01/18/13 12:56:42,455 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:56:42,455 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:56:42,457 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:56:42,457 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:56:42,459 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:56:42,459 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:56:42,461 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:56:42,461 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:56:42,462 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:56:42,462 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:56:42,462 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:56:42,462 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:56:42,462 [76] DEBUG index - skipping headers +01/18/13 12:56:42,463 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:56:42,464 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:56:42,468 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:56:42,469 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:56:42,469 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:56:42,469 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:56:42,473 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:57')) +01/18/13 12:56:42,477 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:57:22,583 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:57:22,716 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:57:22,716 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:57:22,716 [76] DEBUG index - ****Starting for new session +01/18/13 12:57:22,717 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:57:22,717 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:57:22,717 [76] INFO index - About to take action CalendarAjax +01/18/13 12:57:22,717 [76] DEBUG index - in CalendarAjax +01/18/13 12:57:22,717 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:57:22,717 [76] INFO index - current module is Calendar +01/18/13 12:57:22,765 [76] DEBUG user - Entering Users() method ... +01/18/13 12:57:22,765 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:57:22,766 [76] DEBUG index - in getColumnFields Users +01/18/13 12:57:22,766 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:57:22,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:57:22,766 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:57:22,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:57:22,766 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:57:22,767 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:57:22,774 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:57:22,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:57:22,775 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:57:22,775 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:57:22,775 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:57:22,776 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:57:22,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,777 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:57:22,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,777 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:57:22,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,778 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:57:22,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,778 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:57:22,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,779 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:57:22,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,779 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:57:22,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,780 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:57:22,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,780 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:57:22,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,781 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:57:22,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,781 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:57:22,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,782 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:57:22,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,782 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:57:22,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,783 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:57:22,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,784 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:57:22,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,784 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:57:22,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,785 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:57:22,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,785 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:57:22,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,786 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:57:22,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,786 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:57:22,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,787 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:57:22,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,787 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:57:22,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,788 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:57:22,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,788 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:57:22,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,788 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:57:22,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,789 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:57:22,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,789 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:57:22,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,790 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:57:22,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,790 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:57:22,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,791 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:57:22,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,791 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:57:22,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,792 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:57:22,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,792 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:57:22,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,793 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:57:22,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,793 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:57:22,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,794 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:57:22,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,794 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:57:22,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,795 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:57:22,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,795 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:57:22,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,796 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:57:22,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,796 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:57:22,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,797 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:57:22,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,797 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:57:22,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,798 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:57:22,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,798 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:57:22,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,799 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:57:22,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,799 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:57:22,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:57:22,800 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:57:22,800 [76] DEBUG index - Current user is: admin +01/18/13 12:57:22,800 [76] DEBUG index - Current theme is: softed +01/18/13 12:57:22,800 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:57:22,800 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:57:22,802 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:57:22,803 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:57:22,805 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:57:22,805 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:57:22,806 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:57:22,807 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:57:22,807 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:57:22,807 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:57:22,807 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:57:22,807 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:57:22,808 [76] DEBUG index - skipping headers +01/18/13 12:57:22,809 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:57:22,809 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:57:22,814 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:57:22,814 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:57:22,814 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:57:22,814 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:57:22,818 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:58')) +01/18/13 12:57:22,821 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:58:03,229 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:58:03,367 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:58:03,367 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:58:03,367 [76] DEBUG index - ****Starting for new session +01/18/13 12:58:03,368 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:58:03,368 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:58:03,368 [76] INFO index - About to take action CalendarAjax +01/18/13 12:58:03,368 [76] DEBUG index - in CalendarAjax +01/18/13 12:58:03,368 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:58:03,368 [76] INFO index - current module is Calendar +01/18/13 12:58:03,416 [76] DEBUG user - Entering Users() method ... +01/18/13 12:58:03,416 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:58:03,416 [76] DEBUG index - in getColumnFields Users +01/18/13 12:58:03,416 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:03,417 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:03,417 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:03,417 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:03,417 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:58:03,417 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:58:03,426 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:03,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:03,426 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:58:03,426 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:58:03,426 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:58:03,427 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:58:03,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,428 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:58:03,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,428 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:58:03,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,429 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:58:03,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,429 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:58:03,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,430 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:58:03,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,430 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:58:03,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,431 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:58:03,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,431 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:58:03,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,432 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:58:03,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,432 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:58:03,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,433 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:58:03,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,433 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:58:03,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,434 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:58:03,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,434 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:58:03,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,435 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:58:03,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,435 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:58:03,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,436 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:58:03,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,436 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:58:03,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,437 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:58:03,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,437 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:58:03,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,438 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:58:03,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,438 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:58:03,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,439 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:58:03,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,439 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:58:03,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,439 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:58:03,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,440 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:58:03,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,440 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:58:03,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,441 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:58:03,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,442 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:58:03,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,442 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:58:03,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,443 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:58:03,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,443 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:58:03,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,444 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:58:03,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,444 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:58:03,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,445 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:58:03,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,445 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:58:03,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,446 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:58:03,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,446 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:58:03,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,447 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:58:03,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,447 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:58:03,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,448 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:58:03,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,448 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:58:03,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,449 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:58:03,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,449 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:58:03,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,450 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:58:03,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,450 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:58:03,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:03,451 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:58:03,451 [76] DEBUG index - Current user is: admin +01/18/13 12:58:03,451 [76] DEBUG index - Current theme is: softed +01/18/13 12:58:03,451 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:58:03,451 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:58:03,453 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:58:03,454 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:58:03,456 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:58:03,456 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:58:03,457 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:58:03,458 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:58:03,458 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:58:03,458 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:58:03,458 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:58:03,458 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:58:03,459 [76] DEBUG index - skipping headers +01/18/13 12:58:03,460 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:58:03,460 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:58:03,465 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:58:03,465 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:58:03,465 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:58:03,465 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:58:03,471 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:59')) +01/18/13 12:58:03,476 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:58:43,583 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:58:43,716 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:58:43,717 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:58:43,717 [76] DEBUG index - ****Starting for new session +01/18/13 12:58:43,717 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:58:43,718 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:58:43,718 [76] INFO index - About to take action CalendarAjax +01/18/13 12:58:43,718 [76] DEBUG index - in CalendarAjax +01/18/13 12:58:43,718 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:58:43,718 [76] INFO index - current module is Calendar +01/18/13 12:58:43,765 [76] DEBUG user - Entering Users() method ... +01/18/13 12:58:43,765 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:58:43,765 [76] DEBUG index - in getColumnFields Users +01/18/13 12:58:43,765 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:43,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:43,766 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:43,767 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:43,767 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:58:43,767 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:58:43,777 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:58:43,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:58:43,777 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:58:43,777 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:58:43,777 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:58:43,778 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:58:43,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,779 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:58:43,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,779 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:58:43,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,780 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:58:43,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,780 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:58:43,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,781 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:58:43,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,781 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:58:43,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,782 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:58:43,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,782 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:58:43,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,783 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:58:43,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,783 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:58:43,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,784 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:58:43,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,785 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:58:43,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,785 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:58:43,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,786 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:58:43,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,786 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:58:43,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,787 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:58:43,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,787 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:58:43,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,788 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:58:43,788 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,788 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:58:43,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,789 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:58:43,789 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,789 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:58:43,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,790 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:58:43,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,790 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:58:43,790 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,791 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:58:43,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,791 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:58:43,791 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,792 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:58:43,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,792 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:58:43,792 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,793 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:58:43,793 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,793 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:58:43,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,794 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:58:43,794 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,794 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:58:43,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,795 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:58:43,795 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,795 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:58:43,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,796 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:58:43,796 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,796 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:58:43,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,797 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:58:43,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,797 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:58:43,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,798 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:58:43,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,798 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:58:43,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,799 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:58:43,799 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,799 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:58:43,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,800 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:58:43,800 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,800 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:58:43,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,801 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:58:43,801 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,801 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:58:43,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,802 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:58:43,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:58:43,802 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:58:43,803 [76] DEBUG index - Current user is: admin +01/18/13 12:58:43,803 [76] DEBUG index - Current theme is: softed +01/18/13 12:58:43,803 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:58:43,803 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:58:43,805 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:58:43,805 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:58:43,807 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:58:43,807 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:58:43,809 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:58:43,809 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:58:43,810 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:58:43,810 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:58:43,810 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:58:43,810 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:58:43,810 [76] DEBUG index - skipping headers +01/18/13 12:58:43,811 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:58:43,812 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:58:43,817 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:58:43,817 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:58:43,817 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:58:43,818 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:58:43,822 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '12:59')) +01/18/13 12:58:43,825 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 12:59:23,928 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 12:59:24,051 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 12:59:24,051 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 12:59:24,051 [76] DEBUG index - ****Starting for new session +01/18/13 12:59:24,052 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 12:59:24,052 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 12:59:24,052 [76] INFO index - About to take action CalendarAjax +01/18/13 12:59:24,052 [76] DEBUG index - in CalendarAjax +01/18/13 12:59:24,053 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 12:59:24,053 [76] INFO index - current module is Calendar +01/18/13 12:59:24,098 [76] DEBUG user - Entering Users() method ... +01/18/13 12:59:24,098 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 12:59:24,098 [76] DEBUG index - in getColumnFields Users +01/18/13 12:59:24,098 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:59:24,098 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:59:24,098 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:59:24,099 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:59:24,099 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 12:59:24,099 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 12:59:24,107 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 12:59:24,107 [76] DEBUG index - Exiting getTabid method ... +01/18/13 12:59:24,108 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 12:59:24,108 [76] DEBUG user - Exiting Users() method ... +01/18/13 12:59:24,108 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 12:59:24,109 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 12:59:24,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,109 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 12:59:24,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,110 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 12:59:24,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,111 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 12:59:24,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,111 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 12:59:24,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,112 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 12:59:24,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,112 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 12:59:24,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,113 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 12:59:24,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,113 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 12:59:24,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,114 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 12:59:24,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,114 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 12:59:24,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,115 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 12:59:24,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,115 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 12:59:24,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,116 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 12:59:24,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,116 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 12:59:24,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,117 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 12:59:24,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,117 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 12:59:24,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,118 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 12:59:24,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,118 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 12:59:24,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,119 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 12:59:24,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,119 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 12:59:24,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,120 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 12:59:24,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,120 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 12:59:24,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,121 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 12:59:24,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,121 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 12:59:24,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,122 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 12:59:24,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,122 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 12:59:24,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,123 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 12:59:24,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,123 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 12:59:24,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,124 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 12:59:24,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,124 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 12:59:24,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,125 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 12:59:24,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,125 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 12:59:24,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,126 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 12:59:24,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,126 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 12:59:24,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,127 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 12:59:24,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,127 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 12:59:24,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,128 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 12:59:24,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,128 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 12:59:24,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,129 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 12:59:24,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,129 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 12:59:24,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,130 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 12:59:24,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,130 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 12:59:24,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,131 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 12:59:24,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,131 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 12:59:24,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,132 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 12:59:24,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,132 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 12:59:24,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 12:59:24,133 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 12:59:24,133 [76] DEBUG index - Current user is: admin +01/18/13 12:59:24,133 [76] DEBUG index - Current theme is: softed +01/18/13 12:59:24,133 [76] DEBUG index - current_language is: zh_cn +01/18/13 12:59:24,133 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 12:59:24,135 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 12:59:24,135 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 12:59:24,137 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 12:59:24,137 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 12:59:24,139 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 12:59:24,139 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 12:59:24,140 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 12:59:24,140 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 12:59:24,140 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 12:59:24,140 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 12:59:24,140 [76] DEBUG index - skipping headers +01/18/13 12:59:24,141 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 12:59:24,142 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 12:59:24,146 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 12:59:24,147 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 12:59:24,147 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 12:59:24,147 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 12:59:24,152 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '13:00')) +01/18/13 12:59:24,156 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 13:00:04,645 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 13:00:04,778 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 13:00:04,778 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 13:00:04,778 [76] DEBUG index - ****Starting for new session +01/18/13 13:00:04,779 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 13:00:04,779 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 13:00:04,779 [76] INFO index - About to take action CalendarAjax +01/18/13 13:00:04,779 [76] DEBUG index - in CalendarAjax +01/18/13 13:00:04,779 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 13:00:04,779 [76] INFO index - current module is Calendar +01/18/13 13:00:04,823 [76] DEBUG user - Entering Users() method ... +01/18/13 13:00:04,824 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 13:00:04,824 [76] DEBUG index - in getColumnFields Users +01/18/13 13:00:04,824 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 13:00:04,824 [76] DEBUG index - Exiting getTabid method ... +01/18/13 13:00:04,824 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 13:00:04,824 [76] DEBUG index - Exiting getTabid method ... +01/18/13 13:00:04,825 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 13:00:04,825 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 13:00:04,838 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 13:00:04,838 [76] DEBUG index - Exiting getTabid method ... +01/18/13 13:00:04,838 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 13:00:04,839 [76] DEBUG user - Exiting Users() method ... +01/18/13 13:00:04,839 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 13:00:04,840 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 13:00:04,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,840 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 13:00:04,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,841 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 13:00:04,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,841 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 13:00:04,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,842 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 13:00:04,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,842 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 13:00:04,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,843 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 13:00:04,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,843 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 13:00:04,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,844 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 13:00:04,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,844 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 13:00:04,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,845 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 13:00:04,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,845 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 13:00:04,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,846 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 13:00:04,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,846 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 13:00:04,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,847 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 13:00:04,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,847 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 13:00:04,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,848 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 13:00:04,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,848 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 13:00:04,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,849 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 13:00:04,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,849 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 13:00:04,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,850 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 13:00:04,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,850 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 13:00:04,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,851 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 13:00:04,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,851 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 13:00:04,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,851 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 13:00:04,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,852 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 13:00:04,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,852 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 13:00:04,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,853 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 13:00:04,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,853 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 13:00:04,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,854 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 13:00:04,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,854 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 13:00:04,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,855 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 13:00:04,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,855 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 13:00:04,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,856 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 13:00:04,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,856 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 13:00:04,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,856 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 13:00:04,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,857 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 13:00:04,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,857 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 13:00:04,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,858 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 13:00:04,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,858 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 13:00:04,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,859 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 13:00:04,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,859 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 13:00:04,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,860 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 13:00:04,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,860 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 13:00:04,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,861 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 13:00:04,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,861 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 13:00:04,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,862 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 13:00:04,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 13:00:04,862 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 13:00:04,863 [76] DEBUG index - Current user is: admin +01/18/13 13:00:04,863 [76] DEBUG index - Current theme is: softed +01/18/13 13:00:04,863 [76] DEBUG index - current_language is: zh_cn +01/18/13 13:00:04,863 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 13:00:04,865 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 13:00:04,865 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 13:00:04,867 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 13:00:04,867 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 13:00:04,868 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 13:00:04,868 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 13:00:04,869 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 13:00:04,869 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 13:00:04,869 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 13:00:04,869 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 13:00:04,869 [76] DEBUG index - skipping headers +01/18/13 13:00:04,870 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 13:00:04,871 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 13:00:04,876 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 13:00:04,876 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 13:00:04,876 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 13:00:04,876 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 13:00:04,880 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '13:01')) +01/18/13 13:00:04,883 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/22/13 10:30:28,716 [76] INFO VT - PearDatabase ->ADODB disconnect +01/22/13 10:30:51,289 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/22/13 10:30:51,298 [76] DEBUG VT - Exiting set_default_config method ... +01/22/13 10:30:51,298 [76] DEBUG index - ****Starting for new session +01/22/13 10:30:51,312 [76] DEBUG index - We have an authenticated user id: 1 +01/22/13 10:30:51,312 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/22/13 10:30:51,312 [76] INFO index - About to take action CalendarAjax +01/22/13 10:30:51,312 [76] DEBUG index - in CalendarAjax +01/22/13 10:30:51,318 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/22/13 10:30:51,319 [76] INFO index - current module is Calendar +01/22/13 10:30:51,869 [76] DEBUG user - Entering Users() method ... +01/22/13 10:30:51,870 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/22/13 10:30:51,895 [76] DEBUG index - in getColumnFields Users +01/22/13 10:30:51,895 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:30:51,907 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:30:51,908 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:30:51,908 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:30:51,908 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/22/13 10:30:51,908 [76] DEBUG index - Prepared sql query parameters : [29] +01/22/13 10:30:51,908 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:30:51,908 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:30:51,908 [76] DEBUG index - Exiting getColumnFields method ... +01/22/13 10:30:51,908 [76] DEBUG user - Exiting Users() method ... +01/22/13 10:30:51,927 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/22/13 10:30:51,928 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/22/13 10:30:51,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,929 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/22/13 10:30:51,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,929 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/22/13 10:30:51,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,930 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/22/13 10:30:51,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,930 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/22/13 10:30:51,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,931 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/22/13 10:30:51,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,932 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/22/13 10:30:51,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,932 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/22/13 10:30:51,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,933 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/22/13 10:30:51,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,933 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/22/13 10:30:51,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,934 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/22/13 10:30:51,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,934 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/22/13 10:30:51,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,935 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/22/13 10:30:51,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,935 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/22/13 10:30:51,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,936 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/22/13 10:30:51,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,936 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/22/13 10:30:51,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,937 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/22/13 10:30:51,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,937 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/22/13 10:30:51,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,938 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/22/13 10:30:51,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,939 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/22/13 10:30:51,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,939 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/22/13 10:30:51,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,940 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/22/13 10:30:51,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,941 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/22/13 10:30:51,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,941 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/22/13 10:30:51,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,941 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/22/13 10:30:51,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,942 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/22/13 10:30:51,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,943 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/22/13 10:30:51,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,943 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/22/13 10:30:51,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,944 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/22/13 10:30:51,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,944 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/22/13 10:30:51,945 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,945 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/22/13 10:30:51,946 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,946 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/22/13 10:30:51,946 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,946 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/22/13 10:30:51,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,947 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/22/13 10:30:51,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,948 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/22/13 10:30:51,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,948 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/22/13 10:30:51,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,949 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/22/13 10:30:51,949 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,949 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/22/13 10:30:51,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,950 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/22/13 10:30:51,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,950 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/22/13 10:30:51,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,951 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/22/13 10:30:51,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,951 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/22/13 10:30:51,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,952 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/22/13 10:30:51,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,952 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/22/13 10:30:51,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,953 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/22/13 10:30:51,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,953 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/22/13 10:30:51,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,954 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/22/13 10:30:51,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:30:51,954 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/22/13 10:30:51,955 [76] DEBUG index - Current user is: +01/22/13 10:30:51,955 [76] DEBUG index - Current theme is: softed +01/22/13 10:30:51,956 [76] DEBUG index - current_language is: zh_cn +01/22/13 10:30:51,956 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/22/13 10:30:51,987 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/22/13 10:30:51,988 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/22/13 10:30:51,990 [76] DEBUG index - Exiting return_application_language method ... +01/22/13 10:30:51,990 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/22/13 10:30:51,991 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/22/13 10:30:51,992 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/22/13 10:30:52,023 [76] DEBUG index - Exiting return_module_language method ... +01/22/13 10:30:52,023 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/22/13 10:30:52,023 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/22/13 10:30:52,023 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/22/13 10:30:52,023 [76] DEBUG index - skipping headers +01/22/13 10:30:52,024 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/22/13 10:30:52,026 [76] DEBUG index - Exiting isPermitted method ... +01/22/13 10:30:52,103 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/22/13 10:30:52,103 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/22/13 10:30:52,103 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/22/13 10:30:52,103 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/22/13 10:30:52,104 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-22') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '10:30')) +01/22/13 10:30:52,104 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/22/13 10:31:32,454 [76] INFO VT - PearDatabase ->ADODB disconnect +01/22/13 10:31:34,853 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/22/13 10:31:34,853 [76] DEBUG VT - Exiting set_default_config method ... +01/22/13 10:31:34,853 [76] DEBUG index - ****Starting for new session +01/22/13 10:31:34,854 [76] DEBUG index - We have an authenticated user id: 1 +01/22/13 10:31:34,854 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/22/13 10:31:34,854 [76] INFO index - About to take action CalendarAjax +01/22/13 10:31:34,854 [76] DEBUG index - in CalendarAjax +01/22/13 10:31:34,854 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/22/13 10:31:34,855 [76] INFO index - current module is Calendar +01/22/13 10:31:34,907 [76] DEBUG user - Entering Users() method ... +01/22/13 10:31:34,907 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/22/13 10:31:34,907 [76] DEBUG index - in getColumnFields Users +01/22/13 10:31:34,907 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:31:34,908 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:31:34,908 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:31:34,908 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:31:34,908 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/22/13 10:31:34,908 [76] DEBUG index - Prepared sql query parameters : [29] +01/22/13 10:31:34,908 [76] DEBUG index - Entering getTabid(Users) method ... +01/22/13 10:31:34,908 [76] DEBUG index - Exiting getTabid method ... +01/22/13 10:31:34,908 [76] DEBUG index - Exiting getColumnFields method ... +01/22/13 10:31:34,908 [76] DEBUG user - Exiting Users() method ... +01/22/13 10:31:34,910 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/22/13 10:31:34,910 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/22/13 10:31:34,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,911 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/22/13 10:31:34,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,911 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/22/13 10:31:34,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,912 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/22/13 10:31:34,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,912 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/22/13 10:31:34,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,913 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/22/13 10:31:34,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,914 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/22/13 10:31:34,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,914 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/22/13 10:31:34,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,915 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/22/13 10:31:34,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,915 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/22/13 10:31:34,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,916 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/22/13 10:31:34,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,916 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/22/13 10:31:34,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,917 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/22/13 10:31:34,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,917 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/22/13 10:31:34,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,918 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/22/13 10:31:34,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,918 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/22/13 10:31:34,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,919 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/22/13 10:31:34,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,919 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/22/13 10:31:34,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,920 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/22/13 10:31:34,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,920 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/22/13 10:31:34,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,921 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/22/13 10:31:34,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,921 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/22/13 10:31:34,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,922 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/22/13 10:31:34,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,922 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/22/13 10:31:34,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,923 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/22/13 10:31:34,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,923 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/22/13 10:31:34,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,923 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/22/13 10:31:34,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,924 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/22/13 10:31:34,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,925 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/22/13 10:31:34,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,925 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/22/13 10:31:34,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,926 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/22/13 10:31:34,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,926 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/22/13 10:31:34,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,927 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/22/13 10:31:34,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,927 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/22/13 10:31:34,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,928 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/22/13 10:31:34,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,928 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/22/13 10:31:34,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,929 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/22/13 10:31:34,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,929 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/22/13 10:31:34,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,930 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/22/13 10:31:34,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,930 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/22/13 10:31:34,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,931 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/22/13 10:31:34,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,931 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/22/13 10:31:34,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,932 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/22/13 10:31:34,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,932 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/22/13 10:31:34,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,933 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/22/13 10:31:34,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,933 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/22/13 10:31:34,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,934 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/22/13 10:31:34,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/22/13 10:31:34,934 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/22/13 10:31:34,935 [76] DEBUG index - Current user is: +01/22/13 10:31:34,935 [76] DEBUG index - Current theme is: softed +01/22/13 10:31:34,935 [76] DEBUG index - current_language is: zh_cn +01/22/13 10:31:34,935 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/22/13 10:31:34,937 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/22/13 10:31:34,937 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/22/13 10:31:34,939 [76] DEBUG index - Exiting return_application_language method ... +01/22/13 10:31:34,939 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/22/13 10:31:34,941 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/22/13 10:31:34,941 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/22/13 10:31:34,942 [76] DEBUG index - Exiting return_module_language method ... +01/22/13 10:31:34,942 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/22/13 10:31:34,942 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/22/13 10:31:34,942 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/22/13 10:31:34,942 [76] DEBUG index - skipping headers +01/22/13 10:31:34,943 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/22/13 10:31:34,944 [76] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:14,070 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:18,643 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:01:18,895 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:18,896 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:18,897 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:18,897 [1520] DEBUG index - The current user does not have a session. Going to the login page +01/30/13 11:01:18,928 [1520] DEBUG index - Entering return_module_language(,Users) method ... +01/30/13 11:01:18,929 [1520] WARN index - Unable to find the module language file for language: and module: Users +01/30/13 11:01:18,937 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:18,979 [1520] DEBUG index - Entering return_application_language(en_us) method ... +01/30/13 11:01:18,1000 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:18,1000 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:01:34,566 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:34,774 [1520] DEBUG VT - query being executed : SELECT * FROM vtiger_version +01/30/13 11:01:34,776 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:34,776 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:34,777 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:34,778 [1520] DEBUG index - We are authenticating user now +01/30/13 11:01:34,778 [1520] DEBUG index - array ( + 'module' => 'Users', + 'action' => 'Authenticate', + 'return_module' => 'Users', + 'return_action' => 'Login', + 'user_name' => 'admin', + 'user_password' => 'admin', +) +01/30/13 11:01:34,778 [1520] INFO index - About to take action Authenticate +01/30/13 11:01:34,778 [1520] DEBUG index - in Authenticate +01/30/13 11:01:34,779 [1520] INFO index - current page is modules/Users/Authenticate.php +01/30/13 11:01:34,779 [1520] INFO index - current module is Users +01/30/13 11:01:35,611 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:35,612 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:35,612 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:35,612 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:35,629 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:35,629 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:35,629 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:35,630 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:35,630 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:35,858 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:35,859 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:35,859 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:35,859 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:35,859 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:35,860 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:35,860 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:35,867 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:35,867 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:35,870 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:35,870 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:35,872 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:35,872 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:35,873 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:35,874 [1520] DEBUG index - skipping headers +01/30/13 11:01:35,938 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:35,938 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:35,938 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:35,939 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:35,939 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:35,939 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:35,939 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:35,941 [1520] DEBUG user - Starting user load for admin +01/30/13 11:01:35,941 [1520] DEBUG user - Using integrated/SQL authentication +01/30/13 11:01:35,941 [1520] DEBUG index - Prepared sql query being executed : SELECT crypt_type FROM vtiger_users WHERE user_name=? +01/30/13 11:01:35,942 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:01:36,069 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_users where user_name=? AND user_password=? +01/30/13 11:01:36,069 [1520] DEBUG index - Prepared sql query parameters : [admin,$1$ad000000$hzXFXvL3XVlnUE/X.1n9t/] +01/30/13 11:01:36,078 [1520] DEBUG index - query being executed : SELECT * from vtiger_users where user_name='admin' +01/30/13 11:01:36,220 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:36,220 [1520] DEBUG index - Prepared sql query parameters : [259,1,Users,Authenticate,,2013-01-30 11:01:36] +01/30/13 11:01:36,330 [1520] DEBUG index - Prepared sql query being executed : Insert into vtiger_loginhistory (user_name, user_ip, logout_time, login_time, status) values (?,?,?,?,?) +01/30/13 11:01:36,330 [1520] DEBUG index - Prepared sql query parameters : [admin,10.0.1.4,0000-00-00 00:00:00,2013/01/30 11:01:36,Signed in] +01/30/13 11:01:36,394 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:36,394 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:36,394 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:36,395 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:36,395 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:36,395 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:36,395 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:36,395 [1520] DEBUG index - Entering into retrieve_entity_info(1, Users) method. +01/30/13 11:01:36,396 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:01:36,396 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:36,401 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_attachments where attachmentsid=? +01/30/13 11:01:36,402 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:36,426 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2role where userid=? +01/30/13 11:01:36,427 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:36,459 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid=? +01/30/13 11:01:36,459 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:36,515 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:36,515 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:36,515 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_field where tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:01:36,516 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:36,537 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id=? and currency_status='Active' and deleted=0 +01/30/13 11:01:36,537 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:01:36,621 [1520] DEBUG index - Exit from retrieve_entity_info(1, Users) method. +01/30/13 11:01:36,624 [1520] DEBUG index - authenticated_user_theme is softed +01/30/13 11:01:36,624 [1520] DEBUG index - authenticated_user_language is zh_cn +01/30/13 11:01:36,624 [1520] DEBUG index - authenticated_user_id is 1 +01/30/13 11:01:36,624 [1520] DEBUG index - app_unique_key is 7fbc51092369f141c526d6d14cb13651 +01/30/13 11:01:36,625 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:01:36,795 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:37,004 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:37,004 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:37,005 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:37,005 [1520] DEBUG index - Prepared sql query being executed : select internal_mailer from vtiger_users where id=? +01/30/13 11:01:37,005 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:37,007 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:37,007 [1520] DEBUG index - +01/30/13 11:01:37,103 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:37,308 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:37,308 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:37,309 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:37,310 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:37,310 [1520] DEBUG index - array ( + 'action' => 'index', + 'module' => 'Home', +) +01/30/13 11:01:37,310 [1520] INFO index - About to take action index +01/30/13 11:01:37,310 [1520] DEBUG index - in index +01/30/13 11:01:37,311 [1520] INFO index - current page is modules/Home/index.php +01/30/13 11:01:37,311 [1520] INFO index - current module is Home +01/30/13 11:01:37,388 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:37,388 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:37,388 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:37,388 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:37,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,389 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:37,389 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,389 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:37,390 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:37,413 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:37,413 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,413 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:37,414 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:37,414 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:37,415 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:37,416 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,416 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:37,417 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,417 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:37,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,418 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:37,418 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,419 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:37,419 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,419 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:37,420 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,420 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:37,421 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,421 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:37,422 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,422 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:37,423 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,423 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:37,424 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,424 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:37,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,425 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:37,425 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,426 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:37,426 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,426 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:37,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,427 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:37,428 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,428 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:37,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,429 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:37,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,430 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:37,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,431 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:37,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,432 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,433 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:37,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,434 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:37,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,434 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,435 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:37,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,435 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:37,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,436 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:37,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,437 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:37,438 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,438 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:37,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,439 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:37,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,440 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:37,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,441 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:37,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,442 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:37,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,443 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:37,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,444 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:37,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,444 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:37,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,445 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:37,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,446 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:37,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,447 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:37,448 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,448 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:37,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,449 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:37,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,450 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:37,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,451 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:37,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,452 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:37,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,452 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:37,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,453 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:37,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,454 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:37,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,455 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:37,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:37,456 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:37,463 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:37,463 [1520] DEBUG index - Prepared sql query parameters : [260,1,Home,index,,2013-01-30 11:01:37] +01/30/13 11:01:37,475 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:37,475 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:37,475 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:37,475 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:37,477 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:37,477 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:37,480 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:37,480 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:37,482 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:37,482 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:37,483 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,483 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:37,483 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:37,484 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:37,484 [1520] DEBUG index - including headers +01/30/13 11:01:37,484 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:37,500 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:37,523 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:37,523 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:37,560 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:01:37,563 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:01:37,565 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,565 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:01:37,566 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,567 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:01:37,568 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,568 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:01:37,570 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,570 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:01:37,571 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,571 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:01:37,572 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,573 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:01:37,573 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,574 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:01:37,574 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:37,574 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:01:37,575 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:01:37,575 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:01:37,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:37,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,694 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:37,694 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:37,697 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:37,699 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,699 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:01:37,699 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:01:37,701 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,701 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:37,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,706 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:01:37,706 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:01:37,708 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,708 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:37,710 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,711 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:01:37,711 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:01:37,713 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,713 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:37,715 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,715 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:01:37,715 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:01:37,717 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,717 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:37,720 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,721 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:01:37,721 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:01:37,722 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,722 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:37,724 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,724 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:01:37,724 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:01:37,725 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,725 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:01:37,725 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,726 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:01:37,726 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:01:37,726 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,727 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:37,728 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,728 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:01:37,728 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:01:37,729 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,729 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:37,741 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,741 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:01:37,741 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:01:37,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:37,743 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,744 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:01:37,744 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:01:37,745 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,745 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:37,746 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,746 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:01:37,746 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:01:37,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,747 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:37,749 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,749 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:01:37,749 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:01:37,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:37,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,751 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:01:37,751 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:01:37,752 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,752 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:37,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,753 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:01:37,753 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:01:37,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,754 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:37,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,785 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:01:37,785 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:01:37,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,788 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:37,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,797 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:01:37,797 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:01:37,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:37,813 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,814 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:01:37,814 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:01:37,816 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,816 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:37,818 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:37,818 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:01:37,819 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:01:37,820 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,821 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:01:37,821 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:01:37) method ... +01/30/13 11:01:37,832 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:01:37,833 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:01:37) method ... +01/30/13 11:01:37,833 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:01:37,833 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:37,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:37,834 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:37,837 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:37,838 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:01:37,838 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:01:37,838 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:01:37,845 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,845 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,846 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,846 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,846 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,846 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,847 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,847 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,847 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,848 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,848 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,848 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,849 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,849 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,849 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,849 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,850 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,850 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,850 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,850 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,851 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,851 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,851 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,852 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,852 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,852 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,852 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,853 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,853 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,853 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,854 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,854 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,855 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,855 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,856 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,856 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,856 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,857 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,857 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,858 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,858 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,859 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,859 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,860 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,860 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,860 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,861 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,861 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,862 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,862 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,862 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,863 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,863 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,863 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:01:37,904 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:37,906 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,906 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:37,906 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:37,908 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:37,909 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:37,928 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:01:37,929 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,929 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:01:37,930 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,931 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:01:37,931 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,931 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:01:37,933 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,933 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:37,933 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,933 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:37,935 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,935 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:37,935 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,936 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:01:37,937 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,938 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:37,938 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,938 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:01:37,940 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,940 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:37,940 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,940 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:37,942 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,942 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:37,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,942 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:01:37,944 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,944 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:01:37,944 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,945 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:01:37,946 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,947 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:01:37,947 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,947 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:01:37,949 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,949 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:01:37,951 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,951 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:01:37,953 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,953 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:01:37,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,955 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:01:37,956 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,956 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:37,957 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,957 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:01:37,959 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,959 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:37,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,959 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:01:37,961 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,961 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:37,961 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,961 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:01:37,962 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,962 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:01:37,963 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:37,963 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:37,964 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:37,971 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:01:37,971 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:01:37,971 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:38,090 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:01:38,092 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,094 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:01:38,095 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,097 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:01:38,099 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,100 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:01:38,102 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,103 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:01:38,105 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,106 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:38,107 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:01:38,134 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:01:38,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:38,134 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:01:38,134 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:01:38,137 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:01:38,246 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,246 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,246 [1520] DEBUG index - function getTranslatedString(Home) - translated to (首页) +01/30/13 11:01:38,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:38,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,269 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:38,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:38,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,270 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:38,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:38,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,271 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:38,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:38,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,271 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:38,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:38,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,272 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:38,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:38,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,273 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:38,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:38,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,273 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:38,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:38,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,277 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:01:38,278 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:38,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,278 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:38,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:01:38,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,280 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:01:38,325 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:38,382 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,383 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:38,383 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:01:38,385 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,385 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:01:38,385 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:01:38,389 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,389 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:01:38,389 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:01:38,391 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,391 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:01:38,391 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,406 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:38,406 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:38,406 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,406 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:01:38,407 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:01:38,409 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,409 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:01:38,409 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:01:38,411 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,411 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:01:38,412 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:01:38,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,414 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:01:38,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:38,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,414 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:38,414 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:38,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,414 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:01:38,414 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:38,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,415 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:38,415 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:38,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,415 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:38,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:38,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,415 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:38,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:38,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,417 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:38,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:38,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,417 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:38,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:38,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,418 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:38,418 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:38,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,420 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:38,420 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:38,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,420 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:38,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:38,420 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,420 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:38,420 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:38,422 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,422 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:38,423 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:38,425 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,425 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:38,425 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:38,426 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,427 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:38,428 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,428 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,428 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:01:38,608 [1520] DEBUG index - query being executed : SELECT * FROM vtiger_tab +01/30/13 11:01:38,629 [1520] DEBUG index - Entering isPermitted(Potentials,DetailView,) method ... +01/30/13 11:01:38,631 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,632 [1520] DEBUG index - Entering isPermitted(Contacts,DetailView,) method ... +01/30/13 11:01:38,633 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,634 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,) method ... +01/30/13 11:01:38,635 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,635 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,) method ... +01/30/13 11:01:38,637 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,637 [1520] DEBUG index - Entering isPermitted(Documents,DetailView,) method ... +01/30/13 11:01:38,639 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,639 [1520] DEBUG index - Entering isPermitted(Calendar,DetailView,) method ... +01/30/13 11:01:38,641 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,641 [1520] DEBUG index - Entering isPermitted(HelpDesk,DetailView,) method ... +01/30/13 11:01:38,643 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,643 [1520] DEBUG index - Entering isPermitted(Products,DetailView,) method ... +01/30/13 11:01:38,645 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,645 [1520] DEBUG index - Entering isPermitted(Faq,DetailView,) method ... +01/30/13 11:01:38,647 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,647 [1520] DEBUG index - Entering isPermitted(Vendors,DetailView,) method ... +01/30/13 11:01:38,649 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,649 [1520] DEBUG index - Entering isPermitted(PriceBooks,DetailView,) method ... +01/30/13 11:01:38,651 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,651 [1520] DEBUG index - Entering isPermitted(Quotes,DetailView,) method ... +01/30/13 11:01:38,652 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,652 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,DetailView,) method ... +01/30/13 11:01:38,653 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,653 [1520] DEBUG index - Entering isPermitted(SalesOrder,DetailView,) method ... +01/30/13 11:01:38,654 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,654 [1520] DEBUG index - Entering isPermitted(Invoice,DetailView,) method ... +01/30/13 11:01:38,655 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,655 [1520] DEBUG index - Entering isPermitted(Campaigns,DetailView,) method ... +01/30/13 11:01:38,656 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,656 [1520] DEBUG index - Entering isPermitted(PBXManager,DetailView,) method ... +01/30/13 11:01:38,657 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,657 [1520] DEBUG index - Entering isPermitted(ServiceContracts,DetailView,) method ... +01/30/13 11:01:38,658 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,658 [1520] DEBUG index - Entering isPermitted(Services,DetailView,) method ... +01/30/13 11:01:38,659 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,659 [1520] DEBUG index - Entering isPermitted(Assets,DetailView,) method ... +01/30/13 11:01:38,660 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,660 [1520] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/30/13 11:01:38,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,661 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,DetailView,) method ... +01/30/13 11:01:38,661 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,662 [1520] DEBUG index - Entering isPermitted(ProjectTask,DetailView,) method ... +01/30/13 11:01:38,662 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,663 [1520] DEBUG index - Entering isPermitted(Project,DetailView,) method ... +01/30/13 11:01:38,663 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,663 [1520] DEBUG index - Entering isPermitted(SMSNotifier,DetailView,) method ... +01/30/13 11:01:38,664 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,664 [1520] DEBUG index - Entering isPermitted(Rss,DetailView,) method ... +01/30/13 11:01:38,665 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,665 [1520] DEBUG index - Entering isPermitted(Dashboard,DetailView,) method ... +01/30/13 11:01:38,666 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,666 [1520] DEBUG index - Entering isPermitted(Reports,DetailView,) method ... +01/30/13 11:01:38,667 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,667 [1520] DEBUG index - Prepared sql query being executed : select vtiger_homestuff.stuffid,stufftype,stufftitle,setype from vtiger_homestuff + left join vtiger_homedefault on vtiger_homedefault.stuffid=vtiger_homestuff.stuffid + where visible=0 and userid=? order by stuffsequence desc +01/30/13 11:01:38,667 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:38,755 [1520] DEBUG index - function getTranslatedString(My Recent FAQs) - translated to (最新常见问答) +01/30/13 11:01:38,755 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:01:38,757 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,758 [1520] DEBUG index - function getTranslatedString(Pending Activities) - translated to (即将进行的活动) +01/30/13 11:01:38,758 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:38,760 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,760 [1520] DEBUG index - function getTranslatedString(Top Purchase Orders) - translated to (最新采购订单) +01/30/13 11:01:38,760 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:01:38,762 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,763 [1520] DEBUG index - function getTranslatedString(My New Leads) - translated to (最新潜在客户) +01/30/13 11:01:38,763 [1520] DEBUG index - Entering isPermitted(Leads,index,) method ... +01/30/13 11:01:38,765 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,765 [1520] DEBUG index - function getTranslatedString(Top Invoices) - translated to (最新发货单) +01/30/13 11:01:38,765 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:01:38,767 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,767 [1520] DEBUG index - function getTranslatedString(Top Sales Orders) - translated to (最新销售订单) +01/30/13 11:01:38,768 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:01:38,769 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,770 [1520] DEBUG index - function getTranslatedString(My Group Allocation) - translated to (最新部门任务) +01/30/13 11:01:38,770 [1520] DEBUG index - function getTranslatedString(Upcoming Activities) - translated to (近期活动) +01/30/13 11:01:38,770 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:38,772 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,772 [1520] DEBUG index - function getTranslatedString(Top Trouble Tickets) - translated to (最新故障单) +01/30/13 11:01:38,772 [1520] DEBUG index - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:01:38,773 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,774 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:38,774 [1520] DEBUG index - function getTranslatedString(Top Quotes) - translated to (最新报价单) +01/30/13 11:01:38,774 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:01:38,775 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,775 [1520] DEBUG index - function getTranslatedString(Top Potentials) - translated to (最新销售机会) +01/30/13 11:01:38,776 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:01:38,777 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,777 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:38,777 [1520] DEBUG index - Entering isPermitted(Dashboard,index,) method ... +01/30/13 11:01:38,778 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,778 [1520] DEBUG index - function getTranslatedString(Top Accounts) - translated to (最新客户) +01/30/13 11:01:38,779 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:38,780 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,780 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:38,781 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:38,781 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_home_layout where userid=? +01/30/13 11:01:38,781 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:38,832 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:38,833 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:38,833 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:38,837 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:38,837 [1520] DEBUG index - Prepared sql query being executed : SELECT tag,tag_id,COUNT(object_id) AS quantity + FROM vtiger_freetags INNER JOIN vtiger_freetagged_objects + ON (vtiger_freetags.id = tag_id) + WHERE 1=1 + AND tagger_id = ? + GROUP BY tag + ORDER BY quantity DESC LIMIT 0, 100 +01/30/13 11:01:38,837 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:38,929 [1520] DEBUG index - Prepared sql query being executed : SELECT login_time, logout_time FROM vtiger_loginhistory WHERE user_name=? ORDER BY login_id DESC LIMIT 2 +01/30/13 11:01:38,929 [1520] DEBUG index - Prepared sql query parameters : [admin] +01/30/13 11:01:38,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,974 [1520] DEBUG index - function getTranslatedString(LBL_REPORTCHARTS) - translated to (报表) +01/30/13 11:01:38,974 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,974 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,975 [1520] DEBUG index - function getTranslatedString(LBL_DEFAULT_WIDGET) - translated to (默认组件) +01/30/13 11:01:38,975 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:38,975 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,976 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:38,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:38,976 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,976 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:38,976 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:38,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,977 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:38,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:38,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,977 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:38,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:38,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,978 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:38,978 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:38,978 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,978 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:38,979 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:38,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,979 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:38,979 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:38,979 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,980 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:38,980 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:38,980 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,980 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:38,981 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:38,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,981 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:38,981 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:38,981 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,981 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:01:38,981 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:38,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,982 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:38,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:38,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,982 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:38,982 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:38,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,982 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:38,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:38,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,982 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:38,983 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:38,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,983 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:38,983 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:38,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,983 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:38,983 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:38,983 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,983 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:38,983 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:38,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,984 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:38,984 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:38,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,984 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:38,984 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:38,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,984 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:38,984 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:38,984 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,984 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:38,985 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:38,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,985 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:01:38,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:38,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,985 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:38,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:38,985 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,985 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:38,985 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,986 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_NAME) - translated to (报表名称) +01/30/13 11:01:38,986 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,986 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,986 [1520] DEBUG index - function getTranslatedString(LBL_HOME_REPORT_TYPE) - translated to (报表类型) +01/30/13 11:01:38,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,995 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:38,995 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,995 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,995 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:38,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:38,999 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:38,999 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,001 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,002 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,002 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,002 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,005 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,006 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,006 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,009 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,010 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,010 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,013 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,013 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,013 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,017 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,017 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,017 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,020 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,021 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,021 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,024 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,024 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,024 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,027 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,027 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,028 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,028 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,030 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,031 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,031 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,031 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,031 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,032 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,034 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,034 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,034 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,035 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,035 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,035 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,035 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,038 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,038 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,038 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,038 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,038 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,041 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,041 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,041 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,042 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,042 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,042 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,042 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,044 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,045 [1520] DEBUG index - function getTranslatedString(Key Metrics) - translated to (关键指标) +01/30/13 11:01:39,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,045 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,045 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,046 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,046 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,046 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,046 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,046 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,046 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,047 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,047 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,047 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,047 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,047 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,048 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,048 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,048 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,048 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,048 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,048 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,049 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,049 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:39,049 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:39,049 [1520] DEBUG index - function getTranslatedString(Home Page Dashboard) - translated to (最新销售情况) +01/30/13 11:01:39,049 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:01:39,049 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:39,050 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:39,815 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:39,817 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:39,831 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:39,944 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:40,052 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:40,052 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:40,053 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:40,054 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:40,054 [1520] DEBUG index - array ( + 'module' => 'Dashboard', + 'action' => 'DashboardAjax', + 'file' => 'HomepageDB', +) +01/30/13 11:01:40,054 [1520] INFO index - About to take action DashboardAjax +01/30/13 11:01:40,055 [1520] DEBUG index - in DashboardAjax +01/30/13 11:01:40,055 [1520] INFO index - current page is modules/Dashboard/DashboardAjax.php +01/30/13 11:01:40,055 [1520] INFO index - current module is Dashboard +01/30/13 11:01:40,133 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:40,133 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:40,133 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:40,133 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:40,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:40,134 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:40,134 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:40,134 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:40,134 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:40,151 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:40,151 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:40,151 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:40,151 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:40,152 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:40,153 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:40,153 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,154 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:40,154 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,154 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:40,155 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,155 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:40,156 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,156 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:40,157 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,157 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:40,158 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,158 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:40,159 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,159 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:40,160 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,160 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:40,161 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,161 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:40,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,162 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:40,162 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,163 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:40,163 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,163 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:40,164 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,164 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:40,165 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,165 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:40,166 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,166 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:40,167 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,167 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:40,168 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,168 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:40,169 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,169 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:40,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,170 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:40,170 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,171 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:40,171 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,172 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:40,172 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,172 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:40,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,173 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:40,173 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,174 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:40,174 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,174 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:40,175 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,175 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:40,176 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,176 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:40,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,177 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:40,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,178 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:40,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,179 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:40,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,180 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:40,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,180 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:40,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,181 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:40,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,182 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:40,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,183 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:40,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,184 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:40,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,185 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:40,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,186 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:40,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,187 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:40,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,187 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:40,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,188 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:40,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,189 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:40,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,190 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:40,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,191 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:40,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,192 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:40,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,193 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:40,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:40,193 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:40,228 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:40,228 [1520] DEBUG index - Prepared sql query parameters : [261,1,Dashboard,DashboardAjax,,2013-01-30 11:01:40] +01/30/13 11:01:40,240 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:40,240 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:40,240 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:40,240 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:40,242 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:40,243 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:40,247 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:40,248 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:40,251 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:40,252 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:01:40,253 [1520] WARN index - Unable to find the module language file for language: zh_cn and module: Dashboard +01/30/13 11:01:40,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:40,268 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:40,268 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:40,268 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:40,268 [1520] DEBUG index - skipping headers +01/30/13 11:01:40,271 [1520] DEBUG index - Entering isPermitted(Dashboard,HomepageDB,) method ... +01/30/13 11:01:40,272 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,465 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_leaddetails le on le.leadid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (le.converted = 0 OR le.converted IS NULL) +01/30/13 11:01:40,538 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_troubletickets tt ON tt.ticketid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (tt.status != 'Closed' OR tt.status IS NULL) +01/30/13 11:01:40,602 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_potential pot ON pot.potentialid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND (pot.sales_stage NOT IN ('成功结案','失败结案') OR pot.sales_stage IS NULL) +01/30/13 11:01:40,649 [1520] DEBUG index - query being executed : SELECT count(*) as count FROM vtiger_crmentity se INNER JOIN vtiger_activity act ON act.activityid = se.crmid + WHERE se.deleted = 0 AND se.smownerid = 1 AND act.activitytype != 'Emails' AND + ((act.status!='Completed' AND act.status!='Deferred') OR act.status IS NULL) + AND ((act.eventstatus!='Held' AND act.eventstatus!='Not Held') OR act.eventstatus IS NULL) +01/30/13 11:01:40,734 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:40,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,736 [1520] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:01:40,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,738 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:01:40,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,740 [1520] DEBUG index - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:01:40,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,742 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:01:40,743 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,744 [1520] DEBUG index - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:01:40,745 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,746 [1520] DEBUG index - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:01:40,747 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:40,748 [1520] DEBUG index - query being executed : SELECT setype, count(setype) setype_count FROM vtiger_crmentity se WHERE + se.deleted = 0 AND se.smownerid=1 AND se.setype in ('Accounts','Contacts','Quotes','SalesOrder','PurchaseOrder','Invoice','Campaigns') GROUP BY se.setype +01/30/13 11:01:40,751 [1520] DEBUG index - query being executed : SELECT cvid,entitytype FROM vtiger_customview WHERE viewname='All' AND entitytype in ('Leads','HelpDesk','Potentials','Calendar','Accounts','Campaigns','Contacts','Invoice','PurchaseOrder','Quotes','SalesOrder') +01/30/13 11:01:40,814 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,814 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,816 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,817 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,819 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,819 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,821 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,821 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,823 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,823 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,826 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,826 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,828 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,829 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,831 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,831 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,833 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,833 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,835 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,835 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:40,837 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:40,837 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:41,009 [1520] DEBUG index - Entering calculate_font_name(zh_cn) method ... +01/30/13 11:01:41,010 [1520] DEBUG index - Exiting calculate_font_name method ... +01/30/13 11:01:41,230 [1520] DEBUG index - Entering get_tickspacing(15) method ... +01/30/13 11:01:41,231 [1520] DEBUG index - Exiting get_tickspacing method ... +01/30/13 11:01:41,501 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:41,501 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:41,502 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:41,503 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:41,503 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":14,"widgetType":"Default"}]', +) +01/30/13 11:01:41,503 [1520] INFO index - About to take action HomeAjax +01/30/13 11:01:41,503 [1520] DEBUG index - in HomeAjax +01/30/13 11:01:41,504 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:01:41,504 [1520] INFO index - current module is Home +01/30/13 11:01:41,582 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:41,582 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:41,583 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:41,583 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:41,584 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,584 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:41,584 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,584 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:41,584 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:41,594 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:41,594 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,594 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:41,594 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:41,595 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:41,595 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:41,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,596 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:41,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,597 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:41,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,598 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:41,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,599 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:41,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,600 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:41,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,601 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:41,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,602 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:41,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,603 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:41,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,604 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:41,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,605 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:41,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,606 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:41,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,607 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:41,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,608 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:41,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,608 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:41,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,609 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:41,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,610 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:41,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,611 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:41,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,612 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:41,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,613 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:41,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,614 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:41,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,614 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:41,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,615 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:41,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,616 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:41,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,616 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:41,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,617 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:41,618 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,618 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:41,619 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,619 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:41,620 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,620 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:41,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,621 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:41,621 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,622 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:41,622 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,622 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:41,623 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,623 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:41,624 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,624 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:41,625 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,625 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:41,626 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,626 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:41,627 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,627 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:41,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,628 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:41,628 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,628 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:41,629 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,629 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:41,630 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,630 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:41,631 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,631 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:41,632 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,632 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:41,633 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,633 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:41,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,634 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:41,634 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,635 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:41,635 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,635 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:41,636 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,636 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:41,651 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:41,651 [1520] DEBUG index - Prepared sql query parameters : [262,1,Home,HomeAjax,,2013-01-30 11:01:41] +01/30/13 11:01:41,653 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:41,653 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:41,653 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:41,653 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:41,655 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:41,655 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:41,658 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:41,658 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:41,660 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:41,660 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:41,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:41,661 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:41,661 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:41,661 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:41,661 [1520] DEBUG index - skipping headers +01/30/13 11:01:41,727 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:41,727 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:01:41,729 [1520] DEBUG index - Entering isPermitted(Faq,index,) method ... +01/30/13 11:01:41,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:41,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:41,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:41,782 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:41,783 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:01:41,834 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:41,835 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:41,835 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:41,835 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,835 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,835 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,836 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,836 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:41,836 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:01:41,841 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,841 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,841 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:41,841 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:41,842 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,842 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,842 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:41,842 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:41,842 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:41,842 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,843 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,843 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:41,843 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:41,843 [1520] DEBUG index - Entering getCvIdOfAll(Faq) +01/30/13 11:01:41,843 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:01:41,843 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:01:41,846 [1520] DEBUG index - Exiting getCvIdOfAll(Faq) +01/30/13 11:01:41,847 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,847 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:41,848 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:01:41,850 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,850 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,850 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:41,850 [1520] DEBUG index - Prepared sql query parameters : [15] +01/30/13 11:01:41,855 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:41,855 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,856 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:41,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,857 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:41,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,857 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:41,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,858 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:41,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,858 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:01:41,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:41,858 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:41,859 [1520] DEBUG index - Prepared sql query parameters : [Faq] +01/30/13 11:01:41,900 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?) and displaytype in (1,2,3,4) +01/30/13 11:01:41,901 [1520] DEBUG index - Prepared sql query parameters : [15,37] +01/30/13 11:01:41,910 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:01:41,952 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:41,953 [1520] DEBUG index - Prepared sql query parameters : [33] +01/30/13 11:01:41,985 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:41,987 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:41,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,987 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:41,987 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:41,988 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:41,989 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:41,990 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:41,991 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:41,992 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,993 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,994 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,995 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,996 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:41,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:41,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:41,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,1000 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:41,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:41,1000 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:42,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,000 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:42,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:42,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:42,002 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:01:42,007 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:42,007 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:42,008 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:01:42,048 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:42,048 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:42,210 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,210 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:01:42,263 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,263 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:01:42,265 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,265 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:01:42,268 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:42,268 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:01:42,271 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:42,271 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:01:42,324 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,324 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:01:42,327 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,327 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:01:42,329 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,329 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:01:42,331 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,332 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:01:42,334 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,334 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:01:42,336 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,336 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:01:42,338 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,338 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:01:42,340 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,340 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:01:42,342 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:42,342 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:01:42,345 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:42,345 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:01:42,407 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,407 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:01:42,409 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,409 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:01:42,411 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,412 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:01:42,414 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,414 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:01:42,416 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:01:42,416 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:42,467 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,467 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:01:42,470 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:42,470 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:01:42,508 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:42,508 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:01:42,554 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,554 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:01:42,556 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,557 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:01:42,559 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,559 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:01:42,561 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,561 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:01:42,564 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,564 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:01:42,566 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,567 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:01:42,569 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,569 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:01:42,571 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,571 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:01:42,573 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,574 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:01:42,576 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,576 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:01:42,578 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,578 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:01:42,581 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:42,581 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:01:42,583 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:42,589 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:42,590 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:42,593 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:42,594 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:42,597 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,597 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:42,597 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:42,597 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,597 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:01:42,598 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:42,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,599 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:42,599 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:42,599 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,600 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:01:42,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,600 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:42,600 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,600 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,601 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:01:42,601 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:42,602 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,602 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:42,603 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:42,603 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,603 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:01:42,603 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:42,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,605 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:42,605 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:42,605 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,605 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:42,605 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:42,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,607 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:42,607 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:42,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,607 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:01:42,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:42,609 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,609 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:42,609 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:42,610 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,610 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:01:42,610 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:42,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,611 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:42,611 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:42,612 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,612 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:01:42,612 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:42,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,614 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:42,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:42,614 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,614 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:01:42,614 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:42,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,615 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:42,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:42,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,615 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:01:42,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:42,616 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,616 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:42,616 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:42,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,617 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:42,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:42,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,618 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:42,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:42,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,618 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:01:42,618 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:42,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,619 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:42,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:42,619 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,619 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:01:42,619 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:42,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,620 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:42,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:42,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,620 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:01:42,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:42,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,621 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:42,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:42,621 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,621 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:01:42,621 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:42,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,622 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:01:42,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:42,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,622 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:01:42,622 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:42,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,623 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:42,623 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:42,623 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,624 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:01:42,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:42,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,624 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:01:42,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:42,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,624 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:01:42,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:42,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,626 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:01:42,626 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:42,626 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,626 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:01:42,626 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:42,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,627 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:42,627 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:42,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,627 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:01:42,627 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:42,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,628 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:01:42,628 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:42,628 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,629 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:01:42,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:42,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,629 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:42,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:42,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,630 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:01:42,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:42,630 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,630 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:42,630 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:42,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,631 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:01:42,631 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:42,631 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,631 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:01:42,631 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:42,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,632 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:01:42,632 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:42,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,632 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:42,633 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:42,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,633 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:01:42,633 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:42,633 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,633 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:42,634 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:42,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,634 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:01:42,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:42,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,635 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:42,635 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:42,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,635 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:01:42,635 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:42,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,636 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:42,636 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:42,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,636 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:01:42,636 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:42,636 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:42,681 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:42,681 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:01:42,683 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:42,684 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:42,685 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:42,685 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:01:42,734 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:42,734 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:01:42,754 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:42,754 [1520] DEBUG index - Prepared sql query parameters : [28] +01/30/13 11:01:42,842 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:42,842 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:01:42,845 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:01:42,846 [1520] DEBUG index - Entering getColumnFields(Products) method ... +01/30/13 11:01:42,846 [1520] DEBUG index - in getColumnFields Products +01/30/13 11:01:42,846 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:42,846 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,846 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:42,847 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,847 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:42,847 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:01:42,856 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:42,856 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,857 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:42,857 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:01:42,857 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:42,857 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,857 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:42,858 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,858 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:42,858 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:01:42,861 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:42,861 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:42,861 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:42,861 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,861 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,861 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:42,862 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:42,862 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:42,862 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:42,862 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:42,862 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,863 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,863 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:42,863 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:42,863 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:42,863 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:42,863 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:42,864 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,864 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,864 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:42,864 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:42,864 [1520] DEBUG faq - Entering Faq() method ... +01/30/13 11:01:42,865 [1520] DEBUG index - Entering getColumnFields(Faq) method ... +01/30/13 11:01:42,865 [1520] DEBUG index - in getColumnFields Faq +01/30/13 11:01:42,865 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,865 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,865 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:42,865 [1520] DEBUG faq - Exiting Faq method ... +01/30/13 11:01:42,867 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,868 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,868 [1520] DEBUG index - query being executed : SELECT vtiger_faq.id, vtiger_faq.question, vtiger_faq.product_id FROM vtiger_faq INNER JOIN vtiger_crmentity ON vtiger_faq.id = vtiger_crmentity.crmid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_faq.status <> 'Obsolete') )) AND vtiger_faq.id > 0 LIMIT 0,5 +01/30/13 11:01:42,891 [1520] DEBUG index - Entering getNavigationValues(1,5,20) method ... +01/30/13 11:01:42,891 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Entering getURLstring(Faq) method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,892 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,893 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,896 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,897 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,897 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,897 [1520] DEBUG index - function getTranslatedString(Question) - translated to (问题) +01/30/13 11:01:42,898 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,898 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,898 [1520] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/30/13 11:01:42,899 [1520] DEBUG index - Entering getEntityName(Products) method ... +01/30/13 11:01:42,899 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:42,900 [1520] DEBUG index - Prepared sql query parameters : [Products] +01/30/13 11:01:42,902 [1520] DEBUG index - Prepared sql query being executed : SELECT productname,productid FROM vtiger_products WHERE productid IN (?,?,?,?,?) +01/30/13 11:01:42,902 [1520] DEBUG index - Prepared sql query parameters : [52,53,54,55,56] +01/30/13 11:01:42,943 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:42,945 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:42,945 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:42,945 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:42,948 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,948 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,949 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,952 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,953 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:42,953 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:42,953 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,954 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:42,954 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,954 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,954 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,958 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,958 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:42,960 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:42,963 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,963 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,963 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,967 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,967 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,967 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,967 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:42,968 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:01:42,969 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:42,970 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,970 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,970 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,973 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,977 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,977 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,977 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:42,977 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:42,978 [1520] DEBUG index - Prepared sql query parameters : [62] +01/30/13 11:01:42,980 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,980 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,980 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,982 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,982 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:42,982 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:42,982 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,983 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:42,983 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,983 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,983 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,985 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,985 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:42,986 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:42,987 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,987 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,987 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,989 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,989 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,989 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,990 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:42,990 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:01:42,990 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:42,991 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,991 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,991 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:42,993 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:42,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:42,997 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:42,997 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:42,997 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:42,997 [1520] DEBUG index - Prepared sql query parameters : [63] +01/30/13 11:01:42,1000 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:42,1000 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:42,1000 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,002 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,002 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:43,002 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:43,002 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,002 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:43,002 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,002 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,003 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,004 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,004 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:43,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,007 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,007 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,007 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,009 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,009 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:43,009 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:01:43,010 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,010 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,010 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,010 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,012 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,017 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:43,017 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:43,017 [1520] DEBUG index - Prepared sql query parameters : [64] +01/30/13 11:01:43,022 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,022 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,023 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,024 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,024 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,025 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:43,025 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:43,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,025 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:43,025 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,025 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,025 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,027 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,027 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:43,028 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,030 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,030 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,030 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,032 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,032 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,032 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,032 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:43,032 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:01:43,033 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,033 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,033 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,033 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,035 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,039 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,039 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,039 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:43,040 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:43,040 [1520] DEBUG index - Prepared sql query parameters : [65] +01/30/13 11:01:43,042 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,042 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,042 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,044 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,044 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,044 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,045 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:43,045 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:43,045 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,045 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:43,045 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,045 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,045 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,047 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,047 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:43,048 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,049 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,049 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,050 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,051 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,052 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,052 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,052 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:43,052 [1520] DEBUG index - Entering isPermitted(Faq,Delete,) method ... +01/30/13 11:01:43,053 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,053 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:43,053 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:43,053 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:43,055 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:43,059 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,059 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,059 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:43,059 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:43,059 [1520] DEBUG index - Prepared sql query parameters : [66] +01/30/13 11:01:43,079 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:43,079 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:43,079 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:43,081 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:43,081 [1520] DEBUG index - array ( + 'module' => 'Home', + 'action' => 'HomeAjax', + 'file' => 'HomeWidgetBlockList', + 'widgetInfoList' => '[{"widgetId":1,"widgetType":"Default"},{"widgetId":3,"widgetType":"Default"},{"widgetId":4,"widgetType":"Default"},{"widgetId":5,"widgetType":"Default"},{"widgetId":6,"widgetType":"Default"},{"widgetId":7,"widgetType":"Default"},{"widgetId":8,"widgetType":"Default"},{"widgetId":9,"widgetType":"Default"},{"widgetId":10,"widgetType":"Default"},{"widgetId":11,"widgetType":"Default"},{"widgetId":12,"widgetType":"Default"},{"widgetId":13,"widgetType":"Default"}]', +) +01/30/13 11:01:43,081 [1520] INFO index - About to take action HomeAjax +01/30/13 11:01:43,081 [1520] DEBUG index - in HomeAjax +01/30/13 11:01:43,081 [1520] INFO index - current page is modules/Home/HomeAjax.php +01/30/13 11:01:43,081 [1520] INFO index - current module is Home +01/30/13 11:01:43,162 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:43,162 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:43,163 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:43,163 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,164 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,164 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,164 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:43,164 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:43,174 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,174 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,174 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:43,174 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:43,175 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:43,176 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:43,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,177 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:43,177 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,178 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:43,178 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,178 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:43,179 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,179 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:43,180 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,180 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:43,181 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,181 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:43,182 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,182 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:43,183 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,183 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:43,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,184 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:43,184 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,185 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:43,185 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,185 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:43,186 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,186 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:43,187 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,187 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:43,188 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,188 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:43,189 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,189 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:43,190 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,190 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:43,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,191 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:43,191 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,192 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:43,192 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,192 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:43,193 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,193 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:43,194 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,194 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:43,195 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,195 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:43,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,196 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:43,196 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,196 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:43,197 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,197 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:43,198 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,198 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:43,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,199 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:43,199 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,200 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:43,200 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,200 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:43,201 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,201 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:43,202 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,202 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:43,203 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,203 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:43,204 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,204 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:43,205 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,205 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:43,206 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,206 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:43,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,207 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:43,207 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,208 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:43,208 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,208 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:43,209 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,209 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:43,210 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,210 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:43,211 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,211 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:43,212 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,212 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:43,213 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,213 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:43,214 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,214 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:43,215 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,215 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:43,216 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,216 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:43,217 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,217 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:43,229 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:43,230 [1520] DEBUG index - Prepared sql query parameters : [263,1,Home,HomeAjax,,2013-01-30 11:01:43] +01/30/13 11:01:43,233 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:43,233 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:43,233 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:43,234 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:43,235 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:43,236 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:43,238 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:43,238 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:43,240 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:43,240 [1520] DEBUG index - Entering return_module_language(zh_cn,Home) method ... +01/30/13 11:01:43,241 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,241 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:43,241 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:43,241 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:43,241 [1520] DEBUG index - skipping headers +01/30/13 11:01:43,261 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:43,261 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:43,286 [1520] DEBUG top accounts_list - Entering getTopAccounts() method ... +01/30/13 11:01:43,290 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:43,290 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,291 [1520] DEBUG index - query being executed : select vtiger_potential.potentialname,vtiger_account.accountid, vtiger_account.accountname, vtiger_account.tickersymbol, sum(vtiger_potential.amount) as amount from vtiger_potential inner join vtiger_crmentity on (vtiger_potential.potentialid=vtiger_crmentity.crmid) inner join vtiger_account on (vtiger_potential.related_to=vtiger_account.accountid) WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid>0 AND vtiger_crmentity.smownerid='1' and vtiger_potential.sales_stage not in ('Closed Won', 'Closed Lost','成功结案','失败结案') group by vtiger_account.accountid, vtiger_account.tickersymbol order by amount desc LIMIT 0,5 +01/30/13 11:01:43,359 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:01:43,359 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:01:43,359 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,359 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,360 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/30/13 11:01:43,360 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:01:43,362 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,363 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,363 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,363 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,363 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,363 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,364 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,364 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,364 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,364 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,364 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,365 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,365 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,365 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,365 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,365 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,366 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,366 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,366 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,366 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,366 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,367 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,367 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,367 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,367 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,367 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,368 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,369 [1520] DEBUG top accounts_list - Exiting getTopAccounts method ... +01/30/13 11:01:43,386 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:43,387 [1520] DEBUG index - Prepared sql query parameters : [3] +01/30/13 11:01:43,390 [1520] DEBUG index - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:01:43,392 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,416 [1520] DEBUG top opportunity_list - Entering getTopPotentials() method ... +01/30/13 11:01:43,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Entering fetchCurrency(1) method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Exiting fetchCurrency method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,418 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,419 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:43,419 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:01:43,419 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:43,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,419 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:43,419 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,419 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:43,419 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:01:43,426 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:43,427 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,427 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:43,428 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:43,428 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,428 [1520] DEBUG index - query being executed : SELECT vtiger_crmentity.crmid, vtiger_potential.potentialname, + vtiger_potential.amount, potentialid + FROM vtiger_potential + IGNORE INDEX(PRIMARY) INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.potentialid > 0 AND vtiger_potential.sales_stage not in ('Closed Won','Closed Lost','成功结案','失败结案') AND vtiger_crmentity.smownerid='1' AND vtiger_potential.amount > 0 ORDER BY amount DESC LIMIT 5 +01/30/13 11:01:43,432 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,432 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,433 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,434 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Entering getCurrencyName(2) method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Exiting getCurrencyName method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Exiting convertFromDollar method ... +01/30/13 11:01:43,435 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:43,435 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:43,440 [1520] DEBUG top opportunity_list - Exiting getTopPotentials method ... +01/30/13 11:01:43,443 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:43,443 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:43,446 [1520] DEBUG index - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:01:43,447 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:43,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:43,479 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,479 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,479 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:01:43,483 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:43,483 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:43,483 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,484 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,484 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,484 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:43,484 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:43,491 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,491 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,492 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:01:43,492 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:43,495 [1520] DEBUG index - Entering getCvIdOfAll(Quotes) +01/30/13 11:01:43,496 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:01:43,496 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:01:43,498 [1520] DEBUG index - Exiting getCvIdOfAll(Quotes) +01/30/13 11:01:43,498 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,499 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,499 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:43,499 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:43,501 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,501 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,501 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:43,501 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:43,505 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,505 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,506 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:43,506 [1520] DEBUG index - Prepared sql query parameters : [Quotes] +01/30/13 11:01:43,514 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:43,514 [1520] DEBUG index - Prepared sql query parameters : [20,49,51,53,54] +01/30/13 11:01:43,528 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:01:43,533 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,533 [1520] DEBUG index - Prepared sql query parameters : [26] +01/30/13 11:01:43,535 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,536 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,537 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,538 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,539 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,540 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,541 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:43,542 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:43,543 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:43,544 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:01:43,547 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:43,548 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,548 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:01:43,552 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:43,553 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:43,601 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,601 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:01:43,603 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,604 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:01:43,606 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,606 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:01:43,608 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,609 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:01:43,612 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:43,612 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:01:43,659 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:01:43,660 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,660 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:01:43,662 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,662 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:01:43,663 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,664 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:01:43,665 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,665 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:01:43,666 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,667 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:01:43,668 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,668 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:01:43,669 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,669 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:01:43,671 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,671 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:01:43,672 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,673 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:01:43,674 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:43,674 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:01:43,707 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,707 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:01:43,709 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,709 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:01:43,711 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,711 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:01:43,712 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,713 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:01:43,714 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:01:43,714 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:43,715 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,715 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:01:43,717 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,717 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:01:43,720 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:43,720 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:01:43,753 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,753 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:01:43,755 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,755 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:01:43,757 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,757 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:01:43,759 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,759 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:01:43,760 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,761 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:01:43,762 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,762 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:01:43,763 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,763 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:01:43,765 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,765 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:01:43,767 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,767 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:01:43,768 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,768 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:01:43,770 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,770 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:01:43,772 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:43,772 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:01:43,773 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:43,776 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:43,776 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:43,778 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:43,779 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:43,780 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,780 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:43,780 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:43,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,781 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:01:43,781 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:43,781 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,781 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:43,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:43,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,782 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:01:43,782 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,782 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,783 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:43,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:43,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,783 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:01:43,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:43,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,783 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:43,783 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:43,783 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,783 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:01:43,783 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:43,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,784 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:43,784 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:43,784 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,785 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:43,785 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:43,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,786 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:43,786 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:43,786 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,786 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:01:43,786 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:43,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,787 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:43,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:43,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,787 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:01:43,787 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:43,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,788 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:43,788 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:43,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,788 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:01:43,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:43,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,789 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:43,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:43,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,790 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:01:43,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:43,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,791 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:43,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:43,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,791 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:01:43,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:43,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,791 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:43,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:43,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,791 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:43,791 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:43,792 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,792 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:43,792 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:43,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,793 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:01:43,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:43,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,793 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:43,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:43,793 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,793 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:01:43,793 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:43,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,794 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:43,794 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:43,794 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,795 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:01:43,795 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:43,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,795 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:43,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:43,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,796 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:01:43,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:43,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,797 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:01:43,797 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:43,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,797 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:01:43,797 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:43,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,798 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:43,798 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:43,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,798 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:01:43,798 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:43,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,798 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:01:43,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:43,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,799 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:01:43,799 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:43,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,800 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:01:43,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:43,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,801 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:01:43,801 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:43,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,801 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:43,801 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:43,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,802 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:01:43,802 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:43,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,803 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:01:43,803 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:43,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,803 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:01:43,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:43,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,804 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:43,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:43,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,804 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:01:43,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:43,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,805 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:43,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:43,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,806 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:01:43,806 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:43,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,806 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:01:43,806 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:43,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,807 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:01:43,807 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:43,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,807 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:43,808 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:43,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,808 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:01:43,808 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:43,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,808 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:43,809 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:43,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,809 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:01:43,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:43,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,810 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:43,810 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:43,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,810 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:01:43,810 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:43,810 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,811 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:43,811 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:43,811 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,811 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:01:43,812 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,812 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,907 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,907 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:01:43,909 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,910 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,910 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,910 [1520] DEBUG index - Prepared sql query parameters : [35] +01/30/13 11:01:43,912 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,913 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,913 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,913 [1520] DEBUG index - Prepared sql query parameters : [24] +01/30/13 11:01:43,915 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,915 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,950 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,950 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:01:43,952 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,952 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,953 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:43,953 [1520] DEBUG index - Prepared sql query parameters : [37] +01/30/13 11:01:43,955 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:43,955 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:43,957 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:43,957 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:01:43,960 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:43,960 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:01:43,962 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:43,963 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:01:43,965 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:43,965 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,965 [1520] DEBUG index - function getTranslatedString(Accepted) - translated to (已接受) +01/30/13 11:01:43,966 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:43,966 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:43,966 [1520] DEBUG index - function getTranslatedString(Rejected) - translated to (已拒绝) +01/30/13 11:01:43,966 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:01:43) method ... +01/30/13 11:01:43,967 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:01:43,967 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:43,967 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:43,980 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:43,980 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:43,983 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:43,983 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:43,984 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:43,984 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,984 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,984 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:43,985 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:43,985 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,985 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:43,985 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:43,985 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:43,986 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:43,989 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:43,989 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:44,026 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,026 [1520] DEBUG index - Prepared sql query parameters : [Potentials] +01/30/13 11:01:44,029 [1520] DEBUG index - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,030 [1520] DEBUG index - in getColumnFields Potentials +01/30/13 11:01:44,030 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,030 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,030 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,030 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,031 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,031 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,031 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,031 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:01:44,033 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,033 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,034 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,034 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,034 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,034 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,034 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,035 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,035 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,035 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,035 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,036 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,036 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,036 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,036 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,036 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,037 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,037 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,037 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,037 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,037 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,038 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,038 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,038 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,038 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,038 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,039 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,039 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,039 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,039 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,039 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,040 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,040 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,040 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,040 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,040 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,041 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,041 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,041 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,041 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,041 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,042 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,042 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,042 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,042 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,044 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,044 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,045 [1520] DEBUG index - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:01:44,045 [1520] DEBUG index - Exiting getValidDBInsertDateValue method ... +01/30/13 11:01:44,045 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,046 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:44,048 [1520] DEBUG index - query being executed : SELECT vtiger_quotes.quoteid, vtiger_quotes.subject, vtiger_quotes.potentialid FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') and ( vtiger_quotes.quotestage <> '已接受') and ( vtiger_quotes.quotestage <> '已拒绝') and ( vtiger_quotes.validtill >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_quotes.quoteid > 0 LIMIT 5 +01/30/13 11:01:44,071 [1520] DEBUG index - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:01:44,071 [1520] DEBUG index - Exiting getNavigationValues method ... +01/30/13 11:01:44,071 [1520] DEBUG index - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,071 [1520] DEBUG index - in getColumnFields Quotes +01/30/13 11:01:44,071 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,072 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:44,072 [1520] DEBUG index - Entering getURLstring(Quotes) method ... +01/30/13 11:01:44,072 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:01:44,072 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:44,073 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:44,073 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:44,073 [1520] DEBUG index - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:44,077 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:44,078 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:44,078 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:44,079 [1520] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:01:44,079 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:44,079 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:44,079 [1520] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/30/13 11:01:44,081 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:44,083 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:44,083 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:44,083 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:44,092 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:44,092 [1520] DEBUG index - Prepared sql query parameters : [5] +01/30/13 11:01:44,117 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:01:44,120 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:44,122 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.setmetrics = 1 order by vtiger_customview.entitytype +01/30/13 11:01:44,128 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:01:44,128 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:01:44,128 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:01:44,129 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,129 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,134 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:01:44,134 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,137 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:01:44,137 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:44,139 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,140 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:01:44,140 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:01:44,140 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:01:44,141 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,141 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,143 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:01:44,143 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,145 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:01:44,145 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:01:44,146 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,147 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:01:44,147 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:01:44,147 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:01:44,147 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,147 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,150 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:01:44,150 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,152 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:01:44,152 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:01:44,153 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,153 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:01:44,154 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:01:44,154 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:01:44,154 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,154 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,156 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:01:44,156 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,159 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:01:44,159 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:01:44,161 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,161 [1520] DEBUG metrics - Entering getUserFullName(1) method ... +01/30/13 11:01:44,161 [1520] INFO metrics - in getUserFullName 1 +01/30/13 11:01:44,161 [1520] DEBUG metrics - Entering getEntityName(Users) method ... +01/30/13 11:01:44,161 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,161 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,163 [1520] DEBUG metrics - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/30/13 11:01:44,164 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,166 [1520] DEBUG metrics - Exiting getUserFullName method ... +01/30/13 11:01:44,166 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:01:44,167 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,168 [1520] INFO metrics - Metrics :: Successfully got MetricList to be displayed +01/30/13 11:01:44,168 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,168 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:01:44,171 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,171 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,171 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,171 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,171 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,171 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,171 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:44,172 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,179 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,179 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,180 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,180 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,182 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,182 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,182 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,182 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,186 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:44,187 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,188 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:44,189 [1520] DEBUG metrics - Prepared sql query parameters : [Accounts] +01/30/13 11:01:44,193 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:44,193 [1520] DEBUG metrics - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:01:44,207 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,207 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:44,209 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,209 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,209 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,210 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:44,212 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,212 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,213 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:44,213 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:01:44,215 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:44,215 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:01:44,217 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:44,217 [1520] DEBUG metrics - Prepared sql query parameters : [5] +01/30/13 11:01:44,219 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:01:44,219 [1520] DEBUG metrics - Prepared sql query parameters : [5,1] +01/30/13 11:01:44,263 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:44,263 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,264 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,264 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,267 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:44,267 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,269 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,269 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,269 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,269 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,270 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,270 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,270 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,270 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,271 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,271 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,271 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,271 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,271 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,272 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,272 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,272 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,272 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,272 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,273 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,273 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,273 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,273 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,273 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,274 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,274 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,274 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,274 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,274 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,275 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,275 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,275 [1520] DEBUG metrics - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:44,275 [1520] DEBUG metrics - in getColumnFields Accounts +01/30/13 11:01:44,275 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,276 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,276 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,278 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,278 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,278 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.account_type = 'Prospect') )) AND vtiger_account.accountid > 0 +01/30/13 11:01:44,281 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,281 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:01:44,285 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,285 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,285 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,285 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,285 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,285 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,286 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,286 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:44,286 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:01:44,292 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,292 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,292 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,293 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:01:44,294 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,294 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,294 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,295 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:01:44,297 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,298 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,299 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:44,299 [1520] DEBUG metrics - Prepared sql query parameters : [HelpDesk] +01/30/13 11:01:44,303 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:44,303 [1520] DEBUG metrics - Prepared sql query parameters : [13,25,28,29] +01/30/13 11:01:44,311 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,311 [1520] DEBUG metrics - Prepared sql query parameters : [36] +01/30/13 11:01:44,313 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,313 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,313 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,313 [1520] DEBUG metrics - Prepared sql query parameters : [33] +01/30/13 11:01:44,315 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,315 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,315 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,315 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:44,317 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,317 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,318 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:44,318 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:01:44,320 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:44,320 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:01:44,322 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:44,322 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:01:44,323 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:01:44,323 [1520] DEBUG metrics - Prepared sql query parameters : [14,1] +01/30/13 11:01:44,326 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,326 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,326 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,326 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,330 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,330 [1520] DEBUG metrics - Prepared sql query parameters : [Contacts] +01/30/13 11:01:44,332 [1520] DEBUG metrics - Entering getColumnFields(Contacts) method ... +01/30/13 11:01:44,332 [1520] DEBUG metrics - in getColumnFields Contacts +01/30/13 11:01:44,333 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,333 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,333 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,333 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,333 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:44,333 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:01:44,340 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,340 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,340 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,340 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,341 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,341 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,341 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,341 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,341 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:01:44,343 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,343 [1520] DEBUG metrics - Prepared sql query parameters : [Products] +01/30/13 11:01:44,345 [1520] DEBUG product - Entering Products() method ... +01/30/13 11:01:44,345 [1520] DEBUG metrics - Entering getColumnFields(Products) method ... +01/30/13 11:01:44,346 [1520] DEBUG metrics - in getColumnFields Products +01/30/13 11:01:44,346 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,346 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,346 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,346 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,346 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:44,346 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:01:44,352 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,352 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,352 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,353 [1520] DEBUG product - Exiting Product method ... +01/30/13 11:01:44,353 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,353 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,353 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,353 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,353 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,353 [1520] DEBUG metrics - Prepared sql query parameters : [14] +01/30/13 11:01:44,355 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:44,355 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,355 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,355 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,358 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:44,358 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,359 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,359 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,359 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,359 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,360 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,360 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,360 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,360 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,360 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,361 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,361 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,361 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,361 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,361 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,361 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,362 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,362 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,362 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,362 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,362 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,362 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,362 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,362 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,362 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,362 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,363 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,363 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,363 [1520] DEBUG helpdesk - Entering HelpDesk() method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - Entering getColumnFields(HelpDesk) method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - in getColumnFields HelpDesk +01/30/13 11:01:44,363 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,363 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,364 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,364 [1520] DEBUG helpdesk - Exiting HelpDesk method ... +01/30/13 11:01:44,365 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,365 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,365 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_troubletickets.ticketid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_troubletickets.status <> 'Closed') )) AND vtiger_troubletickets.ticketid > 0 +01/30/13 11:01:44,367 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:44,367 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:01:44,370 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,370 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,370 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:44,371 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:01:44,377 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,377 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,377 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,377 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:01:44,379 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,379 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,379 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,379 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:01:44,382 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:44,383 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,384 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:44,384 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,384 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:44,384 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,384 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:44,384 [1520] DEBUG metrics - Prepared sql query parameters : [Leads] +01/30/13 11:01:44,388 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:44,388 [1520] DEBUG metrics - Prepared sql query parameters : [7,13,15,16] +01/30/13 11:01:44,399 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,400 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:44,402 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,402 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,402 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:44,403 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,405 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:44,406 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,407 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:44,407 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,409 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:01:44,409 [1520] DEBUG metrics - Prepared sql query parameters : [2,1] +01/30/13 11:01:44,412 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,412 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,412 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,412 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,412 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,412 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,412 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,412 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,412 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,413 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,413 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,413 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,413 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,413 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,414 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,414 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,414 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,414 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,414 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,414 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,414 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,414 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,414 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,414 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,415 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,415 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,415 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,415 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,415 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,416 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,416 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,416 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,416 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,416 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,416 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,416 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,416 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,416 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,417 [1520] DEBUG lead - Entering Leads() method ... +01/30/13 11:01:44,417 [1520] DEBUG metrics - Entering getColumnFields(Leads) method ... +01/30/13 11:01:44,417 [1520] DEBUG metrics - in getColumnFields Leads +01/30/13 11:01:44,417 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,417 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,417 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,417 [1520] DEBUG lead - Exiting Lead method ... +01/30/13 11:01:44,418 [1520] DEBUG metrics - Entering getTabid(Leads) method ... +01/30/13 11:01:44,418 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,418 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = vtiger_crmentity.crmid INNER JOIN vtiger_leadsubdetails ON vtiger_leaddetails.leadid = vtiger_leadsubdetails.leadsubscriptionid WHERE vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( vtiger_leaddetails.leadstatus = 'Hot') )) AND vtiger_leaddetails.leadid > 0 +01/30/13 11:01:44,456 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,456 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,456 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,456 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,458 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,458 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,458 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,458 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,462 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,462 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,463 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:44,463 [1520] DEBUG metrics - Prepared sql query parameters : [Potentials] +01/30/13 11:01:44,471 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:44,471 [1520] DEBUG metrics - Prepared sql query parameters : [2,1,3] +01/30/13 11:01:44,479 [1520] DEBUG metrics - Prepared sql query being executed : select relmodule as type from vtiger_fieldmodulerel where fieldid=? +01/30/13 11:01:44,479 [1520] DEBUG metrics - Prepared sql query parameters : [113] +01/30/13 11:01:44,508 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,508 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,550 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,550 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:01:44,552 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,552 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,553 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:44,553 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:44,555 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:44,555 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:44,556 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:44,556 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:01:44,559 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:44,559 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:01:44,561 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:44,561 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:01:44,563 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:01:44,564 [1520] DEBUG metrics - Prepared sql query parameters : [11,1] +01/30/13 11:01:44,568 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,568 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,568 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,568 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,571 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:44,572 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,572 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,572 [1520] DEBUG metrics - Prepared sql query parameters : [4] +01/30/13 11:01:44,575 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:44,575 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,575 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,575 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,579 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:44,579 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,581 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,581 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,582 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,582 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,582 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,582 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,582 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,583 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,583 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,583 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,583 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,583 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,584 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,584 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,584 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,584 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,584 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,585 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,585 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,585 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,585 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,585 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,585 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,586 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,586 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,586 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,586 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,586 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,587 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,587 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,587 [1520] DEBUG metrics - Entering getColumnFields(Potentials) method ... +01/30/13 11:01:44,587 [1520] DEBUG metrics - in getColumnFields Potentials +01/30/13 11:01:44,587 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,588 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,588 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,590 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,590 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,590 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_potential.potentialid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_potential.sales_stage = 'Closed Won') )) AND vtiger_potential.potentialid > 0 +01/30/13 11:01:44,593 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,593 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,593 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,593 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,595 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,595 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,595 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,596 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,598 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:44,598 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:01:44,600 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:44,600 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:01:44,602 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:44,602 [1520] DEBUG metrics - Prepared sql query parameters : [17] +01/30/13 11:01:44,604 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvadvfilter.* from vtiger_customview + inner join vtiger_cvadvfilter on vtiger_cvadvfilter.cvid = vtiger_customview.cvid + left join vtiger_cvadvfilter_grouping on vtiger_cvadvfilter.cvid = vtiger_cvadvfilter_grouping.cvid + and vtiger_cvadvfilter.groupid = vtiger_cvadvfilter_grouping.groupid where vtiger_customview.cvid = ? AND vtiger_cvadvfilter.groupid = ? order by vtiger_cvadvfilter.columnindex +01/30/13 11:01:44,604 [1520] DEBUG metrics - Prepared sql query parameters : [17,1] +01/30/13 11:01:44,607 [1520] DEBUG metrics - Entering getTabid(Potentials) method ... +01/30/13 11:01:44,607 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,607 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,607 [1520] DEBUG metrics - Prepared sql query parameters : [2] +01/30/13 11:01:44,609 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:44,609 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,609 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,610 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,612 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:44,612 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,612 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:44,612 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,614 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:44,614 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:44,616 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,616 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,616 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,616 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,617 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,617 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,617 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,618 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,618 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,619 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,619 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,619 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,620 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,620 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,620 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,621 [1520] DEBUG metrics - Entering getColumnFields(Quotes) method ... +01/30/13 11:01:44,621 [1520] DEBUG metrics - in getColumnFields Quotes +01/30/13 11:01:44,621 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,621 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,621 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,622 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:44,622 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,622 [1520] DEBUG metrics - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_quotes.quoteid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_quotes.quotestage <> 'Accepted') and ( vtiger_quotes.quotestage <> 'Rejected') )) AND vtiger_quotes.quoteid > 0 +01/30/13 11:01:44,624 [1520] INFO metrics - Metrics :: Successfully build the Metrics +01/30/13 11:01:44,625 [1520] DEBUG metrics - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:44,625 [1520] DEBUG metrics - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:44,625 [1520] DEBUG metrics - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:44,625 [1520] DEBUG metrics - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:44,625 [1520] DEBUG metrics - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:44,628 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:44,629 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:44,630 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:01:44,631 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:44,645 [1520] DEBUG metrics - Entering getMyTickets() method ... +01/30/13 11:01:44,645 [1520] DEBUG metrics - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:44,645 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,645 [1520] DEBUG metrics - Prepared sql query being executed : SELECT vtiger_troubletickets.*, vtiger_crmentity.* + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + INNER JOIN vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_crmentity.smownerid = ? and vtiger_crmentity.deleted = 0 and vtiger_troubletickets.ticketid > 0 and vtiger_troubletickets.status <> 'Closed' AND vtiger_crmentity.setype='HelpDesk' ORDER BY createdtime DESC LIMIT 0,5 +01/30/13 11:01:44,645 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,649 [1520] DEBUG metrics - Entering getParentLink(22) method ... +01/30/13 11:01:44,649 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:01:44,649 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:44,651 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:01:44,651 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:44,722 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:01:44,723 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:01:44,723 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:01:44,723 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:01:44,725 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:01:44,726 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:01:44,728 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:01:44,729 [1520] DEBUG metrics - Entering getParentLink(29) method ... +01/30/13 11:01:44,729 [1520] DEBUG metrics - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/30/13 11:01:44,729 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,731 [1520] DEBUG metrics - Prepared sql query being executed : select firstname,lastname from vtiger_contactdetails where contactid=? +01/30/13 11:01:44,731 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:44,734 [1520] DEBUG metrics - Exiting getParentLink method ... +01/30/13 11:01:44,734 [1520] DEBUG metrics - Entering getParentLink(28) method ... +01/30/13 11:01:44,735 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:44,735 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:44,739 [1520] DEBUG metrics - Exiting getMyTickets method ... +01/30/13 11:01:44,745 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:44,746 [1520] DEBUG metrics - Prepared sql query parameters : [7] +01/30/13 11:01:44,753 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:01:44) method ... +01/30/13 11:01:44,754 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:01:44,754 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:44,755 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:01:44,756 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:44,756 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:01:44,756 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:01:44,757 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:01:44,757 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:01:44,758 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:01:44,758 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:01:44,758 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:01:44,758 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:44,758 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,759 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:44,759 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,759 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/30/13 11:01:44,759 [1520] DEBUG metrics - Prepared sql query parameters : [9,16] +01/30/13 11:01:44,771 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:44,771 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,772 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:01:44,773 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,773 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:44,774 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:44,774 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:44,774 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and vtiger_activity.activitytype not in ('Emails') AND ( vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and ( vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held') ) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:01:44,814 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:44,814 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:44,820 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:44,820 [1520] DEBUG metrics - Prepared sql query parameters : [8] +01/30/13 11:01:44,823 [1520] DEBUG metrics - Entering fetchUserGroupids(1) method ... +01/30/13 11:01:44,823 [1520] DEBUG metrics - Entering getAllUserGroups(1) method... +01/30/13 11:01:44,823 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_users2group where userid=? +01/30/13 11:01:44,823 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,865 [1520] DEBUG metrics - Entering fetchUserRole(1) method ... +01/30/13 11:01:44,866 [1520] DEBUG metrics - Prepared sql query being executed : select roleid from vtiger_user2role where userid=? +01/30/13 11:01:44,866 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:44,868 [1520] DEBUG metrics - Exiting fetchUserRole method ... +01/30/13 11:01:44,868 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2role where roleid=? +01/30/13 11:01:44,869 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:01:44,909 [1520] DEBUG metrics - Entering getParentRole(H2) method ... +01/30/13 11:01:44,909 [1520] DEBUG metrics - Entering getRoleInformation(H2) method ... +01/30/13 11:01:44,909 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/30/13 11:01:44,910 [1520] DEBUG metrics - Prepared sql query parameters : [H2] +01/30/13 11:01:44,955 [1520] DEBUG metrics - Exiting getRoleInformation method ... +01/30/13 11:01:44,956 [1520] DEBUG metrics - Exiting getParentRole method ... +01/30/13 11:01:44,956 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_group2rs where roleandsubid in (?,?) +01/30/13 11:01:44,956 [1520] DEBUG metrics - Prepared sql query parameters : [H1,H2] +01/30/13 11:01:44,968 [1520] DEBUG metrics - Entering getAllParentGroups(3) method... +01/30/13 11:01:44,969 [1520] DEBUG metrics - Prepared sql query being executed : select groupid from vtiger_group2grouprel where containsgroupid=? +01/30/13 11:01:44,969 [1520] DEBUG metrics - Prepared sql query parameters : [3] +01/30/13 11:01:44,999 [1520] DEBUG metrics - Exiting getAllParentGroups method... +01/30/13 11:01:44,999 [1520] DEBUG metrics - Exiting getAllUserGroups method... +01/30/13 11:01:44,999 [1520] DEBUG metrics - Exiting fetchUserGroupids method ... +01/30/13 11:01:44,999 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:01:45,001 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,001 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:01:45,003 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,003 [1520] DEBUG metrics - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:45,005 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,005 [1520] DEBUG metrics - Entering isPermitted(HelpDesk,index,) method ... +01/30/13 11:01:45,007 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,007 [1520] DEBUG metrics - Entering isPermitted(Potentials,index,) method ... +01/30/13 11:01:45,009 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,009 [1520] DEBUG metrics - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:45,011 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,012 [1520] DEBUG metrics - Entering isPermitted(Contacts,index,) method ... +01/30/13 11:01:45,013 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,013 [1520] DEBUG metrics - Entering isPermitted(Campaigns,index,) method ... +01/30/13 11:01:45,014 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,014 [1520] DEBUG metrics - Entering isPermitted(Quotes,index,) method ... +01/30/13 11:01:45,015 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,016 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:01:45,017 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,018 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:01:45,018 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,019 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:01:45,020 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,021 [1520] DEBUG metrics - Entering isPermitted(Documents,index,) method ... +01/30/13 11:01:45,022 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,022 [1520] INFO metrics - Here is the where clause for the list view: select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:01:45,022 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.leadid as id,vtiger_leaddetails.lastname as name,vtiger_groups.groupname as groupname, 'Leads ' as Type from vtiger_leaddetails inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_leaddetails.leadid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_leaddetails.leadid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_activity.activityid as id,vtiger_activity.subject as name,vtiger_groups.groupname as groupname,'Activities' as Type from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_activity.activityid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_activity.eventstatus !='held'and (vtiger_activity.status is null or vtiger_activity.status ='')) or (vtiger_activity.status !='completed' and (vtiger_activity.eventstatus is null or vtiger_activity.eventstatus=''))) and vtiger_activity.activityid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_troubletickets.ticketid,vtiger_troubletickets.title as name,vtiger_groups.groupname,'Tickets ' as Type from vtiger_troubletickets inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_troubletickets.ticketid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_troubletickets.status != 'Closed' and vtiger_troubletickets.ticketid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_potential.potentialid,vtiger_potential.potentialname as name,vtiger_groups.groupname as groupname,'Potentials ' as Type from vtiger_potential inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_potential.potentialid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and ((vtiger_potential.sales_stage !='Closed Lost') or (vtiger_potential.sales_stage != 'Closed Won')) and vtiger_potential.potentialid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_account.accountid as id,vtiger_account.accountname as name,vtiger_groups.groupname as groupname, 'Accounts ' as Type from vtiger_account inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_account.accountid inner join vtiger_groups on vtiger_crmentity.smownerid=vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_account.accountid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_contactdetails.contactid as id, vtiger_contactdetails.lastname as name ,vtiger_groups.groupname as groupname, 'Contacts ' as Type from vtiger_contactdetails inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_contactdetails.contactid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_contactdetails.contactid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_campaign.campaignid as id, vtiger_campaign.campaignname as name, vtiger_groups.groupname as groupname,'Campaigns ' as Type from vtiger_campaign inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_campaign.campaignstatus != 'Complete') and vtiger_campaign.campaignid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_quotes.quoteid as id,vtiger_quotes.subject as name, vtiger_groups.groupname as groupname ,'Quotes 'as Type from vtiger_quotes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_quotes.quoteid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and (vtiger_quotes.quotestage != 'Rejected') and vtiger_quotes.quoteid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_salesorder.salesorderid as id, vtiger_salesorder.subject as name,vtiger_groups.groupname as groupname,'SalesOrder ' as Type from vtiger_salesorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_salesorder.salesorderid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_salesorder.salesorderid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_invoice.invoiceid as Id , vtiger_invoice.subject as Name, vtiger_groups.groupname as groupname,'Invoice ' as Type from vtiger_invoice inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_invoice.invoiceid inner join vtiger_groups on vtiger_crmentity.smownerid = vtiger_groups.groupid where vtiger_crmentity.deleted=0 and(vtiger_invoice.invoicestatus != 'Paid') and vtiger_invoice.invoiceid > 0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_purchaseorder.purchaseorderid as id,vtiger_purchaseorder.subject as name,vtiger_groups.groupname as groupname, 'PurchaseOrder ' as Type from vtiger_purchaseorder inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_purchaseorder.purchaseorderid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_purchaseorder.purchaseorderid >0 and vtiger_groups.groupid in (?) LIMIT 5 union all select vtiger_notes.notesid as id,vtiger_notes.title as name,vtiger_groups.groupname as groupname, 'Documents' as Type from vtiger_notes inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_notes.notesid inner join vtiger_groups on vtiger_crmentity.smownerid =vtiger_groups.groupid where vtiger_crmentity.deleted=0 and vtiger_notes.notesid > 0 and vtiger_groups.groupid in (?) LIMIT 5 +01/30/13 11:01:45,022 [1520] DEBUG metrics - Prepared sql query parameters : [3,3,3,3,3,3,3,3,3,3,3,3] +01/30/13 11:01:45,270 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:45,270 [1520] DEBUG metrics - Prepared sql query parameters : [9] +01/30/13 11:01:45,272 [1520] DEBUG metrics - Entering isPermitted(SalesOrder,index,) method ... +01/30/13 11:01:45,274 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,326 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,326 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,326 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:45,326 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:01:45,330 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,330 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,330 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,330 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,331 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,331 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,331 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:45,331 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,343 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,343 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,343 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,344 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,344 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,344 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,344 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,345 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:01:45,345 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,348 [1520] DEBUG metrics - Entering getCvIdOfAll(SalesOrder) +01/30/13 11:01:45,348 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:01:45,348 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:01:45,350 [1520] DEBUG metrics - Exiting getCvIdOfAll(SalesOrder) +01/30/13 11:01:45,351 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,351 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,351 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,351 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,353 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,353 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,354 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,354 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,357 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,357 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,358 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:45,358 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:01:45,364 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:45,364 [1520] DEBUG metrics - Prepared sql query parameters : [22,61,63,65,66,85] +01/30/13 11:01:45,388 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,389 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:01:45,391 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,391 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,391 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,391 [1520] DEBUG metrics - Prepared sql query parameters : [27] +01/30/13 11:01:45,393 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,393 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,394 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,394 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,396 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,396 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,467 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,467 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:01:45,530 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,530 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,530 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,530 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:45,533 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,533 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,533 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,533 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:01:45,536 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,536 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,630 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:45,630 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:01:45,633 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:45,633 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:01:45,638 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:45,638 [1520] DEBUG metrics - Prepared sql query parameters : [26] +01/30/13 11:01:45,640 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:01:45) method ... +01/30/13 11:01:45,641 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:01:45,641 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:45,641 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:45,652 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:45,652 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,652 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,653 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:45,655 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:45,655 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:45,658 [1520] DEBUG metrics - Entering getTabid(Accounts) method ... +01/30/13 11:01:45,658 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,658 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,659 [1520] DEBUG metrics - Prepared sql query parameters : [6] +01/30/13 11:01:45,661 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,661 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,661 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,661 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,662 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,662 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,662 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,662 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,662 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,663 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,663 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,663 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,663 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,663 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,664 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,664 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,664 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,664 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,664 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,665 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,665 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,665 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,665 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,665 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,666 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,668 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,668 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,668 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:01:45,668 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:01:45,669 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:45,669 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:45,671 [1520] DEBUG metrics - query being executed : SELECT vtiger_salesorder.salesorderid, vtiger_salesorder.subject, vtiger_salesorder.accountid FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_salesorder.salesorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_salesorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_salesorder.salesorderid > 0 LIMIT 5 +01/30/13 11:01:45,674 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Entering getColumnFields(SalesOrder) method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - in getColumnFields SalesOrder +01/30/13 11:01:45,675 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Entering getURLstring(SalesOrder) method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,675 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,676 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,676 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,678 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,678 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,678 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,678 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:01:45,678 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,679 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,679 [1520] DEBUG metrics - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:01:45,679 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:45,680 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,680 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:45,680 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:45,685 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:45,685 [1520] DEBUG metrics - Prepared sql query parameters : [10] +01/30/13 11:01:45,687 [1520] DEBUG metrics - Entering isPermitted(Invoice,index,) method ... +01/30/13 11:01:45,688 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,722 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,722 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,723 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:45,723 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:01:45,726 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,726 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,726 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:45,726 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:01:45,734 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,734 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,734 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,735 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:01:45,735 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:01:45,739 [1520] DEBUG metrics - Entering getCvIdOfAll(Invoice) +01/30/13 11:01:45,739 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:01:45,739 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:01:45,741 [1520] DEBUG metrics - Exiting getCvIdOfAll(Invoice) +01/30/13 11:01:45,741 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,741 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,742 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,742 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:01:45,743 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,744 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,744 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,744 [1520] DEBUG metrics - Prepared sql query parameters : [23] +01/30/13 11:01:45,748 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,748 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:45,748 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,748 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:45,748 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,748 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,749 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:45,750 [1520] DEBUG metrics - Prepared sql query parameters : [Invoice] +01/30/13 11:01:45,755 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:45,755 [1520] DEBUG metrics - Prepared sql query parameters : [23,67,69,71,72] +01/30/13 11:01:45,771 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,771 [1520] DEBUG metrics - Prepared sql query parameters : [28] +01/30/13 11:01:45,773 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,773 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,773 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,773 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,775 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,775 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,841 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,842 [1520] DEBUG metrics - Prepared sql query parameters : [24] +01/30/13 11:01:45,844 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,844 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,844 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,845 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:45,850 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,850 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,850 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:45,850 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:01:45,852 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:45,853 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:45,854 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:45,854 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:45,857 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:45,857 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:45,859 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:45,860 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:45,862 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:45,862 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:45,873 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:45,873 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,874 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,874 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:45,877 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:45,877 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:45,880 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:45,880 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,880 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:45,881 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:45,883 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,883 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,883 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,883 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,884 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,884 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,884 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,884 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,885 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,885 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,885 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,885 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,885 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,885 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,885 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,885 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,885 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,885 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,886 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,886 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,886 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,886 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,886 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,887 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,887 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,888 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,888 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,888 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:45,888 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:45,890 [1520] DEBUG metrics - query being executed : SELECT vtiger_invoice.invoiceid, vtiger_invoice.subject, vtiger_invoice.salesorderid FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_invoice.invoiceid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_invoice.invoicestatus <> 'Paid') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_invoice.invoiceid > 0 LIMIT 5 +01/30/13 11:01:45,894 [1520] DEBUG metrics - Entering getNavigationValues(1,4,20) method ... +01/30/13 11:01:45,894 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:01:45,894 [1520] DEBUG Invoice - Entering Invoice() method ... +01/30/13 11:01:45,894 [1520] DEBUG metrics - Entering getColumnFields(Invoice) method ... +01/30/13 11:01:45,894 [1520] DEBUG metrics - in getColumnFields Invoice +01/30/13 11:01:45,894 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,894 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,894 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:45,894 [1520] DEBUG Invoice - Exiting Invoice method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Entering getURLstring(Invoice) method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,895 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,897 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,898 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,898 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,898 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:01:45,898 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,898 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,898 [1520] DEBUG metrics - function getTranslatedString(Sales Order) - translated to (销售订单) +01/30/13 11:01:45,899 [1520] DEBUG metrics - Entering getEntityName(SalesOrder) method ... +01/30/13 11:01:45,899 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:45,899 [1520] DEBUG metrics - Prepared sql query parameters : [SalesOrder] +01/30/13 11:01:45,901 [1520] DEBUG metrics - Prepared sql query being executed : SELECT subject,salesorderid FROM vtiger_salesorder WHERE salesorderid IN (?,?) +01/30/13 11:01:45,901 [1520] DEBUG metrics - Prepared sql query parameters : [79,83] +01/30/13 11:01:45,903 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:45,904 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,904 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:45,904 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:45,907 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,907 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,907 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,909 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,909 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,909 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,909 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:45,909 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,909 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,910 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:45,910 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,910 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,910 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,912 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,912 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:45,913 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,914 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,914 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,914 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,916 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,916 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,916 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,917 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:45,917 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:01:45,918 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,918 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,918 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,918 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,920 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,924 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,924 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,924 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:45,924 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:45,924 [1520] DEBUG metrics - Prepared sql query parameters : [89] +01/30/13 11:01:45,927 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,927 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,927 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:45,929 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,929 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:45,930 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,930 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,930 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,932 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,932 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:45,933 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,934 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,934 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,934 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,936 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,936 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,936 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,936 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:45,936 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:01:45,937 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,937 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,937 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,938 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,940 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,944 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,944 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,944 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:45,944 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:45,944 [1520] DEBUG metrics - Prepared sql query parameters : [90] +01/30/13 11:01:45,947 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,947 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,947 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:45,949 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,949 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:45,949 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,950 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,950 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,951 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,952 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:45,952 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,954 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,954 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,954 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,956 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,956 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,956 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,956 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:45,956 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:01:45,957 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,957 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,957 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,957 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,959 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,963 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,964 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,964 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:45,964 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:45,964 [1520] DEBUG metrics - Prepared sql query parameters : [91] +01/30/13 11:01:45,968 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,968 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,968 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,970 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,970 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,970 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,971 [1520] DEBUG metrics - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:45,971 [1520] DEBUG metrics - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:45,971 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,971 [1520] DEBUG metrics - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:45,971 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,971 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,971 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,973 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,973 [1520] DEBUG metrics - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:45,974 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,976 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,976 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,976 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,978 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,978 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,978 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,978 [1520] DEBUG metrics - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:45,978 [1520] DEBUG metrics - Entering isPermitted(Invoice,Delete,) method ... +01/30/13 11:01:45,979 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:45,979 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:45,979 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:45,979 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:45,981 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:45,985 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:45,985 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:45,985 [1520] DEBUG metrics - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:45,985 [1520] DEBUG metrics - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:45,986 [1520] DEBUG metrics - Prepared sql query parameters : [92] +01/30/13 11:01:45,991 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:45,991 [1520] DEBUG metrics - Prepared sql query parameters : [11] +01/30/13 11:01:45,993 [1520] DEBUG metrics - Entering isPermitted(Leads,index,) method ... +01/30/13 11:01:45,994 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:46,007 [1520] DEBUG metrics - Entering getNewLeads() method ... +01/30/13 11:01:46,007 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:46,007 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,007 [1520] DEBUG metrics - Prepared sql query being executed : select lead_view from vtiger_users where id =? +01/30/13 11:01:46,008 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:46,010 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 00:00:00) method ... +01/30/13 11:01:46,010 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:01:46,010 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:46,010 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:01:46,010 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:46,011 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:01:46,011 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_leaddetails.firstname, vtiger_leaddetails.lastname, vtiger_leaddetails.leadid, vtiger_leaddetails.company + from vtiger_leaddetails inner join vtiger_crmentity on vtiger_leaddetails.leadid = vtiger_crmentity.crmid + where vtiger_crmentity.deleted =0 AND vtiger_leaddetails.converted =0 AND vtiger_leaddetails.leadid > 0 AND + vtiger_leaddetails.leadstatus not in ("Lost Lead", "Junk Lead","丢失的潜在客户","没有潜在价值") + AND vtiger_crmentity.createdtime >=? AND vtiger_crmentity.smownerid = ? LIMIT 0,5 +01/30/13 11:01:46,011 [1520] DEBUG metrics - Prepared sql query parameters : [2013-01-30 00:00:00,1] +01/30/13 11:01:46,014 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,014 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:46,017 [1520] DEBUG metrics - Exiting getNewLeads method ... +01/30/13 11:01:46,020 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:46,020 [1520] DEBUG metrics - Prepared sql query parameters : [12] +01/30/13 11:01:46,023 [1520] DEBUG metrics - Entering isPermitted(PurchaseOrder,index,) method ... +01/30/13 11:01:46,023 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:46,045 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:46,045 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,045 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:46,046 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:01:46,048 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,048 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,048 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,048 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,049 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,049 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,049 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:46,049 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:46,056 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,056 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,056 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,056 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,056 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,056 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,057 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,057 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:01:46,057 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:46,063 [1520] DEBUG metrics - Entering getCvIdOfAll(PurchaseOrder) +01/30/13 11:01:46,063 [1520] DEBUG metrics - Prepared sql query being executed : select cvid from vtiger_customview where viewname='All' and entitytype=? +01/30/13 11:01:46,063 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:01:46,065 [1520] DEBUG metrics - Exiting getCvIdOfAll(PurchaseOrder) +01/30/13 11:01:46,065 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,065 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,065 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,065 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:46,067 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,067 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,067 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,067 [1520] DEBUG metrics - Prepared sql query parameters : [21] +01/30/13 11:01:46,070 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,070 [1520] DEBUG metrics - Entering getTabid(Contacts) method ... +01/30/13 11:01:46,070 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,070 [1520] DEBUG metrics - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:46,070 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,070 [1520] DEBUG metrics - Entering getTabid(Products) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Entering getTabid(Faq) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Entering getTabid(Quotes) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Entering getTabid(Invoice) method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,071 [1520] DEBUG metrics - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:46,072 [1520] DEBUG metrics - Prepared sql query parameters : [PurchaseOrder] +01/30/13 11:01:46,076 [1520] DEBUG metrics - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:46,076 [1520] DEBUG metrics - Prepared sql query parameters : [21,55,57,59,60] +01/30/13 11:01:46,089 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:46,089 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:46,093 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:46,093 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:46,093 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:46,093 [1520] DEBUG metrics - Prepared sql query parameters : [22] +01/30/13 11:01:46,095 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:46,095 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:46,153 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:46,153 [1520] DEBUG metrics - Prepared sql query parameters : [31] +01/30/13 11:01:46,155 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:46,155 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:46,155 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:46,156 [1520] DEBUG metrics - Prepared sql query parameters : [37] +01/30/13 11:01:46,157 [1520] DEBUG metrics - Entering is_admin(admin) method ... +01/30/13 11:01:46,157 [1520] DEBUG metrics - Exiting is_admin method ... +01/30/13 11:01:46,159 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:46,159 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:01:46,162 [1520] DEBUG metrics - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:46,162 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:01:46,164 [1520] DEBUG metrics - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:46,164 [1520] DEBUG metrics - Prepared sql query parameters : [25] +01/30/13 11:01:46,166 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:01:46) method ... +01/30/13 11:01:46,167 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:01:46,167 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,167 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:46,182 [1520] DEBUG metrics - Entering getTabid(Users) method ... +01/30/13 11:01:46,182 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,182 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,182 [1520] DEBUG metrics - Prepared sql query parameters : [29] +01/30/13 11:01:46,185 [1520] DEBUG metrics - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:46,185 [1520] DEBUG metrics - Prepared sql query parameters : [20] +01/30/13 11:01:46,187 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:46,187 [1520] DEBUG metrics - Prepared sql query parameters : [Vendors] +01/30/13 11:01:46,209 [1520] DEBUG vendor - Entering Vendors() method ... +01/30/13 11:01:46,209 [1520] DEBUG metrics - Entering getColumnFields(Vendors) method ... +01/30/13 11:01:46,209 [1520] DEBUG metrics - in getColumnFields Vendors +01/30/13 11:01:46,209 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:01:46,209 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,210 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:01:46,210 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,210 [1520] DEBUG metrics - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:46,210 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:01:46,215 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:01:46,215 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,216 [1520] DEBUG vendor - Exiting Vendor method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Entering getTabid(Vendors) method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,216 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,216 [1520] DEBUG metrics - Prepared sql query parameters : [18] +01/30/13 11:01:46,219 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,219 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,219 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,219 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,219 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,219 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,219 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,219 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,220 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,220 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,221 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,221 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,221 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,222 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,222 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,223 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,223 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,223 [1520] DEBUG metrics - Entering getValidDBInsertDateValue(2013-01-30) method ... +01/30/13 11:01:46,223 [1520] DEBUG metrics - Exiting getValidDBInsertDateValue method ... +01/30/13 11:01:46,224 [1520] DEBUG metrics - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,224 [1520] DEBUG metrics - Prepared sql query parameters : [Users] +01/30/13 11:01:46,226 [1520] DEBUG metrics - query being executed : SELECT vtiger_purchaseorder.purchaseorderid, vtiger_purchaseorder.subject, vtiger_purchaseorder.vendorid FROM vtiger_purchaseorder INNER JOIN vtiger_crmentity ON vtiger_purchaseorder.purchaseorderid = vtiger_crmentity.crmid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_purchaseorder.duedate >= '2013-01-30') and ( trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = 'Administrator' or vtiger_groups.groupname = 'Administrator') )) AND vtiger_purchaseorder.purchaseorderid > 0 LIMIT 5 +01/30/13 11:01:46,229 [1520] DEBUG metrics - Entering getNavigationValues(1,0,20) method ... +01/30/13 11:01:46,229 [1520] DEBUG metrics - Exiting getNavigationValues method ... +01/30/13 11:01:46,229 [1520] DEBUG metrics - Entering getColumnFields(PurchaseOrder) method ... +01/30/13 11:01:46,229 [1520] DEBUG metrics - in getColumnFields PurchaseOrder +01/30/13 11:01:46,229 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Entering getURLstring(PurchaseOrder) method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Exiting getURLstring method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Entering getParentTab() method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Exiting getParentTab method ... +01/30/13 11:01:46,230 [1520] DEBUG metrics - Entering getParentTabFromModule(Home) method ... +01/30/13 11:01:46,233 [1520] DEBUG metrics - Exiting getParentTabFromModule method ... +01/30/13 11:01:46,234 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:46,234 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,234 [1520] DEBUG metrics - function getTranslatedString(Subject) - translated to (标题) +01/30/13 11:01:46,234 [1520] DEBUG metrics - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:46,234 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,234 [1520] DEBUG metrics - function getTranslatedString(Vendor Name) - translated to (供应商) +01/30/13 11:01:46,235 [1520] DEBUG metrics - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:46,236 [1520] DEBUG metrics - Exiting isPermitted method ... +01/30/13 11:01:46,236 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:46,236 [1520] DEBUG metrics - Prepared sql query parameters : [1] +01/30/13 11:01:46,242 [1520] DEBUG metrics - Prepared sql query being executed : select * from vtiger_homedefault where stuffid=? +01/30/13 11:01:46,243 [1520] DEBUG metrics - Prepared sql query parameters : [13] +01/30/13 11:01:46,246 [1520] DEBUG metrics - Entering getDisplayDate(2013-01-30 11:01:46) method ... +01/30/13 11:01:46,246 [1520] DEBUG metrics - Exiting getDisplayDate method ... +01/30/13 11:01:46,246 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 00:00:00) method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Entering getDBInsertDateValue(2013-01-30 23:59:00) method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Exiting getDBInsertDateValue method ... +01/30/13 11:01:46,247 [1520] DEBUG metrics - Entering getDBInsertTimeValue(2013-01-30 23:59:00) method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Exiting getDBInsertTimeValue method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Entering getColumnFields(Calendar) method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - in getColumnFields Calendar +01/30/13 11:01:46,248 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Entering getTabid(Events) method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,248 [1520] DEBUG metrics - Exiting getColumnFields method ... +01/30/13 11:01:46,249 [1520] DEBUG metrics - Entering getTabid(Calendar) method ... +01/30/13 11:01:46,249 [1520] DEBUG metrics - Exiting getTabid method ... +01/30/13 11:01:46,249 [1520] DEBUG metrics - query being executed : select vtiger_crmentity.crmid,vtiger_crmentity.smownerid,vtiger_crmentity.setype, vtiger_recurringevents.recurringdate, vtiger_activity.* from vtiger_activity inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left outer join vtiger_recurringevents on vtiger_recurringevents.activityid=vtiger_activity.activityid WHERE vtiger_crmentity.deleted=0 and (vtiger_activity.activitytype not in ('Emails')) AND (vtiger_activity.status is NULL OR vtiger_activity.status not in ('Completed','Deferred')) and (vtiger_activity.eventstatus is NULL OR vtiger_activity.eventstatus not in ('Held','Not Held')) AND (CAST((CONCAT(date_start,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00' + OR CAST((CONCAT(vtiger_recurringevents.recurringdate,' ',time_start)) AS DATETIME) BETWEEN '2013-01-30 00:00:00' AND '2013-01-30 23:59:00') GROUP BY vtiger_activity.activityid ORDER BY date_start,time_start ASC limit 5 +01/30/13 11:01:46,255 [1520] DEBUG metrics - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:46,255 [1520] DEBUG metrics - Exiting return_module_language method ... +01/30/13 11:01:46,262 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:46,262 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:46,263 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:46,264 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:46,264 [1520] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/30/13 11:01:46,264 [1520] INFO index - About to take action CalendarAjax +01/30/13 11:01:46,264 [1520] DEBUG index - in CalendarAjax +01/30/13 11:01:46,265 [1520] INFO index - current page is modules/Calendar/CalendarAjax.php +01/30/13 11:01:46,265 [1520] INFO index - current module is Calendar +01/30/13 11:01:46,347 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:46,347 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:46,347 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:46,347 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,348 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,348 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,348 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:46,349 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:46,424 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,424 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,424 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:46,424 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:46,425 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:46,426 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:46,427 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,428 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:46,429 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,429 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:46,430 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,430 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:46,431 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,431 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:46,432 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,432 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:46,433 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,433 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:46,434 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,434 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:46,435 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,435 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:46,436 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,436 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:46,437 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,438 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:46,439 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,439 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:46,440 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,440 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:46,441 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,441 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:46,442 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,442 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:46,443 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,443 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:46,444 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,444 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:46,445 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,445 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:46,446 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,446 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:46,447 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,448 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:46,449 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,449 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:46,450 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,450 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:46,451 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,451 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:46,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,452 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:46,452 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,452 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:46,453 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,453 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:46,454 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,454 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:46,455 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,455 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:46,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,456 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:46,456 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,457 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:46,457 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,457 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:46,458 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,458 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:46,459 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,459 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:46,460 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,460 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:46,461 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,461 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:46,462 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,462 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:46,463 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,463 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:46,464 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,464 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:46,465 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,465 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:46,466 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,466 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:46,467 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,467 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:46,468 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,468 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:46,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,469 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:46,469 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,470 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:46,470 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,471 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:46,471 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,471 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:46,472 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,472 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:46,473 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,473 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:46,474 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:46,474 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:46,474 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:46,474 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:46,476 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:46,476 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:46,479 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:46,479 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:46,481 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:46,481 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:46,482 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,482 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:46,482 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:46,482 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:46,482 [1520] DEBUG index - skipping headers +01/30/13 11:01:46,483 [1520] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/30/13 11:01:46,484 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,519 [1520] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:46,520 [1520] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/30/13 11:01:46,520 [1520] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/30/13 11:01:46,520 [1520] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/30/13 11:01:46,524 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-30') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:02')) +01/30/13 11:01:46,569 [1520] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/30/13 11:01:46,575 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:01:46,576 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:01:46,576 [1520] DEBUG index - ****Starting for new session +01/30/13 11:01:46,577 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:01:46,577 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:01:46,578 [1520] INFO index - About to take action index +01/30/13 11:01:46,578 [1520] DEBUG index - in index +01/30/13 11:01:46,578 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:01:46,578 [1520] INFO index - current module is Accounts +01/30/13 11:01:46,639 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:46,639 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:46,639 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:46,639 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,639 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,640 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,640 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,640 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:46,640 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:46,651 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:46,651 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,651 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:46,651 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:46,651 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:46,652 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:46,652 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,652 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:46,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,653 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:46,653 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,653 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:46,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,654 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:46,654 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,655 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:46,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,655 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:46,655 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,656 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:46,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,656 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:46,656 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,657 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:46,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,657 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:46,657 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,658 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:46,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,658 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:46,658 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,659 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:46,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,659 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:46,659 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,660 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:46,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,660 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:46,660 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,661 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:46,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,661 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:46,661 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,662 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:46,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,662 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:46,662 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,663 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:46,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,663 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:46,663 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,664 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:46,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,664 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:46,664 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,664 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:46,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,665 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:46,665 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,665 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:46,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,666 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:46,666 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,666 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:46,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,667 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:46,667 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,667 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:46,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,668 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:46,668 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,668 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:46,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,669 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:46,669 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,669 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:46,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,670 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:46,670 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,670 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:46,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,671 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:46,671 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,671 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:46,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,672 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:46,672 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,672 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:46,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,673 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:46,673 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,673 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:46,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,674 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:46,674 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,674 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:46,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,675 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:46,675 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,675 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:46,696 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:01:46,696 [1520] DEBUG index - Prepared sql query parameters : [264,1,Accounts,index,,2013-01-30 11:01:46] +01/30/13 11:01:46,703 [1520] DEBUG index - Current user is: admin +01/30/13 11:01:46,703 [1520] DEBUG index - Current theme is: softed +01/30/13 11:01:46,703 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:01:46,703 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:01:46,705 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:01:46,705 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:46,707 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:46,707 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:46,709 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:46,709 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:46,709 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,710 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:01:46,710 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:01:46,710 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:01:46,710 [1520] DEBUG index - including headers +01/30/13 11:01:46,710 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:46,711 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:46,714 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,714 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:46,716 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:01:46,717 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:01:46,717 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,717 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:01:46,718 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,718 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:01:46,718 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,718 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,719 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:01:46,720 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,720 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:01:46,720 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:01:46,720 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:01:46,720 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:01:46,721 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:01:46,726 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:46,727 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,727 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:46,727 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:46,728 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,728 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:46,729 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,729 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:01:46,730 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:01:46,731 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,731 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:46,732 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,732 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:01:46,733 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:01:46,734 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,734 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:46,735 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,735 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:01:46,735 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:01:46,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,736 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:46,737 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,737 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:01:46,738 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:01:46,739 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,739 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:46,740 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,740 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:01:46,740 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:01:46,741 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,742 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:46,742 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,743 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:01:46,743 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:01:46,744 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,744 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:01:46,745 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,745 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:01:46,745 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:01:46,746 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,747 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:46,748 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,748 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:01:46,748 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:01:46,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,750 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:46,751 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,751 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:01:46,751 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:01:46,752 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,752 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:46,752 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,752 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:01:46,752 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:01:46,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,753 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:46,753 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,753 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:01:46,754 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:01:46,754 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,754 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:46,755 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,755 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:01:46,755 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:01:46,755 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,756 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:46,756 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,756 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:01:46,756 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:01:46,757 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,757 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:46,757 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,758 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:01:46,758 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:01:46,758 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,758 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:46,759 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,759 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:01:46,759 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:01:46,760 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,760 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:46,760 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,760 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:01:46,760 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:01:46,761 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,761 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:46,761 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,761 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:01:46,762 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:01:46,762 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,762 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:46,763 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,763 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:01:46,763 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:01:46,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,763 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:01:46) method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:01:46) method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:46,764 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:46,765 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:46,765 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:01:46,765 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:01:46,765 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:01:46,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,770 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,770 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,771 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,772 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,773 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,774 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,775 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,776 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,777 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,778 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,779 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,779 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,779 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:01:46,783 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:46,784 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,784 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:46,784 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:46,786 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:46,786 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:46,787 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:01:46,787 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,787 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:01:46,787 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,788 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,789 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:46,789 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,789 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:01:46,789 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,789 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:01:46,790 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,790 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:46,790 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,790 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:46,791 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,792 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:01:46,792 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,792 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:01:46,792 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,792 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:01:46,793 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,793 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:01:46,793 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,793 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:01:46,794 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,794 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:01:46,794 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,794 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:01:46,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,795 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:01:46,795 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,795 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:01:46,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,796 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:46,796 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,796 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:01:46,796 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:46,797 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,798 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:01:46,798 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,798 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:01:46,798 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,798 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:01:46,799 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,799 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:01:46,799 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:01:46,799 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:46,805 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:01:46,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,806 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:01:46,806 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,807 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:01:46,807 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,808 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:01:46,808 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,809 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:01:46,809 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,809 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:46,810 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:01:46,812 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:01:46,812 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,812 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:01:46,812 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:01:46,816 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:01:46,824 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:46,824 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,824 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:46,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:46,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,825 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:46,825 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:46,825 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,825 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:46,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:46,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,826 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:46,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:46,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,826 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:46,826 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:46,826 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,826 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:46,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:46,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,827 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:46,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:46,827 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,827 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:46,827 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:46,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,828 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:01:46,828 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:46,828 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,828 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:46,828 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:01:46,829 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,829 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:01:46,831 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:46,832 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,832 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:46,832 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:01:46,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,833 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:01:46,833 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:01:46,833 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,833 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:01:46,834 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:01:46,834 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,834 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:01:46,834 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:46,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,835 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:46,835 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:46,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,835 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:01:46,835 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:01:46,835 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,835 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:01:46,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:01:46,836 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,836 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:01:46,836 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:01:46,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,837 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:01:46,837 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:46,837 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,837 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:46,837 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:46,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,838 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:01:46,838 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:46,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,838 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:46,838 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:46,838 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,838 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:46,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:46,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,839 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:46,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:46,839 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,839 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:46,839 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:46,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,840 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:46,840 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:46,840 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,840 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:46,840 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:46,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,841 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:46,841 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:46,841 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,841 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:46,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:46,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,842 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:46,842 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:46,842 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,842 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:46,843 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:46,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,843 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:46,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:46,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,844 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:46,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:46,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,845 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:01:46,845 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:46,845 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,871 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:46,871 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:46,871 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:46,872 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:46,872 [1520] DEBUG index - Entering Button_Check(Accounts) method ... +01/30/13 11:01:46,872 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:46,872 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,872 [1520] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/30/13 11:01:46,873 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,873 [1520] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/30/13 11:01:46,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,874 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:01:46,874 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,874 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:01:46,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,875 [1520] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/30/13 11:01:46,875 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,875 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:46,876 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,877 [1520] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/30/13 11:01:46,877 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,877 [1520] DEBUG index - Exiting Button_Check method ... +01/30/13 11:01:46,877 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:46,878 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:46,878 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,878 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,878 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,878 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:01:46,878 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:46,887 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,887 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,887 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:46,888 [1520] DEBUG index - Entering function initSortByField (Accounts) +01/30/13 11:01:46,888 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,888 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,888 [1520] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/30/13 11:01:46,888 [1520] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/30/13 11:01:46,891 [1520] DEBUG index - Exiting initSortByField +01/30/13 11:01:46,892 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:46,892 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,892 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:46,893 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,893 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:01:46,893 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Entering getSortOrder() method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Exiting getSortOrder() method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Entering getOrderBy() method ... +01/30/13 11:01:46,894 [1520] DEBUG index - Exiting getOrderBy method ... +01/30/13 11:01:46,895 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:46,895 [1520] DEBUG index - Entering getUserslist() method ... +01/30/13 11:01:46,895 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:01:46,896 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:01:46,896 [1520] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/30/13 11:01:46,896 [1520] DEBUG index - Prepared sql query parameters : [Active,1] +01/30/13 11:01:46,900 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,900 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:46,902 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:46,902 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:46,905 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:46,905 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:01:46,905 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:01:46,905 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:01:46,905 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:01:46,905 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:01:46,905 [1520] DEBUG index - Exiting getUserslist method ... +01/30/13 11:01:46,906 [1520] DEBUG index - Entering getGroupslist() method ... +01/30/13 11:01:46,906 [1520] DEBUG index - Entering get_group_options() method ... +01/30/13 11:01:46,906 [1520] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/30/13 11:01:46,908 [1520] DEBUG index - Exiting get_group_options method ... +01/30/13 11:01:46,908 [1520] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/30/13 11:01:46,909 [1520] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/30/13 11:01:46,909 [1520] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/30/13 11:01:46,911 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:46,911 [1520] DEBUG index - Exiting get_user_array method ... +01/30/13 11:01:46,911 [1520] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/30/13 11:01:46,912 [1520] DEBUG index - Exiting get_select_options_array method ... +01/30/13 11:01:46,912 [1520] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/30/13 11:01:46,912 [1520] DEBUG index - Exiting get_options_array_seperate_key method ... +01/30/13 11:01:46,912 [1520] DEBUG index - Exiting getGroupslist method ... +01/30/13 11:01:46,912 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:46,912 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:01:46,915 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:46,915 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:46,915 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,915 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,915 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:46,915 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,916 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,916 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,917 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,917 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =? +01/30/13 11:01:46,917 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:01:46,937 [1520] DEBUG index - Prepared sql query being executed : select cvid from vtiger_customview where setdefault=1 and entitytype=? +01/30/13 11:01:46,937 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:01:46,939 [1520] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:01:46,940 [1520] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/30/13 11:01:46,940 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:46,942 [1520] DEBUG index - Entering when status=0 +01/30/13 11:01:46,942 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/30/13 11:01:46,942 [1520] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/30/13 11:01:46,942 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,942 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,943 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/30/13 11:01:46,943 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:46,946 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,946 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,947 [1520] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/30/13 11:01:46,947 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:46,949 [1520] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/30/13 11:01:46,949 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:01:46,951 [1520] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/30/13 11:01:46,952 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,952 [1520] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/30/13 11:01:46,952 [1520] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/30/13 11:01:46,952 [1520] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:01:46,953 [1520] DEBUG index - Entering when status=0 +01/30/13 11:01:46,953 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:01:46,953 [1520] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/30/13 11:01:46,953 [1520] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:01:46,953 [1520] DEBUG index - Entering when status=0 +01/30/13 11:01:46,953 [1520] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/30/13 11:01:46,954 [1520] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/30/13 11:01:46,954 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,954 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,954 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,954 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:46,956 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:46,956 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,956 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:46,956 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:46,959 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:46,959 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:01:46,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,959 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:01:46,959 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:01:46,960 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:46,961 [1520] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/30/13 11:01:46,961 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:01:46,966 [1520] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/30/13 11:01:46,966 [1520] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/30/13 11:01:46,984 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/30/13 11:01:46,988 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:46,988 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:01:46,992 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,993 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,994 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,995 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,996 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,997 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,998 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,999 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:46,1000 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:01:47,000 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:47,001 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:01:47,001 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:47,001 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:01:47,001 [1520] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/30/13 11:01:47,004 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:01:47,004 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:47,005 [1520] DEBUG index - Prepared sql query parameters : [Groups] +01/30/13 11:01:47,013 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:47,013 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:47,060 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,060 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/30/13 11:01:47,062 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,062 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/30/13 11:01:47,064 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,064 [1520] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/30/13 11:01:47,066 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:47,067 [1520] DEBUG index - Prepared sql query parameters : [Currency] +01/30/13 11:01:47,069 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:47,069 [1520] DEBUG index - Prepared sql query parameters : [21] +01/30/13 11:01:47,116 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,117 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/30/13 11:01:47,119 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,119 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/30/13 11:01:47,121 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,121 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/30/13 11:01:47,123 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,124 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/30/13 11:01:47,126 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,126 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/30/13 11:01:47,130 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,130 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/30/13 11:01:47,132 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,132 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/30/13 11:01:47,134 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,134 [1520] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/30/13 11:01:47,136 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:47,137 [1520] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/30/13 11:01:47,139 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:47,139 [1520] DEBUG index - Prepared sql query parameters : [22] +01/30/13 11:01:47,172 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,172 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/30/13 11:01:47,174 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,174 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/30/13 11:01:47,176 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,177 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/30/13 11:01:47,179 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,179 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/30/13 11:01:47,182 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/30/13 11:01:47,182 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:47,184 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,184 [1520] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/30/13 11:01:47,186 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:47,186 [1520] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/30/13 11:01:47,190 [1520] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/30/13 11:01:47,190 [1520] DEBUG index - Prepared sql query parameters : [23] +01/30/13 11:01:47,225 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,225 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/30/13 11:01:47,228 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,228 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/30/13 11:01:47,232 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,232 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/30/13 11:01:47,234 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,235 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/30/13 11:01:47,237 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,237 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/30/13 11:01:47,239 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,239 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/30/13 11:01:47,241 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,241 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/30/13 11:01:47,243 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,243 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/30/13 11:01:47,245 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,246 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/30/13 11:01:47,248 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,248 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/30/13 11:01:47,250 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,250 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/30/13 11:01:47,252 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/30/13 11:01:47,253 [1520] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/30/13 11:01:47,255 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:01:47,259 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:01:47,259 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:01:47,262 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:01:47,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:47,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,263 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:01:47,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:01:47,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,263 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:01:47,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:47,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,264 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:01:47,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:01:47,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,264 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:01:47,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:47,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,264 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:01:47,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:01:47,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,265 [1520] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/30/13 11:01:47,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:47,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,265 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:01:47,265 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:01:47,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,265 [1520] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/30/13 11:01:47,265 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:47,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,266 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:47,266 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:01:47,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,266 [1520] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/30/13 11:01:47,266 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:47,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,266 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:01:47,266 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:01:47,266 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,267 [1520] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/30/13 11:01:47,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:47,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,267 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:01:47,267 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:01:47,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,267 [1520] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/30/13 11:01:47,267 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:47,267 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,268 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:01:47,268 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:01:47,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,268 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:01:47,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:47,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,268 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:01:47,268 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:47,268 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,269 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:01:47,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:47,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,269 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:01:47,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:01:47,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,269 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:01:47,269 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,269 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,270 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,270 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:01:47,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:47,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,270 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:01:47,270 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:01:47,270 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,271 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:01:47,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:47,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,271 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:01:47,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:01:47,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,271 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:01:47,271 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:47,271 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,272 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:01:47,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:01:47,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,272 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:01:47,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:47,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,272 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:01:47,272 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:01:47,272 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,273 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:01:47,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:47,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,273 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:01:47,273 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:01:47,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,273 [1520] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/30/13 11:01:47,273 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:47,273 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,273 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:01:47,274 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:01:47,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,274 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:01:47,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:47,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,274 [1520] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/30/13 11:01:47,274 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:01:47,274 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,275 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:01:47,275 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:47,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,276 [1520] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/30/13 11:01:47,276 [1520] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/30/13 11:01:47,276 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,276 [1520] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/30/13 11:01:47,277 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:47,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,277 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:01:47,277 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:01:47,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,277 [1520] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/30/13 11:01:47,277 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:47,277 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,277 [1520] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/30/13 11:01:47,278 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:01:47,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,278 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:01:47,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:47,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,278 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:01:47,278 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:01:47,278 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,278 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:01:47,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:47,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,279 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:01:47,279 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:01:47,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,279 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:01:47,279 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:47,279 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,279 [1520] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/30/13 11:01:47,279 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:01:47,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,280 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:01:47,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:47,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,280 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:01:47,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:01:47,280 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,280 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:01:47,280 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:47,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,281 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:01:47,281 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:01:47,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,281 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:01:47,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:47,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,281 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:01:47,281 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:01:47,281 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,282 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:01:47,282 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:47,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,282 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:01:47,282 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:01:47,282 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,282 [1520] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/30/13 11:01:47,283 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:47,283 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:47,318 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/30/13 11:01:47,318 [1520] DEBUG index - Prepared sql query parameters : [31] +01/30/13 11:01:47,320 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:47,320 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:47,320 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/30/13 11:01:47,321 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:47,324 [1520] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/30/13 11:01:47,324 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:47,326 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/30/13 11:01:47,326 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:47,329 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/30/13 11:01:47,329 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:47,331 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:01:47,331 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:01:47,332 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:01:47,332 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:47,332 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,332 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,332 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:01:47,333 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:47,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,333 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:01:47,333 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,334 [1520] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/30/13 11:01:47,334 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:01:47,336 [1520] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/30/13 11:01:47,336 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:47,338 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,339 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,339 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,339 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,339 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,340 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,340 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,340 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,340 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,340 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,341 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,341 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,341 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,341 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,341 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,342 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,342 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,342 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,342 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,342 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,343 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,343 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,343 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,343 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,343 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,344 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,344 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,344 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,344 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,344 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,345 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,345 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,345 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,345 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,345 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,346 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,347 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,347 [1520] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/30/13 11:01:47,375 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/30/13 11:01:47,378 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,378 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,378 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,380 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,411 [1520] DEBUG index - Entering getURLstring(Accounts) method ... +01/30/13 11:01:47,411 [1520] DEBUG index - Exiting getURLstring method ... +01/30/13 11:01:47,411 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,411 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,411 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,412 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,412 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,413 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,414 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,414 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,415 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:01:47,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,415 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:01:47,415 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,415 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,416 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:01:47,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,416 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,416 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:01:47,416 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,417 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:01:47,417 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,417 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,417 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:01:47,418 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,419 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,419 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,419 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,419 [1520] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/30/13 11:01:47,420 [1520] DEBUG index - Entering getEntityName(Users) method ... +01/30/13 11:01:47,421 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:01:47,421 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:01:47,423 [1520] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/30/13 11:01:47,423 [1520] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/30/13 11:01:47,426 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:01:47,427 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,427 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:01:47,428 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:47,430 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,430 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,431 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,432 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,433 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,433 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,433 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,434 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,435 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,435 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,435 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,435 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,436 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,436 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,437 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,437 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,438 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,438 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,439 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,440 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,440 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,440 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,441 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,442 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,442 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,442 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,443 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,443 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,443 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,443 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,443 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,444 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,444 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,444 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,444 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,445 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,445 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,445 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,445 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,445 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,445 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,446 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,449 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,449 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,450 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,450 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,450 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,450 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,450 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,450 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,450 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,450 [1520] DEBUG index - Prepared sql query parameters : [2] +01/30/13 11:01:47,453 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,453 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,453 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,454 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,454 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,454 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,454 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,455 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,455 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,455 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,455 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,455 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,455 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,455 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,456 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,456 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,456 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,456 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,457 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,457 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,457 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,458 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,458 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,458 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,459 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,459 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,459 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,459 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,460 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,460 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,460 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,460 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,461 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,461 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,461 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,461 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,461 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,462 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,462 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,462 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,462 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,463 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,466 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,466 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,466 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,467 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,467 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,467 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,467 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,467 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,467 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,467 [1520] DEBUG index - Prepared sql query parameters : [4] +01/30/13 11:01:47,469 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,469 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,470 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,470 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,471 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,471 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,471 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,471 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,472 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,472 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,472 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,472 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,472 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,472 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,473 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,473 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,473 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,473 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,474 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,474 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,474 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,474 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,475 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,475 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,475 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,475 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,476 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,476 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,477 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,477 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,477 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,477 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,478 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,478 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,478 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,478 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,478 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,479 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,479 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,479 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,479 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,479 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,483 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,483 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,483 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,483 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,483 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,484 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,484 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,484 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,484 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,484 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:47,487 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,487 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,487 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,488 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,488 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,488 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,488 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,489 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,489 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,489 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,489 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,489 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,489 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,490 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,490 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,490 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,491 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,491 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,491 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,492 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,492 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,492 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,492 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,493 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,493 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,493 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,493 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,494 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,494 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,494 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,494 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,494 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,495 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,495 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,495 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,495 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,495 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,496 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,496 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,496 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,496 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,497 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,500 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,500 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,500 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,500 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,501 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,501 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,501 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,501 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,501 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,501 [1520] DEBUG index - Prepared sql query parameters : [8] +01/30/13 11:01:47,504 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,504 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,504 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,505 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,505 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,505 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,506 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,506 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,506 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,507 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,507 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,507 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,507 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,507 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,508 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,508 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,508 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,508 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,509 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,509 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,509 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,509 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,510 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,510 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,510 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,510 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,511 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,511 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,512 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,512 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,512 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,512 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,513 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,513 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,513 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,513 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,513 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,514 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,514 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,514 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,514 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,515 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,518 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,518 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,518 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,518 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,518 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,518 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,518 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,518 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,519 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,519 [1520] DEBUG index - Prepared sql query parameters : [10] +01/30/13 11:01:47,523 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,523 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,523 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,524 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,524 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,524 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,524 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,525 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,525 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,525 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,525 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,525 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,525 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,525 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,526 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,526 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,526 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,527 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,527 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,527 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,528 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,528 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,528 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,528 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,529 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,529 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,529 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,529 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,530 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,530 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,530 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,530 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,531 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,531 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,531 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,531 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,531 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,532 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,532 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,532 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,532 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,533 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,536 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,536 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,536 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,536 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,536 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,537 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,537 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,537 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,537 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,537 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:01:47,540 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,540 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,540 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,541 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,541 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,541 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,542 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,542 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,542 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,542 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,543 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,543 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,543 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,543 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,544 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,544 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,544 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,544 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,545 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,545 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,545 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,545 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,546 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,546 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,546 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,546 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,547 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,547 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,547 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,548 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,548 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,548 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,548 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,548 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,549 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,549 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,549 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,549 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,549 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,549 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,550 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,550 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,553 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,554 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,554 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,554 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,554 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,554 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,554 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,554 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,554 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,554 [1520] DEBUG index - Prepared sql query parameters : [14] +01/30/13 11:01:47,557 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,557 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,557 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,558 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,558 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,558 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,558 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,559 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,559 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,559 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,559 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,559 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,560 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,560 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,560 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,561 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,561 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,561 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,561 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,562 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,562 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,562 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,562 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,563 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,563 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,563 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,564 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,565 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,565 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,565 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,565 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,566 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,566 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,566 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,566 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,566 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,567 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,570 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,570 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,570 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,570 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,571 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,571 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,571 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,571 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,571 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,571 [1520] DEBUG index - Prepared sql query parameters : [16] +01/30/13 11:01:47,573 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,573 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,573 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,574 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,574 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,574 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,574 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,575 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,575 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,575 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,575 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,576 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,576 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,576 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,576 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,577 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,577 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,577 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,578 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,578 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,578 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,578 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,579 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,579 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,579 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,579 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,580 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,580 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,580 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,580 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,580 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,581 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,581 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,581 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,582 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,582 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,582 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,582 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,582 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,582 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,582 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,583 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,586 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,586 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,586 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,587 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,587 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,587 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,587 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,587 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,587 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,587 [1520] DEBUG index - Prepared sql query parameters : [18] +01/30/13 11:01:47,589 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,589 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,590 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,590 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,590 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,591 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,591 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,591 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,592 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,592 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,592 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:47,592 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,592 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,592 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,593 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,593 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,593 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,593 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,594 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,594 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,594 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,594 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,595 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,595 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,595 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,595 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,596 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,596 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:01:47,597 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,597 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,597 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,597 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,598 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,598 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,598 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,598 [1520] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/30/13 11:01:47,598 [1520] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/30/13 11:01:47,599 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:47,599 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:01:47,599 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:01:47,599 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:01:47,600 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:01:47,603 [1520] DEBUG index - Entering getColumnFields(Accounts) method ... +01/30/13 11:01:47,603 [1520] DEBUG index - in getColumnFields Accounts +01/30/13 11:01:47,603 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,603 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,604 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:01:47,604 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,604 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,604 [1520] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/30/13 11:01:47,604 [1520] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/30/13 11:01:47,604 [1520] DEBUG index - Prepared sql query parameters : [20] +01/30/13 11:01:47,606 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,607 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:01:47,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,607 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:01:47,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,607 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:01:47,607 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,607 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,607 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:01:47,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,608 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:01:47,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,608 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:01:47,608 [1520] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/30/13 11:01:47,608 [1520] DEBUG index - Exiting AlphabeticalSearch method ... +01/30/13 11:01:47,608 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,608 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,609 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:01:47,609 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,609 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,611 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,611 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,611 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,611 [1520] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/30/13 11:01:47,611 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,611 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,615 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,615 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,615 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,615 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:01:47,615 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,616 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,617 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,617 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,617 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,618 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,618 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:01:47,618 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,618 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,620 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,620 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,620 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,620 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:01:47,620 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,620 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,622 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,622 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,622 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,622 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:01:47,622 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,623 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,624 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,624 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,624 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,625 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,625 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:01:47,625 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,625 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,627 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,627 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,627 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,627 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:01:47,627 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,627 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,629 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,629 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,629 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,630 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:01:47,630 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,630 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,632 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,632 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,632 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,632 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:01:47,632 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,632 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,634 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,634 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,634 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,635 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,635 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:01:47,635 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,635 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,636 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,636 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,636 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,637 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,637 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:01:47,637 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,637 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,640 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,640 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,641 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,641 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,641 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,641 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:01:47,641 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,641 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,643 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,643 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,643 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,643 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:01:47,643 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,644 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,645 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,646 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,646 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,646 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,646 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:01:47,646 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,646 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,648 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,648 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,648 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,648 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:01:47,648 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,648 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,651 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,651 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,651 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,651 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:01:47,651 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,651 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,653 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,653 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,653 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,653 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:01:47,653 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,653 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,655 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,655 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,655 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,655 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:01:47,655 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,655 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,657 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,657 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,657 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,657 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:01:47,657 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,657 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,659 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,659 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,659 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,659 [1520] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/30/13 11:01:47,660 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,660 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,661 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,661 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,661 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,661 [1520] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/30/13 11:01:47,661 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,662 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,663 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,663 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,663 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,664 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:01:47,664 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,664 [1520] DEBUG index - Prepared sql query parameters : [9] +01/30/13 11:01:47,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,666 [1520] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/30/13 11:01:47,666 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,666 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,666 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:01:47,666 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,666 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,668 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,668 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,668 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,668 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:01:47,668 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,669 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,670 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,670 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,670 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,670 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:01:47,670 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,670 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,672 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,672 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,672 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,673 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:01:47,673 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,673 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,674 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,674 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,675 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:01:47,675 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,675 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,677 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,677 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,677 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:01:47,677 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,677 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,678 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,679 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,679 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,679 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,679 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:01:47,679 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,679 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,680 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,680 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,681 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:01:47,681 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,681 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,682 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,682 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,683 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,683 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:01:47,683 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,683 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,684 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,685 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,685 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,685 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:01:47,685 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,685 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,687 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,687 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,687 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:01:47,687 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,687 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,689 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,689 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,690 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:01:47,690 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,690 [1520] DEBUG index - Prepared sql query parameters : [11] +01/30/13 11:01:47,691 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,692 [1520] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/30/13 11:01:47,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,692 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,692 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:01:47,692 [1520] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/30/13 11:01:47,692 [1520] DEBUG index - Prepared sql query parameters : [12] +01/30/13 11:01:47,694 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:47,694 [1520] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/30/13 11:01:47,694 [1520] DEBUG index - Entering getcriteria_options() method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Exiting getcriteria_options method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/30/13 11:01:47,694 [1520] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/30/13 11:01:47,694 [1520] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/30/13 11:01:47,698 [1520] DEBUG index - Exiting getFieldsResultForMerge method ... +01/30/13 11:01:47,698 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:01:47,698 [1520] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/30/13 11:01:47,698 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:01:47,741 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:01:47,741 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:01:47,741 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:01:47,741 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:47,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:47,741 [1520] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/30/13 11:01:47,741 [1520] DEBUG index - Prepared sql query parameters : [1,6] +01/30/13 11:01:47,910 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:01:47,910 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:01:47,911 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:48,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,005 [1520] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/30/13 11:01:48,005 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,005 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,006 [1520] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/30/13 11:01:48,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,006 [1520] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/30/13 11:01:48,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,007 [1520] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/30/13 11:01:48,007 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,007 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,007 [1520] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/30/13 11:01:48,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,008 [1520] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/30/13 11:01:48,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,009 [1520] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/30/13 11:01:48,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,009 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,009 [1520] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/30/13 11:01:48,009 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,010 [1520] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/30/13 11:01:48,010 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,010 [1520] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/30/13 11:01:48,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,011 [1520] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/30/13 11:01:48,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,011 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,011 [1520] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/30/13 11:01:48,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,012 [1520] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/30/13 11:01:48,012 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,013 [1520] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/30/13 11:01:48,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,013 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,013 [1520] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/30/13 11:01:48,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,014 [1520] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/30/13 11:01:48,014 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,014 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/30/13 11:01:48,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,015 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:01:48,015 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,015 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,016 [1520] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/30/13 11:01:48,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,016 [1520] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/30/13 11:01:48,016 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,017 [1520] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/30/13 11:01:48,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,017 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,017 [1520] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/30/13 11:01:48,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,018 [1520] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/30/13 11:01:48,018 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,018 [1520] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/30/13 11:01:48,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,019 [1520] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/30/13 11:01:48,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,020 [1520] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/30/13 11:01:48,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,020 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,020 [1520] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/30/13 11:01:48,020 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,021 [1520] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/30/13 11:01:48,021 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,021 [1520] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/30/13 11:01:48,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,022 [1520] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/30/13 11:01:48,022 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,022 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,023 [1520] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/30/13 11:01:48,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,023 [1520] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/30/13 11:01:48,023 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,024 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,024 [1520] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/30/13 11:01:48,024 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:48,024 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:48,024 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/30/13 11:01:48,024 [1520] DEBUG index - Prepared sql query parameters : [6,1] +01/30/13 11:01:48,051 [1520] DEBUG index - Entering fetchUserProfileId(1) method ... +01/30/13 11:01:48,051 [1520] DEBUG index - Exiting fetchUserProfileId method ... +01/30/13 11:01:48,051 [1520] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/30/13 11:01:48,051 [1520] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/30/13 11:01:48,052 [1520] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/30/13 11:01:48,052 [1520] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/30/13 11:01:48,052 [1520] DEBUG index - Prepared sql query parameters : [6] +01/30/13 11:01:48,061 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:01:48,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:01:48,061 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/30/13 11:01:48,061 [1520] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/30/13 11:01:48,066 [1520] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/30/13 11:01:48,067 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:01:48,067 [1520] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/30/13 11:01:48,067 [1520] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/30/13 11:01:48,068 [1520] DEBUG index - Prepared sql query parameters : [Accounts] +01/30/13 11:01:48,097 [1520] DEBUG index - Exiting fetchWordTemplateList method ... +01/30/13 11:01:48,097 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:01:48,097 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:01:48,176 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,176 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,177 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,177 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,177 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:01:48,177 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,178 [1520] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/30/13 11:01:48,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,178 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,178 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,178 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,179 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,179 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,179 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,179 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,180 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,180 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,180 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,180 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,181 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,181 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,181 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,182 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,183 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,183 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,184 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,184 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,184 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,260 [1520] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/30/13 11:01:48,260 [1520] DEBUG index - Exiting parse_calendardate method ... +01/30/13 11:01:48,260 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,260 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,261 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:01:48,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,261 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,261 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:01:48,261 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,262 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:01:48,262 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,262 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,263 [1520] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/30/13 11:01:48,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,263 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,263 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/30/13 11:01:48,263 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,264 [1520] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/30/13 11:01:48,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,264 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,264 [1520] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/30/13 11:01:48,264 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,265 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,265 [1520] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/30/13 11:01:48,308 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:48,308 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:48,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,308 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:01:48,308 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,308 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,308 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,309 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,309 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,309 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:01:48,309 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:01:48,309 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:01:48,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,310 [1520] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/30/13 11:01:48,310 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:01:48,310 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:01:48,310 [1520] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/30/13 11:01:48,312 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:01:48,312 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:01:48,313 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:10,222 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:02:11,481 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:02:11,481 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:02:11,482 [1520] DEBUG index - ****Starting for new session +01/30/13 11:02:11,483 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:02:11,484 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'MailerExport', + 'search_url' => '', + 'idlist' => '', + 'change_owner' => '', + 'change_status' => '', + 'where_export' => '', + 'step' => 'ask', + 'excludedRecords' => '', + 'numOfRows' => '', + 'allids' => '', + 'selectedboxes' => '', + 'allselectedboxes' => '', + 'current_page_boxes' => '2;4;6;8;10;12;14;16;18;20', + 'viewname' => '4', + 'pagenum' => '1', +) +01/30/13 11:02:11,484 [1520] INFO index - About to take action MailerExport +01/30/13 11:02:11,484 [1520] DEBUG index - in MailerExport +01/30/13 11:02:11,484 [1520] INFO index - current page is modules/Accounts/MailerExport.php +01/30/13 11:02:11,484 [1520] INFO index - current module is Accounts +01/30/13 11:02:11,561 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:11,561 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:11,561 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:11,561 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:11,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,562 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:11,562 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,562 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:11,563 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:11,575 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:11,575 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,575 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:11,575 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:11,576 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:11,577 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:11,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,578 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:11,578 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,579 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:11,579 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,579 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:11,580 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,580 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:11,581 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,581 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:11,582 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,582 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:11,583 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,583 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:11,584 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,584 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:11,585 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,585 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:11,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,586 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:11,586 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,587 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:11,587 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,587 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:11,588 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,588 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:11,589 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,589 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:11,590 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,590 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:11,591 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,591 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:11,592 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,592 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:11,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,593 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:11,593 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,593 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:11,594 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,594 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:11,595 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,595 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:11,596 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,596 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:11,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,597 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:11,597 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,597 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:11,598 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,598 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:11,599 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,599 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:11,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,600 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:11,600 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,601 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:11,601 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,601 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:11,602 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,602 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:11,603 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,603 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:11,604 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,604 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:11,605 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,605 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:11,606 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,606 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:11,607 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,607 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:11,608 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,608 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:11,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,609 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:11,609 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,609 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:11,610 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,610 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:11,611 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,611 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:11,612 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,612 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:11,613 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,613 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:11,614 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,614 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:11,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,615 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:11,615 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,616 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:11,616 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,616 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:11,617 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:11,617 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:11,639 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:02:11,639 [1520] DEBUG index - Prepared sql query parameters : [265,1,Accounts,MailerExport,,2013-01-30 11:02:11] +01/30/13 11:02:11,642 [1520] DEBUG index - Current user is: admin +01/30/13 11:02:11,642 [1520] DEBUG index - Current theme is: softed +01/30/13 11:02:11,642 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:02:11,642 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:02:11,644 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:02:11,644 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:11,647 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:11,647 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:11,649 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:11,649 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,650 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,650 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:02:11,650 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:02:11,650 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:02:11,650 [1520] DEBUG index - including headers +01/30/13 11:02:11,650 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:11,652 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:11,656 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:11,656 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:11,659 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:02:11,660 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:02:11,661 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,661 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:02:11,662 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,662 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:02:11,663 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,663 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:02:11,663 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,664 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:02:11,664 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,664 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:02:11,665 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,665 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:02:11,666 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,666 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:02:11,667 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:11,667 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:02:11,667 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:02:11,667 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:02:11,673 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,673 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,673 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:11,673 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:11,674 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,674 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:11,675 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,675 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:02:11,675 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:02:11,676 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,676 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:11,677 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,677 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:02:11,677 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:02:11,678 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,678 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:11,680 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,680 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:02:11,680 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:02:11,681 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,681 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:11,681 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,681 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:02:11,682 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:02:11,682 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,683 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,683 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,683 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:02:11,683 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:11,684 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,684 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:11,685 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,685 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:02:11,685 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:11,686 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,686 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:02:11,687 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,687 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:02:11,687 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:02:11,688 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,688 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:11,689 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,689 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:02:11,689 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:11,690 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,690 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:11,691 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,691 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:02:11,691 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:11,692 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,692 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:11,693 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,693 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:02:11,693 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:11,694 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,694 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:11,694 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,694 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:02:11,695 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:02:11,695 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,696 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:11,696 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,696 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:02:11,696 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:11,697 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,697 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:11,698 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,698 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:02:11,698 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:02:11,699 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,699 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:11,700 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,700 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:02:11,700 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:02:11,701 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,701 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:11,702 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,702 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:02:11,702 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:02:11,703 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,703 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:11,704 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,704 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:02:11,704 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:02:11,705 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,705 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:11,706 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,706 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:02:11,706 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:02:11,707 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,707 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:11,708 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,708 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:02:11,708 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:02:11,709 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,709 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:02:11,709 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:02:11) method ... +01/30/13 11:02:11,709 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:02:11,709 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:02:11) method ... +01/30/13 11:02:11,710 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:02:11,710 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:11,710 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:11,710 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:11,712 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:11,712 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:02:11,712 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:02:11,712 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:02:11,716 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,716 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,716 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,717 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,718 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,719 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,720 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,721 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,722 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,723 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,724 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,725 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:02:11,729 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:02:11,730 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,730 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:02:11,730 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:11,732 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:11,732 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:11,734 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:02:11,734 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,734 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:11,735 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,735 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:02:11,735 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,735 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:11,736 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,736 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:11,736 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,736 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:11,737 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,737 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:02:11,737 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,737 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:11,738 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,738 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:02:11,738 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,738 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:11,739 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,739 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:02:11,739 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,740 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:02:11,740 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,741 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:02:11,741 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,741 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:11,742 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,742 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:02:11,742 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,742 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:11,743 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,743 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:02:11,743 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,743 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:02:11,744 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,744 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:02:11,745 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,745 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:02:11,746 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,746 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:02:11,747 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,747 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:02:11,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,748 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:02:11,748 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,748 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:02:11,749 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,749 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:02:11,749 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,749 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:02:11,750 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,750 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:02:11,751 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,751 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:02:11,751 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,752 [1520] DEBUG index - Entering getTabid(Invoice) method ... +01/30/13 11:02:11,752 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,752 [1520] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/30/13 11:02:11,753 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,753 [1520] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:11,753 [1520] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/30/13 11:02:11,753 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:11,758 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/30/13 11:02:11,759 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,760 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/30/13 11:02:11,761 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,762 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/30/13 11:02:11,763 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,763 [1520] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/30/13 11:02:11,764 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,765 [1520] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/30/13 11:02:11,766 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,766 [1520] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/30/13 11:02:11,767 [1520] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/30/13 11:02:11,769 [1520] DEBUG index - Entering getTabid(Home) method ... +01/30/13 11:02:11,769 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:11,769 [1520] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/30/13 11:02:11,769 [1520] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/30/13 11:02:11,774 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/30/13 11:02:11,785 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,785 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,785 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:11,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:11,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,787 [1520] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/30/13 11:02:11,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:11,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,787 [1520] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/30/13 11:02:11,787 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,787 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,788 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:11,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,788 [1520] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/30/13 11:02:11,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:11,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,788 [1520] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/30/13 11:02:11,788 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:11,788 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,789 [1520] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/30/13 11:02:11,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:11,789 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,789 [1520] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/30/13 11:02:11,789 [1520] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/30/13 11:02:11,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,790 [1520] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/30/13 11:02:11,790 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:11,790 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,790 [1520] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/30/13 11:02:11,790 [1520] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/30/13 11:02:11,791 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,791 [1520] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/30/13 11:02:11,795 [1520] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/30/13 11:02:11,795 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,796 [1520] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/30/13 11:02:11,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/30/13 11:02:11,796 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,796 [1520] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/30/13 11:02:11,796 [1520] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/30/13 11:02:11,797 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,797 [1520] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/30/13 11:02:11,797 [1520] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/30/13 11:02:11,798 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,798 [1520] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/30/13 11:02:11,798 [1520] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/30/13 11:02:11,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,799 [1520] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/30/13 11:02:11,799 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:11,799 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,799 [1520] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/30/13 11:02:11,799 [1520] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/30/13 11:02:11,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,800 [1520] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/30/13 11:02:11,800 [1520] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/30/13 11:02:11,800 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,800 [1520] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/30/13 11:02:11,801 [1520] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/30/13 11:02:11,801 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,801 [1520] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/30/13 11:02:11,802 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:11,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,802 [1520] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/30/13 11:02:11,802 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:11,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,802 [1520] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/30/13 11:02:11,802 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:11,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,802 [1520] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/30/13 11:02:11,802 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:11,802 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,802 [1520] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/30/13 11:02:11,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:11,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,803 [1520] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/30/13 11:02:11,803 [1520] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/30/13 11:02:11,803 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,804 [1520] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/30/13 11:02:11,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:11,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,804 [1520] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/30/13 11:02:11,804 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:11,804 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,804 [1520] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/30/13 11:02:11,804 [1520] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/30/13 11:02:11,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,805 [1520] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/30/13 11:02:11,805 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:11,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,805 [1520] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/30/13 11:02:11,805 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:11,805 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,806 [1520] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/30/13 11:02:11,806 [1520] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/30/13 11:02:11,806 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,806 [1520] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/30/13 11:02:11,807 [1520] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/30/13 11:02:11,807 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,807 [1520] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/30/13 11:02:11,807 [1520] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/30/13 11:02:11,808 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,808 [1520] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/30/13 11:02:11,809 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,809 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,809 [1520] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/30/13 11:02:11,809 [1520] DEBUG index - Entering isPermitted(Accounts,MailerExport,) method ... +01/30/13 11:02:11,810 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:11,831 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,831 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,832 [1520] DEBUG index - query being executed : SELECT columnname,fieldlabel,uitype FROM vtiger_field WHERE tablename='vtiger_contactscf' and vtiger_field.presence in (0,2) +01/30/13 11:02:11,838 [1520] DEBUG index - query being executed : SELECT fieldid, columnname, fieldlabel FROM vtiger_field WHERE tablename='vtiger_contactdetails' AND uitype='56' and vtiger_field.presence in (0,2) +01/30/13 11:02:11,843 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,843 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,843 [1520] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/30/13 11:02:11,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,844 [1520] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/30/13 11:02:11,844 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,844 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,845 [1520] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/30/13 11:02:11,845 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:11,845 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,845 [1520] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/30/13 11:02:11,930 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:11,930 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:11,930 [1520] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/30/13 11:02:11,947 [1520] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/30/13 11:02:11,948 [1520] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/30/13 11:02:11,950 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:24,585 [1520] INFO VT - PearDatabase ->ADODB disconnect +01/30/13 11:02:24,791 [1520] DEBUG VT - Entering set_default_config(Array) method ... +01/30/13 11:02:24,791 [1520] DEBUG VT - Exiting set_default_config method ... +01/30/13 11:02:24,791 [1520] DEBUG index - ****Starting for new session +01/30/13 11:02:24,793 [1520] DEBUG index - We have an authenticated user id: 1 +01/30/13 11:02:24,793 [1520] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/30/13 11:02:24,793 [1520] INFO index - About to take action index +01/30/13 11:02:24,793 [1520] DEBUG index - in index +01/30/13 11:02:24,793 [1520] INFO index - current page is modules/Accounts/index.php +01/30/13 11:02:24,793 [1520] INFO index - current module is Accounts +01/30/13 11:02:24,869 [1520] DEBUG user - Entering Users() method ... +01/30/13 11:02:24,869 [1520] DEBUG index - Entering getColumnFields(Users) method ... +01/30/13 11:02:24,869 [1520] DEBUG index - in getColumnFields Users +01/30/13 11:02:24,869 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:24,870 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:24,870 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:24,870 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:24,871 [1520] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/30/13 11:02:24,871 [1520] DEBUG index - Prepared sql query parameters : [29] +01/30/13 11:02:24,881 [1520] DEBUG index - Entering getTabid(Users) method ... +01/30/13 11:02:24,882 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:24,882 [1520] DEBUG index - Exiting getColumnFields method ... +01/30/13 11:02:24,882 [1520] DEBUG user - Exiting Users() method ... +01/30/13 11:02:24,882 [1520] DEBUG index - Entering getPermittedModuleNames() method ... +01/30/13 11:02:24,883 [1520] DEBUG index - Entering getTabModuleName(1) method ... +01/30/13 11:02:24,884 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,884 [1520] DEBUG index - Entering getTabModuleName(2) method ... +01/30/13 11:02:24,885 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,885 [1520] DEBUG index - Entering getTabModuleName(3) method ... +01/30/13 11:02:24,886 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,886 [1520] DEBUG index - Entering getTabModuleName(4) method ... +01/30/13 11:02:24,887 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,887 [1520] DEBUG index - Entering getTabModuleName(6) method ... +01/30/13 11:02:24,888 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,888 [1520] DEBUG index - Entering getTabModuleName(7) method ... +01/30/13 11:02:24,889 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,889 [1520] DEBUG index - Entering getTabModuleName(8) method ... +01/30/13 11:02:24,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,890 [1520] DEBUG index - Entering getTabModuleName(9) method ... +01/30/13 11:02:24,890 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,891 [1520] DEBUG index - Entering getTabModuleName(10) method ... +01/30/13 11:02:24,891 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,891 [1520] DEBUG index - Entering getTabModuleName(13) method ... +01/30/13 11:02:24,892 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,892 [1520] DEBUG index - Entering getTabModuleName(14) method ... +01/30/13 11:02:24,893 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,893 [1520] DEBUG index - Entering getTabModuleName(15) method ... +01/30/13 11:02:24,894 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,894 [1520] DEBUG index - Entering getTabModuleName(18) method ... +01/30/13 11:02:24,895 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,895 [1520] DEBUG index - Entering getTabModuleName(19) method ... +01/30/13 11:02:24,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,896 [1520] DEBUG index - Entering getTabModuleName(20) method ... +01/30/13 11:02:24,896 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,897 [1520] DEBUG index - Entering getTabModuleName(21) method ... +01/30/13 11:02:24,897 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,897 [1520] DEBUG index - Entering getTabModuleName(22) method ... +01/30/13 11:02:24,898 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,898 [1520] DEBUG index - Entering getTabModuleName(23) method ... +01/30/13 11:02:24,899 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,899 [1520] DEBUG index - Entering getTabModuleName(24) method ... +01/30/13 11:02:24,900 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,900 [1520] DEBUG index - Entering getTabModuleName(25) method ... +01/30/13 11:02:24,901 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,901 [1520] DEBUG index - Entering getTabModuleName(26) method ... +01/30/13 11:02:24,902 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,902 [1520] DEBUG index - Entering getTabModuleName(27) method ... +01/30/13 11:02:24,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,903 [1520] DEBUG index - Entering getTabModuleName(28) method ... +01/30/13 11:02:24,903 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,904 [1520] DEBUG index - Entering getTabModuleName(29) method ... +01/30/13 11:02:24,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,904 [1520] DEBUG index - Entering getTabModuleName(30) method ... +01/30/13 11:02:24,904 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,905 [1520] DEBUG index - Entering getTabModuleName(31) method ... +01/30/13 11:02:24,905 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,906 [1520] DEBUG index - Entering getTabModuleName(32) method ... +01/30/13 11:02:24,906 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,906 [1520] DEBUG index - Entering getTabModuleName(33) method ... +01/30/13 11:02:24,907 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,907 [1520] DEBUG index - Entering getTabModuleName(34) method ... +01/30/13 11:02:24,908 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,908 [1520] DEBUG index - Entering getTabModuleName(35) method ... +01/30/13 11:02:24,909 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,909 [1520] DEBUG index - Entering getTabModuleName(36) method ... +01/30/13 11:02:24,910 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,910 [1520] DEBUG index - Entering getTabModuleName(37) method ... +01/30/13 11:02:24,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,911 [1520] DEBUG index - Entering getTabModuleName(38) method ... +01/30/13 11:02:24,911 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,912 [1520] DEBUG index - Entering getTabModuleName(39) method ... +01/30/13 11:02:24,912 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,912 [1520] DEBUG index - Entering getTabModuleName(40) method ... +01/30/13 11:02:24,913 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,913 [1520] DEBUG index - Entering getTabModuleName(41) method ... +01/30/13 11:02:24,914 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,914 [1520] DEBUG index - Entering getTabModuleName(42) method ... +01/30/13 11:02:24,915 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,915 [1520] DEBUG index - Entering getTabModuleName(43) method ... +01/30/13 11:02:24,916 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,916 [1520] DEBUG index - Entering getTabModuleName(44) method ... +01/30/13 11:02:24,917 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,917 [1520] DEBUG index - Entering getTabModuleName(45) method ... +01/30/13 11:02:24,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,918 [1520] DEBUG index - Entering getTabModuleName(46) method ... +01/30/13 11:02:24,918 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,918 [1520] DEBUG index - Entering getTabModuleName(47) method ... +01/30/13 11:02:24,919 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,919 [1520] DEBUG index - Entering getTabModuleName(48) method ... +01/30/13 11:02:24,920 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,920 [1520] DEBUG index - Entering getTabModuleName(49) method ... +01/30/13 11:02:24,921 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,921 [1520] DEBUG index - Entering getTabModuleName(50) method ... +01/30/13 11:02:24,922 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,922 [1520] DEBUG index - Entering getTabModuleName(51) method ... +01/30/13 11:02:24,923 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,923 [1520] DEBUG index - Entering getTabModuleName(52) method ... +01/30/13 11:02:24,924 [1520] DEBUG index - Exiting getTabModuleName method ... +01/30/13 11:02:24,924 [1520] DEBUG index - Exiting getPermittedModuleNames method ... +01/30/13 11:02:24,957 [1520] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/30/13 11:02:24,957 [1520] DEBUG index - Prepared sql query parameters : [266,1,Accounts,index,,2013-01-30 11:02:24] +01/30/13 11:02:24,960 [1520] DEBUG index - Current user is: admin +01/30/13 11:02:24,960 [1520] DEBUG index - Current theme is: softed +01/30/13 11:02:24,961 [1520] DEBUG index - current_language is: zh_cn +01/30/13 11:02:24,961 [1520] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/30/13 11:02:24,963 [1520] DEBUG index - Exiting return_app_currency_strings_language method ... +01/30/13 11:02:24,963 [1520] DEBUG index - Entering return_application_language(zh_cn) method ... +01/30/13 11:02:24,966 [1520] DEBUG index - Exiting return_application_language method ... +01/30/13 11:02:24,966 [1520] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/30/13 11:02:24,968 [1520] DEBUG index - Exiting return_app_list_strings_language method ... +01/30/13 11:02:24,968 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:24,968 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:24,969 [1520] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/30/13 11:02:24,969 [1520] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/30/13 11:02:24,969 [1520] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/30/13 11:02:24,969 [1520] DEBUG index - including headers +01/30/13 11:02:24,969 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:24,970 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:24,975 [1520] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/30/13 11:02:24,975 [1520] DEBUG index - Prepared sql query parameters : [Users] +01/30/13 11:02:24,978 [1520] DEBUG index - Entering getHeaderArray() method ... +01/30/13 11:02:24,979 [1520] DEBUG index - Entering getParentTabName(1) method ... +01/30/13 11:02:24,980 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,980 [1520] DEBUG index - Entering getParentTabName(2) method ... +01/30/13 11:02:24,981 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,981 [1520] DEBUG index - Entering getParentTabName(3) method ... +01/30/13 11:02:24,981 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,982 [1520] DEBUG index - Entering getParentTabName(4) method ... +01/30/13 11:02:24,982 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,982 [1520] DEBUG index - Entering getParentTabName(5) method ... +01/30/13 11:02:24,983 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,983 [1520] DEBUG index - Entering getParentTabName(6) method ... +01/30/13 11:02:24,984 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,984 [1520] DEBUG index - Entering getParentTabName(7) method ... +01/30/13 11:02:24,985 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,985 [1520] DEBUG index - Entering getParentTabName(8) method ... +01/30/13 11:02:24,986 [1520] DEBUG index - Exiting getParentTabName method ... +01/30/13 11:02:24,986 [1520] DEBUG index - Exiting getHeaderArray method ... +01/30/13 11:02:24,986 [1520] DEBUG index - Entering getQuickCreateModules() method ... +01/30/13 11:02:24,986 [1520] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/30/13 11:02:24,994 [1520] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/30/13 11:02:24,994 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:24,994 [1520] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/30/13 11:02:24,995 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:24,995 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:24,996 [1520] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/30/13 11:02:24,996 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:24,996 [1520] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/30/13 11:02:24,996 [1520] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/30/13 11:02:24,997 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:24,997 [1520] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/30/13 11:02:24,998 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:24,998 [1520] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/30/13 11:02:24,998 [1520] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/30/13 11:02:24,999 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:24,999 [1520] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/30/13 11:02:25,001 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,001 [1520] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/30/13 11:02:25,001 [1520] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/30/13 11:02:25,002 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,002 [1520] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/30/13 11:02:25,003 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,003 [1520] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/30/13 11:02:25,003 [1520] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/30/13 11:02:25,004 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,004 [1520] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/30/13 11:02:25,004 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,005 [1520] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/30/13 11:02:25,005 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:25,005 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,006 [1520] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/30/13 11:02:25,006 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,006 [1520] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/30/13 11:02:25,007 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:25,007 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,008 [1520] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/30/13 11:02:25,008 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,008 [1520] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/30/13 11:02:25,008 [1520] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/30/13 11:02:25,009 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,009 [1520] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/30/13 11:02:25,010 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,010 [1520] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/30/13 11:02:25,010 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:25,011 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,011 [1520] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/30/13 11:02:25,012 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,012 [1520] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/30/13 11:02:25,012 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:25,013 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,013 [1520] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/30/13 11:02:25,014 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,014 [1520] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/30/13 11:02:25,014 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:25,015 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,015 [1520] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/30/13 11:02:25,016 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,016 [1520] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/30/13 11:02:25,016 [1520] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/30/13 11:02:25,017 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,017 [1520] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/30/13 11:02:25,018 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,018 [1520] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/30/13 11:02:25,018 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:25,019 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,019 [1520] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/30/13 11:02:25,019 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,020 [1520] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/30/13 11:02:25,020 [1520] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/30/13 11:02:25,020 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,021 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/30/13 11:02:25,021 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,021 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/30/13 11:02:25,021 [1520] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/30/13 11:02:25,022 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,022 [1520] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/30/13 11:02:25,023 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,023 [1520] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/30/13 11:02:25,023 [1520] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/30/13 11:02:25,024 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,024 [1520] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/30/13 11:02:25,025 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,026 [1520] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/30/13 11:02:25,026 [1520] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/30/13 11:02:25,026 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,027 [1520] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/30/13 11:02:25,027 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,027 [1520] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/30/13 11:02:25,027 [1520] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/30/13 11:02:25,028 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,028 [1520] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/30/13 11:02:25,029 [1520] DEBUG index - Exiting return_module_language method ... +01/30/13 11:02:25,029 [1520] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/30/13 11:02:25,029 [1520] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/30/13 11:02:25,030 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,030 [1520] DEBUG index - Exiting getQuickCreateModules method ... +01/30/13 11:02:25,030 [1520] DEBUG index - Entering getDisplayDate(2013-01-30 11:02:25) method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Exiting getDisplayDate method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Entering getDisplayTime(2013-01-30 11:02:25) method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Exiting getDisplayTime method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Entering getParentTab() method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Exiting getParentTab method ... +01/30/13 11:02:25,031 [1520] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/30/13 11:02:25,033 [1520] DEBUG index - Exiting getParentTabFromModule method ... +01/30/13 11:02:25,033 [1520] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/30/13 11:02:25,033 [1520] DEBUG index - Exiting get_calc method ... +01/30/13 11:02:25,033 [1520] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/30/13 11:02:25,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,038 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,039 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,040 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,041 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,042 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,043 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,044 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,045 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,046 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,047 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,047 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,047 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/30/13 11:02:25,055 [1520] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/30/13 11:02:25,056 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,056 [1520] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/30/13 11:02:25,056 [1520] DEBUG index - Prepared sql query parameters : [1] +01/30/13 11:02:25,058 [1520] DEBUG index - Entering is_admin(admin) method ... +01/30/13 11:02:25,058 [1520] DEBUG index - Exiting is_admin method ... +01/30/13 11:02:25,060 [1520] DEBUG index - Entering getTabid(Contacts) method ... +01/30/13 11:02:25,060 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,060 [1520] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/30/13 11:02:25,061 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,061 [1520] DEBUG index - Entering getTabid(Leads) method ... +01/30/13 11:02:25,061 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,061 [1520] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/30/13 11:02:25,062 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,062 [1520] DEBUG index - Entering getTabid(Accounts) method ... +01/30/13 11:02:25,062 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,062 [1520] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/30/13 11:02:25,063 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,063 [1520] DEBUG index - Entering getTabid(Potentials) method ... +01/30/13 11:02:25,063 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,064 [1520] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/30/13 11:02:25,064 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,065 [1520] DEBUG index - Entering getTabid(HelpDesk) method ... +01/30/13 11:02:25,065 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,065 [1520] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/30/13 11:02:25,066 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,066 [1520] DEBUG index - Entering getTabid(Faq) method ... +01/30/13 11:02:25,066 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,066 [1520] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/30/13 11:02:25,067 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,067 [1520] DEBUG index - Entering getTabid(Products) method ... +01/30/13 11:02:25,067 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,067 [1520] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/30/13 11:02:25,068 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,068 [1520] DEBUG index - Entering getTabid(Documents) method ... +01/30/13 11:02:25,068 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,068 [1520] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/30/13 11:02:25,069 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,069 [1520] DEBUG index - Entering getTabid(Emails) method ... +01/30/13 11:02:25,069 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,069 [1520] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/30/13 11:02:25,070 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,070 [1520] DEBUG index - Entering getTabid(Events) method ... +01/30/13 11:02:25,071 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,071 [1520] DEBUG index - Entering getTabid(Activities) method ... +01/30/13 11:02:25,072 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,072 [1520] DEBUG index - Entering getTabid(Vendor) method ... +01/30/13 11:02:25,073 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,073 [1520] DEBUG index - Entering getTabid(PriceBook) method ... +01/30/13 11:02:25,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,074 [1520] DEBUG index - Entering getTabid(Quotes) method ... +01/30/13 11:02:25,074 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,074 [1520] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/30/13 11:02:25,075 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,075 [1520] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/30/13 11:02:25,075 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,075 [1520] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/30/13 11:02:25,076 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,076 [1520] DEBUG index - Entering getTabid(SalesOrder) method ... +01/30/13 11:02:25,076 [1520] DEBUG index - Exiting getTabid method ... +01/30/13 11:02:25,076 [1520] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/30/13 11:02:25,077 [1520] DEBUG index - Exiting isPermitted method ... +01/30/13 11:02:25,077 [1520] DEBUG index - Entering getTabid(Invoice) method ... diff --git a/logs/vtigercrm.log.7 b/logs/vtigercrm.log.7 new file mode 100644 index 0000000..38d2276 --- /dev/null +++ b/logs/vtigercrm.log.7 @@ -0,0 +1,38251 @@ +01/18/13 10:57:13,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,981 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:57:13,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,982 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:57:13,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,982 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:57:13,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,983 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:57:13,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,984 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:57:13,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,984 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:57:13,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,985 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:57:13,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,985 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:57:13,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,986 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:57:13,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,986 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:57:13,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,987 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:57:13,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,987 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:57:13,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,988 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:57:13,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,988 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:57:13,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,989 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:57:13,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,989 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:57:13,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,990 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:57:13,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,990 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:57:13,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,991 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:57:13,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,991 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:57:13,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,992 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:57:13,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,992 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:57:13,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,992 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:57:13,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,993 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:57:13,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,993 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:57:13,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,994 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:57:13,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,994 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:57:13,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,995 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:57:13,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,995 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:57:13,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,996 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:57:13,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,996 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:57:13,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,997 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:57:13,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,997 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:57:13,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,998 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:57:13,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,998 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:57:13,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,999 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:57:13,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,999 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:57:13,999 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:13,1000 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:57:13,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,000 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:57:14,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,001 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:57:14,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,001 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:57:14,001 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,002 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:57:14,002 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,002 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:57:14,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,003 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:57:14,003 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,003 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:57:14,042 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 10:57:14,042 [76] DEBUG index - Prepared sql query parameters : [183,1,Accounts,AccountsAjax,,2013-01-18 10:57:14] +01/18/13 10:57:14,046 [76] DEBUG index - Current user is: admin +01/18/13 10:57:14,046 [76] DEBUG index - Current theme is: softed +01/18/13 10:57:14,047 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:57:14,047 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:57:14,049 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:57:14,049 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:57:14,051 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:57:14,052 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:57:14,053 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:57:14,054 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,054 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,055 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:57:14,055 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:57:14,055 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:57:14,055 [76] DEBUG index - skipping headers +01/18/13 10:57:14,056 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:57:14,057 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,065 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,065 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,065 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,066 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,066 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 10:57:14,066 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,067 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,067 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:57:14,067 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,067 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 10:57:14,068 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,068 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:57:14,068 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,068 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:57:14,069 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,069 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 10:57:14,069 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,069 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:57:14,070 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,070 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 10:57:14,070 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,071 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 10:57:14,071 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,071 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,071 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,071 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,071 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,071 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,071 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:57:14,071 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,094 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,094 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,094 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,094 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 10:57:14,094 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,094 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,095 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 10:57:14,095 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 10:57:14,099 [76] DEBUG index - Exiting initSortByField +01/18/13 10:57:14,100 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:57:14,100 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,100 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,101 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,101 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 10:57:14,102 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,102 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:57:14,102 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,102 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 10:57:14,102 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 10:57:14,102 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 10:57:14,103 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 10:57:14,103 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:57:14,103 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 10:57:14,104 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:57:14,104 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:57:14,104 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 10:57:14,104 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 10:57:14,107 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:57:14,107 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:57:14,110 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:57:14,110 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:57:14,113 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:57:14,113 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:57:14,113 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:57:14,113 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:57:14,113 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:57:14,113 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:57:14,114 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 10:57:14,114 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 10:57:14,114 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 10:57:14,114 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 10:57:14,117 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 10:57:14,117 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:57:14,118 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:57:14,118 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 10:57:14,121 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:57:14,121 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:57:14,121 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:57:14,121 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:57:14,121 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:57:14,121 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:57:14,121 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 10:57:14,122 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,122 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:57:14,125 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,125 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,125 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,125 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,126 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,126 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,127 [76] DEBUG index - Entering isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:57:14,127 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 10:57:14,127 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:57:14,139 [76] DEBUG index - Entering when status=0 +01/18/13 10:57:14,139 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 10:57:14,139 [76] DEBUG index - Exiting isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:57:14,139 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,139 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,140 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 10:57:14,140 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,161 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,161 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,161 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 10:57:14,161 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:57:14,164 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 10:57:14,164 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:57:14,166 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 10:57:14,167 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,167 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 10:57:14,168 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 10:57:14,168 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:57:14,168 [76] DEBUG index - Entering when status=0 +01/18/13 10:57:14,168 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:57:14,168 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:57:14,168 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:57:14,169 [76] DEBUG index - Entering when status=0 +01/18/13 10:57:14,169 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:57:14,169 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:57:14,169 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,169 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,169 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:57:14,169 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,174 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,174 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,174 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:57:14,174 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,178 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,178 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 10:57:14,178 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,178 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 10:57:14,178 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,178 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 10:57:14,178 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,179 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 10:57:14,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,179 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 10:57:14,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,179 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 10:57:14,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,179 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 10:57:14,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,179 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 10:57:14,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,180 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 10:57:14,180 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:57:14,184 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 10:57:14,184 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 10:57:14,198 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 10:57:14,202 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:57:14,202 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:57:14,204 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:57:14,205 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:57:14,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,205 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:57:14,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,205 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:57:14,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:57:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:57:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:57:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:57:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:57:14,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,206 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,207 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,207 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,207 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,207 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,207 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:57:14,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,208 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:57:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,208 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:57:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,208 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:57:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,208 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:57:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,208 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:57:14,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,209 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:57:14,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,210 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:57:14,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:57:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:57:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:57:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:57:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:57:14,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,211 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:57:14,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,212 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,213 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,213 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,213 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,213 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,213 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:57:14,213 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 10:57:14,216 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:57:14,217 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,217 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 10:57:14,221 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:57:14,221 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:57:14,254 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,254 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 10:57:14,256 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,257 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 10:57:14,259 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,259 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 10:57:14,267 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,267 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 10:57:14,269 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:57:14,269 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:57:14,321 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,321 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 10:57:14,323 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,323 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 10:57:14,325 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,325 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 10:57:14,327 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,327 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 10:57:14,329 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,329 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 10:57:14,330 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,331 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 10:57:14,332 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,332 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 10:57:14,334 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,334 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 10:57:14,336 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,336 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 10:57:14,338 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:57:14,338 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 10:57:14,375 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,375 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 10:57:14,378 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,378 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 10:57:14,380 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,380 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 10:57:14,388 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,389 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 10:57:14,391 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 10:57:14,391 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:57:14,393 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,393 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 10:57:14,395 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,396 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 10:57:14,398 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:57:14,398 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 10:57:14,434 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,434 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 10:57:14,436 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,436 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 10:57:14,438 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,439 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 10:57:14,440 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,441 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 10:57:14,444 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,444 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 10:57:14,446 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,446 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 10:57:14,448 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,448 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 10:57:14,451 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,452 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 10:57:14,454 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,454 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 10:57:14,456 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,456 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 10:57:14,458 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,458 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 10:57:14,459 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:57:14,459 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 10:57:14,461 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:57:14,464 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:57:14,464 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:57:14,466 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:57:14,467 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:57:14,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,468 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 10:57:14,468 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:57:14,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,468 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 10:57:14,469 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:57:14,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,469 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 10:57:14,469 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:57:14,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,470 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 10:57:14,470 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:57:14,470 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,470 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 10:57:14,471 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:57:14,471 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,471 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 10:57:14,471 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:57:14,471 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,471 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 10:57:14,472 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:57:14,472 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,472 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 10:57:14,472 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:57:14,473 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,473 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 10:57:14,473 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:57:14,473 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,473 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 10:57:14,473 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:57:14,474 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,474 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 10:57:14,474 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:57:14,474 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,474 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 10:57:14,474 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:57:14,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,475 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 10:57:14,475 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:57:14,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,475 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 10:57:14,475 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:57:14,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,476 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 10:57:14,476 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:57:14,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,476 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 10:57:14,476 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:57:14,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,477 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 10:57:14,477 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:57:14,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,477 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 10:57:14,478 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:57:14,478 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,478 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 10:57:14,479 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:57:14,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,479 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 10:57:14,479 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,479 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,479 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,479 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:57:14,479 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:57:14,480 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,480 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 10:57:14,480 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:57:14,480 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,481 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 10:57:14,481 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:57:14,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,481 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 10:57:14,481 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:57:14,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,482 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 10:57:14,482 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:57:14,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,483 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 10:57:14,483 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:57:14,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,483 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 10:57:14,483 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:57:14,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,484 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 10:57:14,484 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:57:14,484 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,484 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 10:57:14,484 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:57:14,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,485 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 10:57:14,485 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:57:14,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,485 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 10:57:14,485 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:57:14,486 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,486 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 10:57:14,486 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:57:14,486 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,486 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 10:57:14,486 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:57:14,486 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,486 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 10:57:14,487 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:57:14,487 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,487 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 10:57:14,487 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:57:14,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,488 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 10:57:14,488 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:57:14,489 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,489 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 10:57:14,489 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:57:14,489 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,489 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 10:57:14,489 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:57:14,490 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,490 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 10:57:14,490 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:57:14,491 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,491 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 10:57:14,491 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:57:14,491 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,491 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 10:57:14,491 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:57:14,492 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,492 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 10:57:14,492 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:57:14,492 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,492 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 10:57:14,492 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:57:14,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,493 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 10:57:14,493 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:57:14,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,493 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 10:57:14,493 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:57:14,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,494 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 10:57:14,494 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:57:14,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,494 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 10:57:14,494 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:57:14,495 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,495 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 10:57:14,495 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:57:14,495 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,495 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 10:57:14,495 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:57:14,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,496 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 10:57:14,496 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:57:14,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,496 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 10:57:14,496 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:57:14,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,497 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 10:57:14,497 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:57:14,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,497 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 10:57:14,497 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:57:14,498 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,498 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 10:57:14,498 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:57:14,498 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,498 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 10:57:14,499 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:57:14,499 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:57:14,541 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:57:14,541 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 10:57:14,544 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:57:14,544 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:57:14,544 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 10:57:14,544 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:57:14,550 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 10:57:14,550 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:57:14,575 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 10:57:14,575 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:57:14,582 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:57:14,582 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:57:14,584 [76] DEBUG user - Entering Users() method ... +01/18/13 10:57:14,584 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:57:14,584 [76] DEBUG index - in getColumnFields Users +01/18/13 10:57:14,585 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:14,585 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,585 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,585 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:57:14,585 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:14,585 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,585 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:14,585 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,586 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:57:14,586 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:57:14,588 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 10:57:14,588 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:57:14,608 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,608 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,608 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,608 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,608 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,609 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,609 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,609 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,609 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,609 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,609 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,609 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,609 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,609 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,610 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,610 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,610 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,610 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,610 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,610 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,610 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,610 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,611 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,611 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,611 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,611 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,611 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,611 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,611 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,611 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,611 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,612 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,612 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,612 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,612 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,612 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,612 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,612 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,612 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,612 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,613 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,614 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE 'V%') ) AND vtiger_account.accountid > 0 +01/18/13 10:57:14,617 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND (( vtiger_account.accountname LIKE 'V%') ) AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 10:57:14,623 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,623 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,623 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,624 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,625 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 10:57:14,625 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 10:57:14,626 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,626 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,626 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,626 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,626 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,627 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,627 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,627 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:57:14,627 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,628 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:57:14,628 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,628 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:57:14,628 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,628 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:57:14,628 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,629 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:57:14,629 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,629 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:57:14,629 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,630 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,630 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,630 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,630 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 10:57:14,630 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 10:57:14,631 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:57:14,631 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:57:14,633 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?) +01/18/13 10:57:14,633 [76] DEBUG index - Prepared sql query parameters : [1,1,1] +01/18/13 10:57:14,636 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 10:57:14,636 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,636 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 10:57:14,637 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:57:14,639 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,639 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,639 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,640 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,640 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,640 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,640 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,641 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,641 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,641 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,642 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,642 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,642 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,643 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,643 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,643 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,643 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,644 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,644 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,644 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,644 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,645 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,645 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,645 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,645 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,646 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,646 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,646 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,650 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,650 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,650 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,651 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,651 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,651 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,651 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:57:14,652 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:57:14,652 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,652 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,652 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,652 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,653 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,660 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,660 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,660 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,660 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,660 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,660 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,660 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,661 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:57:14,661 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:57:14,661 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 10:57:14,663 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,663 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,663 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,664 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,664 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,665 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,665 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,665 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,666 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,666 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,666 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,666 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,666 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,667 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,667 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,667 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,667 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,668 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,668 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,668 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,668 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,669 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,669 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,669 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,670 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,670 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,670 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,671 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,674 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,674 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,675 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,675 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,676 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,676 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,676 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:57:14,676 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:57:14,676 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,677 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,677 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,677 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,677 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,684 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,684 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,684 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,684 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,685 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,685 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,685 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:57:14,685 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:57:14,685 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 10:57:14,701 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,702 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,702 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,703 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,703 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,703 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,703 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,704 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,704 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,704 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,704 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,704 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,705 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,705 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,705 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,706 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,706 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,706 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,707 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,707 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,707 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,707 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,708 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,708 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,708 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,708 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,709 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,709 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:57:14,709 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,713 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,713 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,713 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,714 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,714 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,714 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,714 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:57:14,714 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:57:14,715 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,715 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:57:14,715 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:57:14,715 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:57:14,716 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:57:14,722 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:57:14,723 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:57:14,723 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,723 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,723 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:14,723 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,723 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,723 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:57:14,724 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:57:14,724 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 10:57:14,726 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,726 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,727 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:57:14,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,727 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:57:14,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,727 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:57:14,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,727 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:57:14,728 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,728 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:57:14,728 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,728 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:57:14,728 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 10:57:14,728 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 10:57:14,729 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,729 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:57:14,729 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,729 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,731 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,731 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,731 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,731 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,731 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,731 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:57:14,732 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,732 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,733 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,733 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,734 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,734 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,734 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:57:14,734 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,734 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,736 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,736 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,736 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,736 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:57:14,737 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,737 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,738 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,738 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,739 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,739 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,739 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:57:14,739 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,739 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,741 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,741 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,741 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,741 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:57:14,742 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,742 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,744 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,745 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:57:14,745 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,745 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,746 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,747 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,747 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,747 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,747 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,747 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:57:14,747 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,747 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,751 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,752 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,752 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,752 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,752 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,752 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:57:14,752 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,752 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,754 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,754 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,754 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,755 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,755 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,755 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:57:14,755 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,755 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,759 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,759 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,760 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,760 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,760 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:57:14,760 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,760 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,764 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,764 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,764 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,765 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,765 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:57:14,765 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,765 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,767 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,767 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,768 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,768 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,768 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:57:14,768 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,768 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,770 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,770 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,771 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,771 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:57:14,771 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,771 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,773 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,773 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,773 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,774 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:57:14,774 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,774 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,776 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,776 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,776 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,776 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,777 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:57:14,777 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,777 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,779 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,779 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,779 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,779 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:57:14,779 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,779 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,782 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,782 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,782 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,782 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,782 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,782 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:57:14,782 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,783 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,789 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,789 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,789 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,789 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,790 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,790 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:57:14,790 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,790 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,792 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,792 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,792 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,793 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,793 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,793 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:57:14,793 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,793 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,795 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,795 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,795 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,795 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,795 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,795 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 10:57:14,795 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,796 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,799 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,799 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,799 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,800 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,800 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,800 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 10:57:14,800 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,800 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,802 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,802 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,802 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,802 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,802 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,802 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:57:14,802 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,803 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:57:14,804 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,804 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,805 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:57:14,805 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,805 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,805 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:57:14,805 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,805 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,807 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,807 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,807 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,807 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,807 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,807 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:57:14,808 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,808 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,811 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,812 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,812 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,812 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,812 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,812 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:57:14,812 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,812 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,814 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,815 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,815 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,815 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,815 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,815 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:57:14,815 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,816 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,817 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,818 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,818 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,818 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:57:14,818 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,818 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,820 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,820 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,821 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,821 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:57:14,821 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,821 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,823 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,823 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,823 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:57:14,823 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,823 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,825 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,825 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,826 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,826 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:57:14,826 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,826 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,828 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,828 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,828 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,828 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:57:14,828 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,828 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,832 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,832 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,833 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,833 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,833 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,833 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:57:14,833 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,833 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,835 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,835 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,835 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,835 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,835 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,836 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:57:14,836 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,836 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,839 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,839 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,839 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,839 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:57:14,840 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,840 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:57:14,841 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,842 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:57:14,842 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,842 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:57:14,842 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:57:14,842 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 10:57:14,844 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,844 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,844 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 10:57:14,845 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 10:57:14,845 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 10:57:14,845 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,845 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,845 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 10:57:14,845 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 10:57:14,845 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 10:57:14,854 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 10:57:14,854 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:57:14,854 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 10:57:14,854 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:57:14,859 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:57:14,859 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:57:14,859 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:57:14,859 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,859 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,859 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 10:57:14,859 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:57:14,871 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:57:14,871 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:57:14,871 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,876 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,876 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,876 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:57:14,876 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,876 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,876 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:57:14,876 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,876 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,877 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:57:14,877 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,877 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,877 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:57:14,877 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,877 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,877 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:57:14,877 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,877 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,878 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:57:14,878 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,878 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:57:14,878 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,878 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:57:14,878 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,878 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:57:14,879 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,879 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,879 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:57:14,879 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,879 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,879 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:57:14,879 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,879 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,879 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:57:14,880 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,880 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:57:14,880 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,880 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:57:14,880 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,880 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:57:14,880 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,881 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:57:14,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,881 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:57:14,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,881 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:57:14,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,882 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:57:14,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,882 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:57:14,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,882 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:57:14,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,882 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:57:14,883 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,883 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,883 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:57:14,883 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,883 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,883 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:57:14,883 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,883 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,883 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:57:14,884 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,884 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:57:14,884 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,884 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:57:14,884 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,884 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:57:14,884 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,885 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:57:14,885 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,885 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:57:14,885 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,885 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:57:14,885 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,886 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:57:14,886 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,886 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,886 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:57:14,886 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,886 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,886 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 10:57:14,886 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 10:57:14,888 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:57:14,888 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:57:14,889 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:57:14,889 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:57:14,889 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:57:14,889 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:57:14,889 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:57:14,895 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:57:14,896 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:14,896 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 10:57:14,903 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 10:57:14,903 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 10:57:14,906 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:57:14,906 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:14,906 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 10:57:14,907 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 10:57:14,907 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:57:14,909 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 10:57:14,909 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:57:14,909 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:57:14,915 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:57:14,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,915 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,915 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,915 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:57:14,916 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,916 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,916 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,916 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,916 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,916 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:57:14,917 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:57:14,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:14,917 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,917 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:57:14,917 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:57:14,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:14,917 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 10:57:39,550 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:57:39,697 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:57:39,697 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:57:39,697 [76] DEBUG index - ****Starting for new session +01/18/13 10:57:39,698 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:57:39,698 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 10:57:39,698 [76] INFO index - About to take action CalendarAjax +01/18/13 10:57:39,698 [76] DEBUG index - in CalendarAjax +01/18/13 10:57:39,698 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 10:57:39,698 [76] INFO index - current module is Calendar +01/18/13 10:57:39,752 [76] DEBUG user - Entering Users() method ... +01/18/13 10:57:39,752 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:57:39,752 [76] DEBUG index - in getColumnFields Users +01/18/13 10:57:39,752 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:39,753 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:39,753 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:39,753 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:39,753 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:57:39,753 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:57:39,762 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:57:39,762 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:57:39,762 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:57:39,762 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:57:39,763 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:57:39,764 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:57:39,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,764 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:57:39,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,765 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:57:39,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,765 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:57:39,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,766 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:57:39,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,766 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:57:39,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,767 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:57:39,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,767 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:57:39,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,768 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:57:39,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,768 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:57:39,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,769 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:57:39,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,769 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:57:39,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,770 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:57:39,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,770 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:57:39,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,771 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:57:39,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,771 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:57:39,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,772 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:57:39,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,772 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:57:39,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,773 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:57:39,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,773 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:57:39,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,774 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:57:39,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,774 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:57:39,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,775 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:57:39,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,775 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:57:39,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,775 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:57:39,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,776 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:57:39,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,776 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:57:39,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,777 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:57:39,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,777 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:57:39,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,778 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:57:39,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,778 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:57:39,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,779 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:57:39,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,779 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:57:39,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,779 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:57:39,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,780 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:57:39,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,780 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:57:39,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,781 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:57:39,781 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,781 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:57:39,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,782 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:57:39,782 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,782 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:57:39,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,783 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:57:39,783 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,783 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:57:39,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,784 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:57:39,784 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,784 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:57:39,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,785 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:57:39,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,785 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:57:39,785 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,786 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:57:39,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:57:39,786 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:57:39,786 [76] DEBUG index - Current user is: admin +01/18/13 10:57:39,786 [76] DEBUG index - Current theme is: softed +01/18/13 10:57:39,787 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:57:39,787 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:57:39,788 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:57:39,789 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:57:39,790 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:57:39,791 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:57:39,793 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:57:39,793 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:57:39,794 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:57:39,794 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:57:39,794 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:57:39,794 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:57:39,794 [76] DEBUG index - skipping headers +01/18/13 10:57:39,795 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 10:57:39,796 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:57:39,801 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:57:39,801 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 10:57:39,801 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 10:57:39,802 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 10:57:39,807 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '10:58')) +01/18/13 10:57:39,810 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 10:58:19,926 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:58:20,071 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:58:20,071 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:58:20,072 [76] DEBUG index - ****Starting for new session +01/18/13 10:58:20,072 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:58:20,072 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 10:58:20,072 [76] INFO index - About to take action CalendarAjax +01/18/13 10:58:20,072 [76] DEBUG index - in CalendarAjax +01/18/13 10:58:20,073 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 10:58:20,073 [76] INFO index - current module is Calendar +01/18/13 10:58:20,124 [76] DEBUG user - Entering Users() method ... +01/18/13 10:58:20,124 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:58:20,124 [76] DEBUG index - in getColumnFields Users +01/18/13 10:58:20,124 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:20,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:20,125 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:20,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:20,125 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:58:20,125 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:58:20,138 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:20,138 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:20,138 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:20,138 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:58:20,139 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:58:20,139 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:58:20,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,140 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:58:20,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,140 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:58:20,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,141 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:58:20,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,141 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:20,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,142 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:58:20,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,142 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:58:20,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,143 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:58:20,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,143 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:58:20,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,144 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:58:20,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,144 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:58:20,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,145 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:58:20,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,145 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:58:20,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,146 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:58:20,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,146 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:58:20,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,147 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:58:20,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,147 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:58:20,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,148 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:58:20,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,148 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:58:20,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,149 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:58:20,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,149 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:58:20,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,150 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:58:20,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,150 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:58:20,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,151 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:58:20,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,151 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:58:20,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,151 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:58:20,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,152 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:58:20,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,152 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:58:20,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,153 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:58:20,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,153 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:58:20,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,154 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:58:20,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,154 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:58:20,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,155 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:58:20,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,155 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:58:20,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,156 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:58:20,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,156 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:58:20,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,156 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:58:20,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,157 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:58:20,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,158 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:58:20,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,158 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:58:20,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,159 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:58:20,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,159 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:58:20,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,159 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:58:20,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,160 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:58:20,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,160 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:58:20,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,161 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:58:20,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,161 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:58:20,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:20,162 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:58:20,162 [76] DEBUG index - Current user is: admin +01/18/13 10:58:20,162 [76] DEBUG index - Current theme is: softed +01/18/13 10:58:20,162 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:58:20,162 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:58:20,164 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:58:20,164 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:58:20,166 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:58:20,167 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:58:20,168 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:58:20,169 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:58:20,169 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:20,170 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:58:20,170 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:58:20,170 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:58:20,170 [76] DEBUG index - skipping headers +01/18/13 10:58:20,171 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 10:58:20,172 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:20,177 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:58:20,177 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 10:58:20,178 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 10:58:20,178 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 10:58:20,182 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '10:59')) +01/18/13 10:58:20,185 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 10:58:40,234 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:58:40,377 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:58:40,377 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:58:40,377 [76] DEBUG index - ****Starting for new session +01/18/13 10:58:40,378 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:58:40,378 [76] DEBUG index - array ( + 'advft_criteria' => '[{"groupid":"1","columnname":"vtiger_account:accountname:accountname:Accounts_Account_Name:V","comparator":"e","value":"demovtiger","columncondition":"and"},{"groupid":"1","columnname":"vtiger_account:account_no:account_no:Accounts_Account_No:V","comparator":"c","value":"A","columncondition":""}]', + 'advft_criteria_groups' => '[null,{"groupcondition":""}]', + 'searchtype' => 'advance', + 'query' => 'true', + 'file' => 'index', + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'ajax' => 'true', + 'search' => 'true', +) +01/18/13 10:58:40,378 [76] INFO index - About to take action AccountsAjax +01/18/13 10:58:40,378 [76] DEBUG index - in AccountsAjax +01/18/13 10:58:40,378 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 10:58:40,379 [76] INFO index - current module is Accounts +01/18/13 10:58:40,429 [76] DEBUG user - Entering Users() method ... +01/18/13 10:58:40,430 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:58:40,430 [76] DEBUG index - in getColumnFields Users +01/18/13 10:58:40,430 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,431 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,431 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:58:40,431 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:58:40,440 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,440 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,440 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,440 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:58:40,441 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:58:40,442 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:58:40,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,442 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:58:40,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,443 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:58:40,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,443 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:58:40,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,444 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:40,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,444 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:58:40,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,445 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:58:40,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,445 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:58:40,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,446 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:58:40,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,446 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:58:40,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,447 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:58:40,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,447 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:58:40,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,448 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:58:40,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,448 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:58:40,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,449 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:58:40,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,449 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:58:40,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,450 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:58:40,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,450 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:58:40,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,451 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:58:40,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,451 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:58:40,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,451 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:58:40,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,452 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:58:40,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,452 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:58:40,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,453 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:58:40,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,453 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:58:40,453 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,453 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:58:40,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,454 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:58:40,454 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,454 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:58:40,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,455 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:58:40,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,456 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:58:40,456 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,456 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:58:40,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,457 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:58:40,457 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,457 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:58:40,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,458 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:58:40,458 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,458 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:58:40,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,459 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:58:40,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,459 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:58:40,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,460 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:58:40,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,460 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:58:40,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,461 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:58:40,461 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,461 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:58:40,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,462 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:58:40,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,462 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:58:40,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,463 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:58:40,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,463 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:58:40,463 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,464 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:58:40,464 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,464 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:58:40,464 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,465 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:58:40,473 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 10:58:40,473 [76] DEBUG index - Prepared sql query parameters : [184,1,Accounts,AccountsAjax,,2013-01-18 10:58:40] +01/18/13 10:58:40,477 [76] DEBUG index - Current user is: admin +01/18/13 10:58:40,477 [76] DEBUG index - Current theme is: softed +01/18/13 10:58:40,477 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:58:40,477 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:58:40,479 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:58:40,479 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:58:40,481 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:58:40,481 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:58:40,483 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:58:40,484 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,484 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,484 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:58:40,484 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:58:40,484 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:58:40,485 [76] DEBUG index - skipping headers +01/18/13 10:58:40,486 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:58:40,486 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,493 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:40,493 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:40,493 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:40,494 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:40,494 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 10:58:40,494 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:58:40,494 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,495 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:58:40,495 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,495 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 10:58:40,496 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,496 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:58:40,496 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,496 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:58:40,497 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,497 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 10:58:40,497 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,497 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:58:40,498 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,498 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 10:58:40,498 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,498 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 10:58:40,498 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,498 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,499 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,499 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,499 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,499 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,499 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:58:40,499 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:40,506 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,506 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,506 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,506 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 10:58:40,507 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,507 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,507 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 10:58:40,507 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 10:58:40,511 [76] DEBUG index - Exiting initSortByField +01/18/13 10:58:40,511 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:58:40,512 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,512 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:58:40,513 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,513 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 10:58:40,513 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,513 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:58:40,514 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,514 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 10:58:40,514 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 10:58:40,514 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 10:58:40,514 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 10:58:40,515 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:58:40,515 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 10:58:40,515 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:58:40,516 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:58:40,516 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 10:58:40,516 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 10:58:40,521 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:58:40,521 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:58:40,523 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:58:40,524 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:58:40,526 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:58:40,526 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:58:40,526 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:58:40,527 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:58:40,527 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:58:40,527 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:58:40,527 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 10:58:40,527 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 10:58:40,528 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 10:58:40,528 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 10:58:40,530 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 10:58:40,530 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:58:40,531 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:58:40,531 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 10:58:40,533 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:58:40,533 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:58:40,533 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:58:40,533 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:58:40,533 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:58:40,533 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:58:40,534 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 10:58:40,534 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,534 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:58:40,537 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,537 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,537 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,537 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,537 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,537 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,538 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,539 [76] DEBUG index - Entering isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:58:40,539 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 10:58:40,539 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:58:40,544 [76] DEBUG index - Entering when status=0 +01/18/13 10:58:40,545 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 10:58:40,545 [76] DEBUG index - Exiting isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:58:40,545 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,545 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,545 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 10:58:40,545 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:40,556 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,556 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,556 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 10:58:40,556 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:58:40,559 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 10:58:40,559 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:58:40,563 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 10:58:40,564 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,564 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 10:58:40,564 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 10:58:40,564 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:58:40,565 [76] DEBUG index - Entering when status=0 +01/18/13 10:58:40,565 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:58:40,565 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:58:40,565 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:58:40,565 [76] DEBUG index - Entering when status=0 +01/18/13 10:58:40,565 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:58:40,566 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:58:40,566 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,566 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,566 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:58:40,566 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:40,572 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,572 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,572 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:58:40,572 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:40,576 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,576 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,577 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,577 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,577 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,577 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,577 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 10:58:40,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,578 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 10:58:40,578 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,578 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 10:58:40,578 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,578 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 10:58:40,578 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:58:40,583 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 10:58:40,583 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 10:58:40,597 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 10:58:40,601 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:58:40,601 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:58:40,603 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:58:40,604 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:58:40,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,605 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:58:40,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,605 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:58:40,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,605 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:58:40,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,605 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:40,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,605 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:58:40,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,606 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:58:40,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,607 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:58:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,608 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:58:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,609 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:58:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,610 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:58:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,611 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:58:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:40,612 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:58:40,613 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 10:58:40,616 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:58:40,616 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,616 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 10:58:40,620 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:58:40,621 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:58:40,666 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,666 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 10:58:40,668 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,668 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 10:58:40,670 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,670 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 10:58:40,674 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,674 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 10:58:40,679 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:58:40,680 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:58:40,727 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,727 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 10:58:40,735 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,735 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 10:58:40,737 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,737 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 10:58:40,739 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,739 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 10:58:40,741 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,742 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 10:58:40,743 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,743 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 10:58:40,750 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,750 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 10:58:40,752 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,752 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 10:58:40,754 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,754 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 10:58:40,755 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:58:40,756 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 10:58:40,789 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,789 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 10:58:40,791 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,792 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 10:58:40,794 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,794 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 10:58:40,796 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,797 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 10:58:40,798 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 10:58:40,799 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:58:40,803 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,803 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 10:58:40,805 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,805 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 10:58:40,808 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:58:40,808 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 10:58:40,839 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,840 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 10:58:40,842 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,842 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 10:58:40,844 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,844 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 10:58:40,846 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,846 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 10:58:40,850 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,850 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 10:58:40,852 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,853 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 10:58:40,855 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,855 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 10:58:40,857 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,857 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 10:58:40,859 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,859 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 10:58:40,861 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,862 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 10:58:40,864 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,864 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 10:58:40,865 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:58:40,866 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 10:58:40,867 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:58:40,870 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:58:40,870 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:58:40,872 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:58:40,873 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:58:40,874 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,874 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 10:58:40,874 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:58:40,874 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,874 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 10:58:40,875 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:58:40,875 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,875 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 10:58:40,875 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:58:40,875 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,875 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 10:58:40,876 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:58:40,876 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,876 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 10:58:40,876 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:58:40,876 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,876 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 10:58:40,877 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:58:40,877 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,877 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 10:58:40,877 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:58:40,877 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,877 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 10:58:40,878 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:58:40,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,878 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 10:58:40,878 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:58:40,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,879 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 10:58:40,879 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:58:40,879 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,879 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 10:58:40,880 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:58:40,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,880 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 10:58:40,880 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:58:40,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,881 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 10:58:40,881 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:58:40,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,881 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 10:58:40,881 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:58:40,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,882 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 10:58:40,882 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:58:40,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,882 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 10:58:40,882 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:58:40,883 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,883 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 10:58:40,883 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:58:40,883 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,883 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 10:58:40,883 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:58:40,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,884 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 10:58:40,884 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:58:40,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,884 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 10:58:40,884 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,885 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:58:40,885 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,885 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:58:40,885 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:58:40,886 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,886 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 10:58:40,886 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:58:40,886 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,886 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 10:58:40,886 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:58:40,887 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,887 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 10:58:40,887 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:58:40,887 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,887 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 10:58:40,887 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:58:40,888 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,888 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 10:58:40,888 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:58:40,888 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,888 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 10:58:40,888 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:58:40,889 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,889 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 10:58:40,889 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:58:40,889 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,889 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 10:58:40,889 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:58:40,890 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,890 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 10:58:40,890 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:58:40,890 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,890 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 10:58:40,891 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:58:40,891 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,891 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 10:58:40,891 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:58:40,892 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,892 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 10:58:40,892 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:58:40,892 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,892 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 10:58:40,892 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:58:40,892 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,892 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 10:58:40,892 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:58:40,894 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,894 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 10:58:40,894 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:58:40,894 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,894 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 10:58:40,895 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:58:40,895 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,895 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 10:58:40,895 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:58:40,895 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,896 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 10:58:40,896 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:58:40,897 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,897 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 10:58:40,897 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:58:40,897 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,897 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 10:58:40,898 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:58:40,898 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,898 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 10:58:40,898 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:58:40,898 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,899 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 10:58:40,899 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:58:40,899 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,899 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 10:58:40,899 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:58:40,899 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,899 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 10:58:40,900 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:58:40,900 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,900 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 10:58:40,900 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:58:40,900 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,900 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 10:58:40,901 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:58:40,901 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,901 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 10:58:40,901 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:58:40,901 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,901 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 10:58:40,902 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:58:40,902 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,902 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 10:58:40,902 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:58:40,902 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,902 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 10:58:40,902 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:58:40,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,903 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 10:58:40,903 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:58:40,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,903 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 10:58:40,904 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:58:40,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,904 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 10:58:40,904 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:58:40,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,904 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 10:58:40,905 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:58:40,905 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:58:40,949 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:58:40,949 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 10:58:40,952 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:58:40,952 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:58:40,953 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 10:58:40,953 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:58:40,956 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 10:58:40,956 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:58:40,958 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 10:58:40,958 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:58:40,962 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:58:40,962 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:58:40,965 [76] DEBUG user - Entering Users() method ... +01/18/13 10:58:40,965 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:58:40,965 [76] DEBUG index - in getColumnFields Users +01/18/13 10:58:40,965 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,965 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,965 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:58:40,966 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,966 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,966 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:40,966 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,966 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:58:40,966 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:58:40,968 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 10:58:40,968 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:58:40,970 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,970 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,970 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,970 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,971 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,971 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,971 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,971 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,971 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,971 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,972 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,972 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,972 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,972 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,972 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,972 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,972 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,972 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,972 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,973 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,973 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,973 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,973 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,973 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,973 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,973 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,973 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,973 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,973 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,974 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,974 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,974 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,974 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,974 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,974 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,974 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,974 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,975 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,975 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,975 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,975 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:40,975 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:40,975 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,975 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,975 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:40,976 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,976 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,976 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.accountname = 'demovtiger') and ( vtiger_account.account_no LIKE '%A%') )) AND vtiger_account.accountid > 0 +01/18/13 10:58:40,980 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.accountname = 'demovtiger') and ( vtiger_account.account_no LIKE '%A%') )) AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 10:58:40,984 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:40,984 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:40,984 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:40,985 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:40,986 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 10:58:40,986 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 10:58:40,986 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:40,986 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:40,987 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:40,987 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:40,987 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:40,987 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:40,988 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,988 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,988 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:58:40,988 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,988 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,988 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:58:40,989 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,989 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:58:40,989 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,989 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:58:40,989 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,989 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:58:40,989 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,990 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,990 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:58:40,990 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:58:40,990 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:40,990 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:40,991 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:40,991 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 10:58:40,991 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 10:58:40,991 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:58:40,991 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:58:41,008 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 10:58:41,008 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:58:41,011 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 10:58:41,012 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:41,012 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 10:58:41,012 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:58:41,015 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,015 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,015 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,016 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,016 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,016 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,017 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,017 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,017 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,018 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:58:41,018 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,018 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,018 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,019 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,019 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,019 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,019 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,020 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,020 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,020 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,020 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,021 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,021 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,021 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,021 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,022 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,022 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:58:41,023 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:41,025 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,025 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,025 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,026 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,026 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,026 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,026 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:58:41,026 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:58:41,027 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:41,027 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:58:41,027 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:58:41,027 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:58:41,028 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:58:41,033 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:58:41,033 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:58:41,033 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:41,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:41,033 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:41,033 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,034 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,034 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:58:41,034 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:58:41,034 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 10:58:41,038 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,038 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,038 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:58:41,039 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,039 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:58:41,039 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,039 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:58:41,039 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,039 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:58:41,040 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,040 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,040 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:58:41,040 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,040 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,040 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:58:41,040 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 10:58:41,040 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 10:58:41,040 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,041 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,041 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:58:41,041 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,041 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,043 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,043 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,043 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,043 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,043 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,044 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:58:41,044 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,044 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,047 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,047 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,047 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,047 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,047 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,047 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:58:41,048 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,048 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,049 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,050 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,050 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,050 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:58:41,050 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,050 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,054 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,054 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,054 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,055 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,055 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,055 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:58:41,055 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,055 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,057 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,057 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,057 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,058 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:58:41,058 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,058 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,060 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,060 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,060 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,061 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,061 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:58:41,061 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,061 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,063 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,063 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,063 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,064 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,064 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:58:41,064 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,064 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,066 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,066 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,066 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,067 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:58:41,067 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,067 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,069 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,069 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,069 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,069 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,069 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,069 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:58:41,069 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,069 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,071 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,071 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,072 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,072 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,072 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,072 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:58:41,072 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,072 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,079 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,079 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,079 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,079 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,079 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,079 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:58:41,079 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,079 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,083 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,083 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,083 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,083 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,084 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,084 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:58:41,084 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,084 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,089 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,089 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,089 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,089 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,089 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,089 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:58:41,089 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,089 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,092 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,092 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,092 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,092 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,092 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,092 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:58:41,092 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,092 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,094 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,095 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,095 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,095 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,095 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,095 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:58:41,095 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,095 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,097 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,097 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,098 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,098 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,098 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,098 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:58:41,098 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,098 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,100 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,100 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,100 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,100 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,101 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,101 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:58:41,101 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,101 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,103 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,103 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,103 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,104 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:58:41,104 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,104 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,106 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,106 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,106 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,106 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:58:41,106 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,107 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,114 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,114 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,114 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,114 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,114 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,114 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 10:58:41,114 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,115 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,117 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,117 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,117 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,117 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,117 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,117 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 10:58:41,117 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,117 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,122 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,122 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,122 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,123 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,123 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:58:41,123 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,123 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:58:41,125 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,125 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,125 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:58:41,126 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,126 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:58:41,126 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,126 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,128 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,128 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,128 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,128 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,128 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,128 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:58:41,129 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,129 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,131 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,131 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,131 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,131 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,131 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:58:41,131 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,131 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,133 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,134 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,134 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,134 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,134 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,134 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:58:41,134 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,134 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,136 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,136 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,136 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,137 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,137 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,137 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:58:41,137 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,137 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,139 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,139 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,140 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,140 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,140 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,140 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:58:41,140 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,140 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,142 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,142 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,142 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,143 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,143 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,143 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:58:41,143 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,143 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,145 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,145 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,145 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,145 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,145 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,145 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:58:41,145 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,146 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,147 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,148 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,148 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,148 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,148 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,148 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:58:41,148 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,148 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,150 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,150 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,150 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,151 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,151 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:58:41,151 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,151 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,152 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,153 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,153 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,153 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,153 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,153 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:58:41,153 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,153 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,160 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,160 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,160 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,160 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:58:41,160 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,161 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:58:41,165 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,165 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,165 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:58:41,166 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,166 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,166 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:58:41,166 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:58:41,166 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 10:58:41,168 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,168 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,168 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 10:58:41,168 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 10:58:41,169 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 10:58:41,169 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:41,169 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:41,169 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 10:58:41,169 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 10:58:41,169 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 10:58:41,172 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 10:58:41,172 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:58:41,173 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 10:58:41,173 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:58:41,175 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:58:41,175 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:58:41,175 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:58:41,175 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:41,176 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:41,176 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 10:58:41,176 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:58:41,187 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:58:41,188 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:58:41,188 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:41,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,192 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:58:41,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,192 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:58:41,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,193 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:58:41,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,193 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:58:41,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,193 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:58:41,194 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,194 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,194 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:58:41,194 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,194 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,194 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:58:41,194 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,194 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,194 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:58:41,194 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,195 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:58:41,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,195 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:58:41,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,195 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:58:41,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,196 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,196 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:58:41,196 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,196 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,196 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:58:41,196 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,196 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,196 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:58:41,196 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,196 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,197 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:58:41,197 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,197 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:58:41,197 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,197 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:58:41,197 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,197 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:58:41,198 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,198 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:58:41,198 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,198 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:58:41,198 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,198 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:58:41,198 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,199 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:58:41,199 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,199 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:58:41,199 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,199 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:58:41,199 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,200 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:58:41,200 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,200 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:58:41,200 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,200 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:58:41,200 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,200 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:58:41,201 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,201 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:58:41,201 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,201 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:58:41,201 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,201 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:58:41,202 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,202 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:58:41,202 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,202 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:58:41,202 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:41,202 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:41,202 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 10:58:41,202 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 10:58:41,205 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:58:41,205 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:58:41,205 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:58:41,206 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:58:41,206 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:58:41,206 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:58:41,206 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:58:41,215 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:41,215 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:41,215 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 10:58:41,217 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 10:58:41,217 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 10:58:41,222 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:58:41,223 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:41,223 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 10:58:41,223 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 10:58:41,223 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:58:41,229 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 10:58:41,229 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:58:41,229 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:58:41,235 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:41,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:41,236 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,236 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,236 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:58:41,236 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,236 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,236 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:58:41,236 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,237 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,237 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:58:41,237 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:41,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:41,237 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,237 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,237 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:58:41,237 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:58:41,237 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:41,238 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 10:58:44,150 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:58:44,294 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:58:44,294 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:58:44,294 [76] DEBUG index - ****Starting for new session +01/18/13 10:58:44,295 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:58:44,295 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_no', + 'id' => '12', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 10:58:44,295 [76] INFO index - About to take action TooltipAjax +01/18/13 10:58:44,295 [76] DEBUG index - in TooltipAjax +01/18/13 10:58:44,295 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 10:58:44,295 [76] INFO index - current module is Tooltip +01/18/13 10:58:44,347 [76] DEBUG user - Entering Users() method ... +01/18/13 10:58:44,347 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:58:44,347 [76] DEBUG index - in getColumnFields Users +01/18/13 10:58:44,347 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:44,348 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:44,348 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:44,348 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:44,348 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:58:44,348 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:58:44,357 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:58:44,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:44,357 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:58:44,357 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:58:44,358 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:58:44,358 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:58:44,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,359 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:58:44,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,359 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:58:44,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,360 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:58:44,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,360 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:58:44,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,361 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:58:44,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,361 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:58:44,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,362 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:58:44,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,362 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:58:44,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,363 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:58:44,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,363 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:58:44,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,364 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:58:44,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,364 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:58:44,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,365 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:58:44,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,365 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:58:44,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,366 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:58:44,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,366 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:58:44,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,367 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:58:44,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,367 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:58:44,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,368 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:58:44,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,368 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:58:44,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,369 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:58:44,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,369 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:58:44,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,370 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:58:44,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,370 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:58:44,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,370 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:58:44,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,371 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:58:44,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,371 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:58:44,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,372 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:58:44,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,372 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:58:44,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,373 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:58:44,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,373 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:58:44,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,374 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:58:44,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,374 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:58:44,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,375 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:58:44,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,375 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:58:44,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,376 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:58:44,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,376 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:58:44,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,377 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:58:44,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,377 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:58:44,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,378 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:58:44,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,378 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:58:44,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,378 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:58:44,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,379 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:58:44,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,379 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:58:44,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,380 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:58:44,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,380 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:58:44,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:58:44,381 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:58:44,407 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 10:58:44,407 [76] DEBUG index - Prepared sql query parameters : [185,1,Tooltip,TooltipAjax,,2013-01-18 10:58:44] +01/18/13 10:58:44,410 [76] DEBUG index - Current user is: admin +01/18/13 10:58:44,410 [76] DEBUG index - Current theme is: softed +01/18/13 10:58:44,410 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:58:44,410 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:58:44,412 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:58:44,412 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:58:44,414 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:58:44,415 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:58:44,417 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:58:44,417 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 10:58:44,417 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 10:58:44,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:58:44,418 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:58:44,418 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:58:44,418 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:58:44,418 [76] DEBUG index - skipping headers +01/18/13 10:58:44,420 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 10:58:44,420 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:58:44,427 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:58:44,427 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:58:44,427 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 10:58:44,427 [76] DEBUG index - Prepared sql query parameters : [6,account_no] +01/18/13 10:58:44,430 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 10:58:44,430 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 10:59:00,685 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:59:00,829 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:59:00,829 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:59:00,829 [76] DEBUG index - ****Starting for new session +01/18/13 10:59:00,830 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:59:00,830 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 10:59:00,830 [76] INFO index - About to take action CalendarAjax +01/18/13 10:59:00,830 [76] DEBUG index - in CalendarAjax +01/18/13 10:59:00,830 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 10:59:00,830 [76] INFO index - current module is Calendar +01/18/13 10:59:00,880 [76] DEBUG user - Entering Users() method ... +01/18/13 10:59:00,880 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:59:00,880 [76] DEBUG index - in getColumnFields Users +01/18/13 10:59:00,880 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:00,881 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:00,881 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:00,881 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:00,881 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:59:00,881 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:59:00,899 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:00,899 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:00,900 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:00,900 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:59:00,900 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:59:00,901 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:59:00,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,901 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:59:00,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,902 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:59:00,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,902 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:59:00,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,903 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:00,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,903 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:59:00,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,904 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:59:00,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,904 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:59:00,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,905 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:59:00,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,905 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:59:00,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,906 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:59:00,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,906 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:59:00,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,907 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:59:00,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,907 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:59:00,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,907 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:59:00,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,908 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:59:00,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,908 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:59:00,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,909 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:59:00,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,909 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:59:00,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,910 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:59:00,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,910 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:59:00,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,911 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:59:00,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,911 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:59:00,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,912 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:59:00,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,912 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:59:00,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,913 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:59:00,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,913 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:59:00,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,914 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:59:00,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,914 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:59:00,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,915 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:59:00,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,915 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:59:00,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,915 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:59:00,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,916 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:59:00,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,916 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:59:00,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,917 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:59:00,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,917 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:59:00,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,918 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:59:00,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,918 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:59:00,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,919 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:59:00,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,919 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:59:00,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,920 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:59:00,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,920 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:59:00,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,920 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:59:00,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,921 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:59:00,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,921 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:59:00,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,922 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:59:00,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,922 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:59:00,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:00,923 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:59:00,923 [76] DEBUG index - Current user is: admin +01/18/13 10:59:00,923 [76] DEBUG index - Current theme is: softed +01/18/13 10:59:00,923 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:59:00,923 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:59:00,925 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:59:00,925 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:59:00,927 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:59:00,927 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:59:00,929 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:59:00,929 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:00,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:00,930 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:59:00,930 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:59:00,930 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:59:00,931 [76] DEBUG index - skipping headers +01/18/13 10:59:00,932 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 10:59:00,932 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:00,937 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:59:00,938 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 10:59:00,938 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 10:59:00,938 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 10:59:00,944 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:00')) +01/18/13 10:59:00,948 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 10:59:17,868 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:59:18,005 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:59:18,006 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:59:18,006 [76] DEBUG index - ****Starting for new session +01/18/13 10:59:18,006 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:59:18,007 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'accountname', + 'id' => '12', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 10:59:18,007 [76] INFO index - About to take action TooltipAjax +01/18/13 10:59:18,007 [76] DEBUG index - in TooltipAjax +01/18/13 10:59:18,007 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 10:59:18,007 [76] INFO index - current module is Tooltip +01/18/13 10:59:18,049 [76] DEBUG user - Entering Users() method ... +01/18/13 10:59:18,049 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:59:18,049 [76] DEBUG index - in getColumnFields Users +01/18/13 10:59:18,050 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:18,050 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:18,050 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:18,050 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:18,051 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:59:18,051 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:59:18,059 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:18,059 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:18,060 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:18,060 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:59:18,060 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:59:18,061 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:59:18,061 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,062 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:59:18,062 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,062 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:59:18,063 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,063 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:59:18,063 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,063 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:18,064 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,064 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:59:18,064 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,064 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:59:18,065 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,065 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:59:18,065 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,065 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:59:18,066 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,066 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:59:18,066 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,066 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:59:18,067 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,067 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:59:18,067 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,068 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:59:18,068 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,068 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:59:18,068 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,069 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:59:18,069 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,069 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:59:18,069 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,070 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:59:18,070 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,070 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:59:18,071 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,071 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:59:18,071 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,071 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:59:18,072 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,072 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:59:18,072 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,072 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:59:18,073 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,073 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:59:18,073 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,073 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:59:18,073 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,073 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:59:18,074 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,074 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:59:18,074 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,074 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:59:18,075 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,075 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:59:18,075 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,075 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:59:18,076 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,076 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:59:18,076 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,076 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:59:18,077 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,077 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:59:18,077 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,077 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:59:18,078 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,078 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:59:18,078 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,079 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:59:18,079 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,079 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:59:18,079 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,080 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:59:18,080 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,080 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:59:18,081 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,081 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:59:18,081 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,081 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:59:18,082 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,082 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:59:18,082 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,082 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:59:18,083 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,083 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:59:18,083 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,084 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:59:18,084 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,084 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:59:18,085 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,085 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:59:18,085 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,085 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:59:18,086 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:18,086 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:59:18,092 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 10:59:18,092 [76] DEBUG index - Prepared sql query parameters : [186,1,Tooltip,TooltipAjax,,2013-01-18 10:59:18] +01/18/13 10:59:18,096 [76] DEBUG index - Current user is: admin +01/18/13 10:59:18,096 [76] DEBUG index - Current theme is: softed +01/18/13 10:59:18,096 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:59:18,096 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:59:18,098 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:59:18,099 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:59:18,101 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:59:18,101 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:59:18,103 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:59:18,103 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 10:59:18,104 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 10:59:18,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:18,104 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:59:18,104 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:59:18,105 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:59:18,105 [76] DEBUG index - skipping headers +01/18/13 10:59:18,106 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 10:59:18,106 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:18,113 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:18,113 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:18,113 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 10:59:18,113 [76] DEBUG index - Prepared sql query parameters : [6,accountname] +01/18/13 10:59:18,116 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 10:59:18,116 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:59:34,392 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:59:34,526 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:59:34,526 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:59:34,527 [76] DEBUG index - ****Starting for new session +01/18/13 10:59:34,527 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:59:34,527 [76] DEBUG index - array ( + 'advft_criteria' => '[{"groupid":"1","columnname":"vtiger_account:accountname:accountname:Accounts_Account_Name:V","comparator":"n","value":"demovtiger","columncondition":"and"},{"groupid":"1","columnname":"vtiger_account:account_no:account_no:Accounts_Account_No:V","comparator":"c","value":"A","columncondition":""}]', + 'advft_criteria_groups' => '[null,{"groupcondition":""}]', + 'searchtype' => 'advance', + 'query' => 'true', + 'file' => 'index', + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'ajax' => 'true', + 'search' => 'true', +) +01/18/13 10:59:34,527 [76] INFO index - About to take action AccountsAjax +01/18/13 10:59:34,527 [76] DEBUG index - in AccountsAjax +01/18/13 10:59:34,528 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 10:59:34,528 [76] INFO index - current module is Accounts +01/18/13 10:59:34,564 [76] DEBUG user - Entering Users() method ... +01/18/13 10:59:34,564 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:59:34,564 [76] DEBUG index - in getColumnFields Users +01/18/13 10:59:34,564 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:34,565 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,565 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:34,565 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,565 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:59:34,566 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:59:34,574 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:34,574 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,575 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:34,575 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:59:34,575 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:59:34,576 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:59:34,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,576 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:59:34,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,577 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:59:34,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,578 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:59:34,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,578 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:34,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,579 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:59:34,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,579 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:59:34,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,580 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:59:34,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,580 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:59:34,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,581 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:59:34,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,581 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:59:34,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,582 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:59:34,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,582 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:59:34,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,583 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:59:34,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,583 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:59:34,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,584 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:59:34,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,584 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:59:34,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,585 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:59:34,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,585 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:59:34,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,586 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:59:34,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,587 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:59:34,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,587 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:59:34,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,588 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:59:34,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,588 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:59:34,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,588 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:59:34,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,589 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:59:34,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,589 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:59:34,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,590 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:59:34,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,590 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:59:34,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,591 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:59:34,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,591 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:59:34,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,592 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:59:34,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,592 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:59:34,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,593 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:59:34,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,593 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:59:34,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,594 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:59:34,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,595 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:59:34,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,595 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:59:34,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,596 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:59:34,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,596 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:59:34,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,597 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:59:34,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,597 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:59:34,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,598 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:59:34,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,598 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:59:34,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,599 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:59:34,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,599 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:59:34,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,600 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:59:34,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,601 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:59:34,610 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 10:59:34,610 [76] DEBUG index - Prepared sql query parameters : [187,1,Accounts,AccountsAjax,,2013-01-18 10:59:34] +01/18/13 10:59:34,614 [76] DEBUG index - Current user is: admin +01/18/13 10:59:34,614 [76] DEBUG index - Current theme is: softed +01/18/13 10:59:34,615 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:59:34,615 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:59:34,617 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:59:34,617 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:59:34,619 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:59:34,619 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:59:34,621 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:59:34,621 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:34,622 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:34,622 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:59:34,622 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:59:34,622 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:59:34,622 [76] DEBUG index - skipping headers +01/18/13 10:59:34,623 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:59:34,624 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,631 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:34,631 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:34,631 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:34,632 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:34,632 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 10:59:34,633 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:34,633 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,633 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 10:59:34,634 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,634 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 10:59:34,634 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,634 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:59:34,635 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,635 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:59:34,635 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,635 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 10:59:34,635 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,636 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:59:34,636 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,636 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 10:59:34,636 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,637 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 10:59:34,637 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:34,637 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:34,637 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,637 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,637 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,637 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,637 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:59:34,637 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:34,645 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,645 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,645 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:34,645 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 10:59:34,645 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,645 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,646 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 10:59:34,646 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 10:59:34,651 [76] DEBUG index - Exiting initSortByField +01/18/13 10:59:34,652 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:34,652 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,652 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:34,653 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,653 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 10:59:34,653 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,654 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 10:59:34,654 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:34,654 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 10:59:34,654 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 10:59:34,654 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 10:59:34,654 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 10:59:34,655 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:59:34,655 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 10:59:34,655 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:59:34,656 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:59:34,656 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 10:59:34,656 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 10:59:34,659 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:59:34,659 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:59:34,663 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:59:34,664 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:59:34,666 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:59:34,666 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:59:34,666 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:59:34,666 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:59:34,666 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:59:34,667 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:59:34,667 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 10:59:34,667 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 10:59:34,667 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 10:59:34,667 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 10:59:34,669 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 10:59:34,669 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 10:59:34,670 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 10:59:34,670 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 10:59:34,673 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:59:34,673 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 10:59:34,674 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 10:59:34,674 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 10:59:34,674 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 10:59:34,674 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 10:59:34,674 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 10:59:34,674 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:34,674 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:59:34,682 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:34,682 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:34,682 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,683 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,683 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:34,683 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,683 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,684 [76] DEBUG index - Entering isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:59:34,684 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 10:59:34,685 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:34,687 [76] DEBUG index - Entering when status=0 +01/18/13 10:59:34,687 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 10:59:34,687 [76] DEBUG index - Exiting isPermittedCustomView(4,AccountsAjax,Accounts) method.... +01/18/13 10:59:34,687 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,687 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,688 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 10:59:34,688 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:34,691 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,691 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,691 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 10:59:34,692 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:34,694 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 10:59:34,694 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:59:34,697 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 10:59:34,698 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:34,698 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 10:59:34,698 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 10:59:34,698 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:59:34,699 [76] DEBUG index - Entering when status=0 +01/18/13 10:59:34,699 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:59:34,699 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 10:59:34,699 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:59:34,699 [76] DEBUG index - Entering when status=0 +01/18/13 10:59:34,699 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 10:59:34,699 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 10:59:34,700 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,700 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,700 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:59:34,700 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:34,702 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:34,702 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,702 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:59:34,702 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:34,705 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:34,705 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 10:59:34,705 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,705 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 10:59:34,705 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,705 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,706 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,706 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,706 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,706 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,706 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 10:59:34,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:34,707 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 10:59:34,707 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:59:34,712 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 10:59:34,712 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 10:59:34,726 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 10:59:34,730 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:59:34,730 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:59:34,732 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:59:34,733 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:59:34,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,733 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:59:34,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:59:34,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:59:34,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:34,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:59:34,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:59:34,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,734 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:59:34,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,735 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:59:34,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,736 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,737 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:59:34,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,738 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:59:34,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,739 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:59:34,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,740 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:59:34,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,741 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:59:34,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,741 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:59:34,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,741 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:59:34,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:34,741 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:59:34,741 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 10:59:34,746 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 10:59:34,746 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:34,746 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 10:59:34,750 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:59:34,750 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:59:34,801 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,801 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 10:59:34,804 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,804 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 10:59:34,806 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,806 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 10:59:34,808 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:34,808 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 10:59:34,810 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:59:34,810 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 10:59:34,858 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,858 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 10:59:34,861 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,861 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 10:59:34,863 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,863 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 10:59:34,865 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,865 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 10:59:34,869 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,870 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 10:59:34,872 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,872 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 10:59:34,874 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,874 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 10:59:34,876 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,876 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 10:59:34,878 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:34,878 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 10:59:34,884 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:59:34,885 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 10:59:34,923 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,923 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 10:59:34,925 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,925 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 10:59:34,927 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,928 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 10:59:34,930 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,930 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 10:59:34,932 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 10:59:34,933 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:59:34,934 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,934 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 10:59:34,939 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:34,939 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 10:59:34,942 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 10:59:34,942 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 10:59:34,978 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,978 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 10:59:34,985 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,985 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 10:59:34,986 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,987 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 10:59:34,989 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,989 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 10:59:34,994 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,994 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 10:59:34,996 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,996 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 10:59:34,998 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:34,998 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 10:59:35,000 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:35,000 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 10:59:35,005 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:35,005 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 10:59:35,007 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:35,007 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 10:59:35,009 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:35,010 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 10:59:35,012 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 10:59:35,012 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 10:59:35,013 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:59:35,016 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:59:35,016 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:59:35,018 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:59:35,019 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:59:35,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,020 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 10:59:35,020 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 10:59:35,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,021 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 10:59:35,021 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:59:35,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,021 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 10:59:35,022 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 10:59:35,022 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,022 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 10:59:35,022 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:59:35,022 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,023 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 10:59:35,023 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 10:59:35,023 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,023 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 10:59:35,023 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:59:35,023 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,024 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 10:59:35,024 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 10:59:35,024 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,024 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 10:59:35,024 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:59:35,025 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,025 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 10:59:35,025 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 10:59:35,025 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,025 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 10:59:35,025 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:59:35,026 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,026 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 10:59:35,026 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 10:59:35,026 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,026 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 10:59:35,026 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:59:35,027 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,027 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 10:59:35,027 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 10:59:35,027 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,027 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 10:59:35,027 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:59:35,028 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,028 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 10:59:35,028 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 10:59:35,028 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,028 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 10:59:35,028 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:35,029 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,029 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 10:59:35,029 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:35,029 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,029 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 10:59:35,029 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:59:35,031 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,031 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 10:59:35,032 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 10:59:35,032 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,032 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 10:59:35,032 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,032 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,032 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,032 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,032 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,032 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 10:59:35,033 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:59:35,033 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,033 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 10:59:35,033 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 10:59:35,034 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,034 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 10:59:35,034 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:59:35,034 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,034 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 10:59:35,034 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 10:59:35,035 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,035 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 10:59:35,035 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:59:35,035 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,035 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 10:59:35,036 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 10:59:35,036 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,036 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 10:59:35,036 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:59:35,036 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,037 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 10:59:35,037 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 10:59:35,037 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,037 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 10:59:35,037 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:59:35,038 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,038 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 10:59:35,038 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 10:59:35,038 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,038 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 10:59:35,038 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:59:35,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,039 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 10:59:35,039 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 10:59:35,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,039 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 10:59:35,039 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:35,039 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,039 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 10:59:35,039 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:35,040 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,040 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 10:59:35,040 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:59:35,041 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,041 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 10:59:35,041 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 10:59:35,041 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,041 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 10:59:35,042 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:59:35,042 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,042 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 10:59:35,042 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 10:59:35,042 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,042 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 10:59:35,043 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:59:35,044 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,044 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 10:59:35,044 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 10:59:35,044 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,044 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 10:59:35,044 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:59:35,045 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,045 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 10:59:35,045 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 10:59:35,045 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,045 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 10:59:35,045 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:59:35,046 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,046 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 10:59:35,046 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 10:59:35,046 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,046 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 10:59:35,046 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:59:35,047 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,047 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 10:59:35,047 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 10:59:35,047 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,047 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 10:59:35,047 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:59:35,048 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,048 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 10:59:35,048 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 10:59:35,048 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,048 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 10:59:35,048 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:59:35,049 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,049 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 10:59:35,049 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 10:59:35,049 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,049 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 10:59:35,049 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:59:35,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,050 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 10:59:35,050 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 10:59:35,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,050 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 10:59:35,050 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:59:35,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,051 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 10:59:35,051 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 10:59:35,051 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,051 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 10:59:35,052 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:59:35,052 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:59:35,086 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 10:59:35,087 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 10:59:35,089 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:59:35,089 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:59:35,089 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 10:59:35,090 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:35,092 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 10:59:35,092 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:35,094 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 10:59:35,095 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:35,099 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 10:59:35,099 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:59:35,103 [76] DEBUG user - Entering Users() method ... +01/18/13 10:59:35,104 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:59:35,104 [76] DEBUG index - in getColumnFields Users +01/18/13 10:59:35,104 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:35,104 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,104 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,104 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:59:35,104 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:35,104 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,104 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:35,105 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,105 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 10:59:35,105 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:59:35,107 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 10:59:35,107 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:59:35,109 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,109 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,109 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,109 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,109 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,110 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,110 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,110 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,110 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,110 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,110 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,110 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,110 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,110 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,111 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,111 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,111 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,111 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,111 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,111 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,111 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,111 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,111 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,111 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,112 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,112 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,112 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,112 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,112 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,112 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,112 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,112 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,113 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,113 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,113 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,113 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,113 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,113 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,113 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,113 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,114 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,114 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,114 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,114 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,114 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,115 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,115 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,115 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.accountname <> 'demovtiger') and ( vtiger_account.account_no LIKE '%A%') )) AND vtiger_account.accountid > 0 +01/18/13 10:59:35,121 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND ( (( vtiger_account.accountname <> 'demovtiger') and ( vtiger_account.account_no LIKE '%A%') )) AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 10:59:35,125 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,125 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,125 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,126 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,127 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 10:59:35,127 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 10:59:35,127 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,128 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,128 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,128 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,128 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,129 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,129 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,129 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,129 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:59:35,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,130 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,130 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:59:35,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,130 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,130 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:59:35,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,130 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,130 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:59:35,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,131 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,131 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:59:35,131 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,131 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,131 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:59:35,131 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,132 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,132 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,132 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,132 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 10:59:35,133 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 10:59:35,133 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 10:59:35,133 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 10:59:35,135 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?) +01/18/13 10:59:35,135 [76] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1] +01/18/13 10:59:35,138 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 10:59:35,139 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,139 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 10:59:35,139 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:59:35,143 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,143 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,143 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,144 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,144 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,145 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,145 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,145 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,146 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,146 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,146 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,146 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,146 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,146 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,147 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,147 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,148 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,148 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,149 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,149 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,149 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,149 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,150 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,150 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,150 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,150 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,151 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,151 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,152 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,154 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,154 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,154 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,155 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,155 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,155 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,155 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,155 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,156 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,156 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,156 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,156 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,157 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,162 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,162 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,162 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,163 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,163 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,163 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,163 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,163 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,163 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,163 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 10:59:35,166 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,166 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,166 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,167 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,167 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,167 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,167 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,168 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,168 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,168 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,168 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,169 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,169 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,169 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,170 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,170 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,170 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,170 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,171 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,171 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,171 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,171 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,172 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,172 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,172 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,173 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,173 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,173 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,174 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,176 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,176 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,176 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,177 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,177 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,177 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,177 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,177 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,178 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,178 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,178 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,178 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,179 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,184 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,184 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,184 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,185 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,185 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,185 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,185 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,185 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,185 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,185 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 10:59:35,192 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,192 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,192 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,194 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,194 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,194 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,194 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,195 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,195 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,196 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,196 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,196 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,197 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,197 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,197 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,197 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,198 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,198 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,198 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,198 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,199 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,199 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,200 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,200 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,200 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,200 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,201 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,203 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,203 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,203 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,204 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,204 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,204 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,204 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,205 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,205 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,205 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,205 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,206 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,211 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,211 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,211 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,211 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,212 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,212 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,212 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,212 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,212 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:35,214 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,215 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,215 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,216 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,216 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,216 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,216 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,217 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,217 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,217 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,217 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,218 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,218 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,218 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,219 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,219 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,219 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,219 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,220 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,220 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,220 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,220 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,221 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,221 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,221 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,221 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,222 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,222 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,223 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,224 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,225 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,225 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,226 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,226 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,226 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,226 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,226 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,227 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,227 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,227 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,227 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,228 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,233 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,233 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,233 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,233 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,233 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,233 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,234 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,234 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,234 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,234 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 10:59:35,236 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,236 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,236 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,237 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,238 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,238 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,238 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,239 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,239 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,239 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,239 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,239 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,239 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,239 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,240 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,241 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,241 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,241 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,241 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,242 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,242 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,242 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,243 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,243 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,243 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,243 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,244 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,244 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,244 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,246 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,246 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,246 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,247 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,248 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,248 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,248 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,248 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,248 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,248 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,248 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,249 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,249 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,255 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,255 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,255 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,255 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,255 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,255 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,255 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,255 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,256 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,256 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 10:59:35,258 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,258 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,258 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,259 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,259 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,259 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,260 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,260 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,261 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,261 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,261 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,261 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,261 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,262 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,262 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,262 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,262 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,263 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,263 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,264 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,264 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,264 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,265 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,265 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,265 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,266 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,266 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,266 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,268 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,268 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,268 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,269 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,269 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,270 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,270 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,270 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,270 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,270 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,270 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,271 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,271 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,277 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,277 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,277 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,277 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,277 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,277 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,278 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,278 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,278 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,278 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 10:59:35,280 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,280 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,281 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,282 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,282 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,282 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,282 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,283 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,283 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,283 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,283 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,283 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,284 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,284 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,284 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,285 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,285 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,285 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,286 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,286 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,286 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,286 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,287 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,287 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,287 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,287 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,288 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,288 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,289 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,290 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,290 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,291 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,291 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,292 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,292 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,292 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,292 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,292 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,293 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,293 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,293 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,293 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,299 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,299 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,299 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,299 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,299 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,299 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,300 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,300 [76] DEBUG index - Prepared sql query parameters : [16] +01/18/13 10:59:35,302 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,302 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,302 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,303 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,303 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,303 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,304 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,304 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,304 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,305 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,305 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,305 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,305 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,305 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,306 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,306 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,306 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,306 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,307 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,307 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,307 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,308 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,308 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,309 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,309 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,309 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,309 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,310 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,310 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,312 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,312 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,312 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,313 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,313 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,313 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,313 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,313 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,314 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,314 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,314 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,314 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,315 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,320 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,320 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,320 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,320 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,321 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,321 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,321 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,321 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,321 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,321 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 10:59:35,326 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,326 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,326 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,327 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,327 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,327 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,327 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,328 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,328 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,328 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,329 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,329 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,329 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,329 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,330 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,330 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,330 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,330 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,331 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,331 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,331 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,331 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,332 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,332 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,332 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,332 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,333 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,333 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 10:59:35,334 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,336 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,336 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,336 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,337 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,337 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 10:59:35,337 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 10:59:35,338 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,338 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 10:59:35,338 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 10:59:35,338 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 10:59:35,339 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 10:59:35,344 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 10:59:35,344 [76] DEBUG index - in getColumnFields Accounts +01/18/13 10:59:35,344 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,344 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,344 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:35,345 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,345 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,345 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 10:59:35,345 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 10:59:35,345 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 10:59:35,348 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,348 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,348 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:59:35,348 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,348 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,349 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:59:35,349 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,349 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,349 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:59:35,349 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,349 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,349 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:59:35,349 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,349 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,349 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:59:35,350 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,350 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,350 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:59:35,350 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 10:59:35,350 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 10:59:35,350 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,350 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,350 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:59:35,350 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,351 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,355 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,355 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,355 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,355 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,355 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,355 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 10:59:35,355 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,355 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,359 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,359 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,359 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,359 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,359 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,359 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:59:35,359 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,360 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,362 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,362 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,362 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,362 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,362 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,362 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:59:35,362 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,362 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,364 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,365 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,365 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,365 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,365 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,365 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:59:35,365 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,365 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,367 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,368 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,368 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,368 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,368 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,368 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:59:35,368 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,368 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,370 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,370 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,370 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,371 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,371 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,371 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:59:35,371 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,371 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,373 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,373 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,373 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,373 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,373 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,373 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:59:35,373 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,373 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,375 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,376 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,376 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,376 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:59:35,376 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,376 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,378 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,378 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,379 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,379 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:59:35,379 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,379 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,383 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,383 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,383 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,383 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:59:35,383 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,383 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,387 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,387 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,388 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,388 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:59:35,388 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,388 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,390 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,390 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,391 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,391 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:59:35,391 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,391 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,396 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,396 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:59:35,396 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,396 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,401 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,401 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:59:35,401 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,401 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,403 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,404 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,404 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,404 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,404 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,404 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:59:35,404 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,404 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,406 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,406 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,406 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,407 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,407 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,407 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:59:35,407 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,407 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,409 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,409 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,409 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,409 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,409 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,410 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:59:35,410 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,410 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,412 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,412 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,412 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,412 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,412 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,412 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:59:35,412 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,413 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,414 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,415 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,415 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,415 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,415 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,415 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:59:35,415 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,415 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,417 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,417 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,418 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 10:59:35,418 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,418 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,420 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,420 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,420 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,420 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,420 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,420 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 10:59:35,420 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,420 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,422 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,422 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,422 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,422 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,423 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,423 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:59:35,423 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,423 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 10:59:35,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,425 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 10:59:35,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,425 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:59:35,425 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,425 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,428 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,428 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,428 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,429 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:59:35,429 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,429 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,431 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,431 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,431 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,431 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:59:35,431 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,432 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,433 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,433 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,434 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,434 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,434 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,434 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:59:35,434 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,434 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,436 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,436 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,436 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,437 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,437 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,437 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:59:35,437 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,437 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,439 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,439 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,439 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,439 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,439 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,440 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:59:35,440 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,440 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,442 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,442 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,442 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,442 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:59:35,442 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,442 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,445 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,445 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,445 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,445 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,445 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,445 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:59:35,445 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,445 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,449 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,449 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,449 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,449 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,449 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,449 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:59:35,449 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,450 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,451 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,451 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,452 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,452 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,452 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,452 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:59:35,452 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,452 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,456 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,456 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,456 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,457 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:59:35,457 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,457 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,460 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,460 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,460 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,460 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,460 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,460 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:59:35,460 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,460 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 10:59:35,462 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,462 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,463 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 10:59:35,463 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,463 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,463 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:59:35,463 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 10:59:35,463 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 10:59:35,465 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,465 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,465 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 10:59:35,465 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 10:59:35,466 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 10:59:35,466 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,466 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,466 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 10:59:35,466 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 10:59:35,466 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 10:59:35,469 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 10:59:35,469 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:59:35,469 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 10:59:35,470 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 10:59:35,472 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:59:35,472 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:59:35,472 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:59:35,472 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,472 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,472 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 10:59:35,473 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 10:59:35,484 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:59:35,484 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:59:35,484 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:35,488 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,488 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 10:59:35,488 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,489 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 10:59:35,489 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,489 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,489 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 10:59:35,489 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,489 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,489 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 10:59:35,489 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,489 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,489 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 10:59:35,490 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,490 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,490 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 10:59:35,490 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,490 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,490 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 10:59:35,490 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,490 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,490 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 10:59:35,491 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,491 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,491 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 10:59:35,491 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,491 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,491 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 10:59:35,491 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,491 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,491 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 10:59:35,491 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,492 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,492 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 10:59:35,492 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,492 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,492 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 10:59:35,492 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,492 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,492 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 10:59:35,492 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,493 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 10:59:35,493 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,493 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 10:59:35,493 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,493 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 10:59:35,493 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,493 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,494 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 10:59:35,494 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,494 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 10:59:35,494 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,494 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 10:59:35,494 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,494 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 10:59:35,495 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,495 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,495 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 10:59:35,495 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,495 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,495 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 10:59:35,495 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,495 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,495 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 10:59:35,495 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,496 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 10:59:35,496 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,496 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 10:59:35,496 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,496 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 10:59:35,496 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,497 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 10:59:35,497 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,497 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 10:59:35,497 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,497 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 10:59:35,497 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,497 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,497 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 10:59:35,498 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,498 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,498 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 10:59:35,498 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,498 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,498 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 10:59:35,498 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,498 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,498 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 10:59:35,499 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 10:59:35,501 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 10:59:35,501 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 10:59:35,501 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 10:59:35,501 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 10:59:35,501 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 10:59:35,501 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 10:59:35,501 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 10:59:35,508 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 10:59:35,508 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:35,508 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 10:59:35,510 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 10:59:35,511 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 10:59:35,513 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 10:59:35,514 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:35,514 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 10:59:35,514 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 10:59:35,515 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 10:59:35,517 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 10:59:35,517 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 10:59:35,517 [76] DEBUG index - Exiting is_admin method ... +01/18/13 10:59:35,523 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:35,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:35,523 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,523 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:59:35,523 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,524 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,524 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,524 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 10:59:35,524 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:35,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:35,524 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,525 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 10:59:35,525 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 10:59:35,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:35,525 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 10:59:41,044 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 10:59:41,178 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 10:59:41,178 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 10:59:41,178 [76] DEBUG index - ****Starting for new session +01/18/13 10:59:41,179 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 10:59:41,179 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 10:59:41,179 [76] INFO index - About to take action CalendarAjax +01/18/13 10:59:41,179 [76] DEBUG index - in CalendarAjax +01/18/13 10:59:41,179 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 10:59:41,179 [76] INFO index - current module is Calendar +01/18/13 10:59:41,216 [76] DEBUG user - Entering Users() method ... +01/18/13 10:59:41,216 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 10:59:41,217 [76] DEBUG index - in getColumnFields Users +01/18/13 10:59:41,217 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:41,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:41,217 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:41,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:41,218 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 10:59:41,218 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 10:59:41,226 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 10:59:41,226 [76] DEBUG index - Exiting getTabid method ... +01/18/13 10:59:41,226 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 10:59:41,227 [76] DEBUG user - Exiting Users() method ... +01/18/13 10:59:41,227 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 10:59:41,228 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 10:59:41,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,228 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 10:59:41,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,229 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 10:59:41,229 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,229 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 10:59:41,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,230 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 10:59:41,230 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,230 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 10:59:41,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,231 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 10:59:41,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,231 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 10:59:41,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,232 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 10:59:41,232 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,232 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 10:59:41,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,233 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 10:59:41,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,233 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 10:59:41,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,234 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 10:59:41,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,234 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 10:59:41,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,235 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 10:59:41,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,235 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 10:59:41,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,236 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 10:59:41,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,236 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 10:59:41,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,237 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 10:59:41,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,237 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 10:59:41,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,238 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 10:59:41,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,238 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 10:59:41,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,239 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 10:59:41,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,239 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 10:59:41,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,239 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 10:59:41,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,240 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 10:59:41,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,240 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 10:59:41,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,241 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 10:59:41,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,241 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 10:59:41,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,242 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 10:59:41,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,242 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 10:59:41,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,243 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 10:59:41,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,243 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 10:59:41,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,244 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 10:59:41,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,244 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 10:59:41,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,245 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 10:59:41,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,245 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 10:59:41,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,246 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 10:59:41,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,246 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 10:59:41,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,247 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 10:59:41,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,247 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 10:59:41,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,248 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 10:59:41,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,248 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 10:59:41,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,249 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 10:59:41,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,249 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 10:59:41,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,250 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 10:59:41,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,250 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 10:59:41,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 10:59:41,251 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 10:59:41,251 [76] DEBUG index - Current user is: admin +01/18/13 10:59:41,251 [76] DEBUG index - Current theme is: softed +01/18/13 10:59:41,251 [76] DEBUG index - current_language is: zh_cn +01/18/13 10:59:41,251 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 10:59:41,253 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 10:59:41,253 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 10:59:41,255 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 10:59:41,255 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 10:59:41,257 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 10:59:41,257 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 10:59:41,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 10:59:41,258 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 10:59:41,259 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 10:59:41,259 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 10:59:41,259 [76] DEBUG index - skipping headers +01/18/13 10:59:41,260 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 10:59:41,260 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 10:59:41,265 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 10:59:41,266 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 10:59:41,266 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 10:59:41,266 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 10:59:41,271 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:00')) +01/18/13 10:59:41,274 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:00:21,358 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:00:21,508 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:00:21,508 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:00:21,508 [76] DEBUG index - ****Starting for new session +01/18/13 11:00:21,509 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:00:21,509 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:00:21,509 [76] INFO index - About to take action CalendarAjax +01/18/13 11:00:21,509 [76] DEBUG index - in CalendarAjax +01/18/13 11:00:21,510 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:00:21,510 [76] INFO index - current module is Calendar +01/18/13 11:00:21,547 [76] DEBUG user - Entering Users() method ... +01/18/13 11:00:21,547 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:00:21,548 [76] DEBUG index - in getColumnFields Users +01/18/13 11:00:21,548 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:21,548 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:21,548 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:21,548 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:21,549 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:00:21,549 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:00:21,557 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:21,557 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:21,557 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:21,557 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:00:21,558 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:00:21,558 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:00:21,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,559 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:00:21,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,560 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:00:21,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,560 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:00:21,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,561 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:21,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,561 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:00:21,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,562 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:00:21,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,562 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:00:21,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,563 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:00:21,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,563 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:00:21,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,564 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:00:21,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,564 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:00:21,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,565 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:00:21,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,565 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:00:21,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,566 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:00:21,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,566 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:00:21,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,567 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:00:21,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,567 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:00:21,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,568 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:00:21,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,568 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:00:21,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,569 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:00:21,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,569 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:00:21,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,570 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:00:21,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,570 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:00:21,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,570 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:00:21,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,571 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:00:21,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,571 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:00:21,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,572 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:00:21,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,572 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:00:21,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,573 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:00:21,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,573 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:00:21,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,574 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:00:21,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,574 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:00:21,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,575 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:00:21,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,575 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:00:21,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,576 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:00:21,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,576 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:00:21,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,577 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:00:21,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,577 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:00:21,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,578 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:00:21,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,578 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:00:21,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,579 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:00:21,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,579 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:00:21,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,580 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:00:21,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,580 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:00:21,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,581 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:00:21,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,581 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:00:21,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:21,582 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:00:21,582 [76] DEBUG index - Current user is: admin +01/18/13 11:00:21,582 [76] DEBUG index - Current theme is: softed +01/18/13 11:00:21,582 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:00:21,582 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:00:21,584 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:00:21,584 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:00:21,586 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:00:21,587 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:00:21,589 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:00:21,589 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:21,590 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:21,590 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:00:21,590 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:00:21,590 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:00:21,590 [76] DEBUG index - skipping headers +01/18/13 11:00:21,591 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:00:21,592 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:21,597 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:00:21,597 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:00:21,597 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:00:21,597 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:00:21,619 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:01')) +01/18/13 11:00:21,623 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:00:39,118 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:00:39,255 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:00:39,255 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:00:39,255 [76] DEBUG index - ****Starting for new session +01/18/13 11:00:39,256 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:00:39,256 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'CustomView', + 'parenttab' => 'Marketing', +) +01/18/13 11:00:39,256 [76] INFO index - About to take action CustomView +01/18/13 11:00:39,256 [76] DEBUG index - in CustomView +01/18/13 11:00:39,256 [76] INFO index - current page is modules/Accounts/CustomView.php +01/18/13 11:00:39,256 [76] INFO index - current module is Accounts +01/18/13 11:00:39,294 [76] DEBUG user - Entering Users() method ... +01/18/13 11:00:39,294 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:00:39,295 [76] DEBUG index - in getColumnFields Users +01/18/13 11:00:39,295 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:39,295 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,295 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:39,296 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,296 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:00:39,296 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:00:39,305 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:39,305 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,305 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:39,305 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:00:39,306 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:00:39,306 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:00:39,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,307 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:00:39,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,308 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:00:39,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,308 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:00:39,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,309 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:39,309 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,309 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:00:39,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,310 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:00:39,310 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,310 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:00:39,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,311 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:00:39,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,311 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:00:39,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,312 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:00:39,312 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,312 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:00:39,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,313 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:00:39,313 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,313 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:00:39,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,314 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:00:39,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,314 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:00:39,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,315 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:00:39,315 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,315 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:00:39,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,316 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:00:39,316 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,316 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:00:39,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,317 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:00:39,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,317 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:00:39,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,318 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:00:39,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,318 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:00:39,318 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,318 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:00:39,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,319 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:00:39,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,319 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:00:39,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,320 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:00:39,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,320 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:00:39,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,321 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:00:39,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,321 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:00:39,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,322 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:00:39,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,322 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:00:39,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,323 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:00:39,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,323 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:00:39,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,324 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:00:39,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,324 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:00:39,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,325 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:00:39,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,325 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:00:39,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,326 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:00:39,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,326 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:00:39,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,327 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:00:39,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,327 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:00:39,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,328 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:00:39,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,328 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:00:39,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,329 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:00:39,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,329 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:00:39,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:39,330 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:00:39,335 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:00:39,335 [76] DEBUG index - Prepared sql query parameters : [188,1,Accounts,CustomView,,2013-01-18 11:00:39] +01/18/13 11:00:39,338 [76] DEBUG index - Current user is: admin +01/18/13 11:00:39,338 [76] DEBUG index - Current theme is: softed +01/18/13 11:00:39,338 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:00:39,338 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:00:39,340 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:00:39,341 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:00:39,343 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:00:39,343 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:00:39,345 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:00:39,345 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,346 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:00:39,346 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:00:39,346 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:00:39,346 [76] DEBUG index - including headers +01/18/13 11:00:39,346 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:39,347 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:39,351 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:00:39,351 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:39,355 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:00:39,356 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:00:39,356 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,356 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:00:39,357 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,357 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:00:39,357 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,357 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:00:39,358 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,358 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:00:39,358 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,358 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:00:39,359 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,359 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:00:39,359 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,359 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:00:39,360 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:39,360 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:00:39,360 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:00:39,360 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:00:39,369 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,369 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,369 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:00:39,369 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:39,370 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,370 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:39,370 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,370 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:00:39,371 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:00:39,371 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,371 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:39,372 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,372 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:00:39,372 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:00:39,373 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,373 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:39,374 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,374 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:00:39,374 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:00:39,375 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,375 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:39,375 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,375 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:00:39,375 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:00:39,376 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,376 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:39,377 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,377 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:00:39,377 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:00:39,377 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,378 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:39,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,378 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:00:39,378 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:00:39,379 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,379 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:00:39,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,379 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:00:39,379 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:00:39,380 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,380 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:39,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,381 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:00:39,381 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:00:39,381 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,381 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:39,382 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,382 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:00:39,382 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:00:39,383 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,383 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:39,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,383 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:00:39,384 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:00:39,384 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,384 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:39,385 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,385 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:00:39,385 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:00:39,385 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,385 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:39,386 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,386 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:00:39,386 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:00:39,387 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,387 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:39,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,387 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:00:39,387 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:00:39,388 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,388 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:39,388 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,389 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:00:39,389 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:00:39,389 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,389 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:39,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,390 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:00:39,390 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:00:39,390 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,390 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:39,391 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,392 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:00:39,392 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:00:39,392 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,392 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:39,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,393 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:00:39,393 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:00:39,394 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,394 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:39,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,394 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:00:39,394 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:00:39,395 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,395 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:00:39,395 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,395 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,395 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,396 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:00:39,396 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:39,396 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:39,397 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:00:39,397 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:00:39,397 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:00:39,401 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,401 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,402 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,402 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,402 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,402 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,402 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,402 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,403 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,403 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,403 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,403 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,403 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,403 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,403 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,404 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,404 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,404 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,404 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,404 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,404 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,404 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,405 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,405 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,405 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,405 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,405 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,405 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,405 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,405 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,406 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,406 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,406 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,406 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,406 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,406 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,406 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,407 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,407 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,407 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,407 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,407 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,407 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,407 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,408 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,408 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,408 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,408 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,408 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,408 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,408 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,408 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,409 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,409 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,409 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,409 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,409 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,409 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,409 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,410 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,410 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,410 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,410 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,410 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,410 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,410 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,410 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:00:39,415 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:00:39,415 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,415 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:00:39,415 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:39,417 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:39,418 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:39,418 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:39,418 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,419 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:00:39,419 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,419 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:00:39,419 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,419 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:00:39,420 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,420 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,420 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,420 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:39,421 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,421 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:00:39,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,421 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:00:39,421 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,421 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:39,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,422 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:00:39,422 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,422 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:39,422 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,422 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:00:39,423 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,423 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:39,423 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,423 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:00:39,423 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,423 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:00:39,423 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,424 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:00:39,424 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,424 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:00:39,424 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,424 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:00:39,425 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,425 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:00:39,425 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,425 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:00:39,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,426 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:00:39,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,426 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:00:39,427 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,427 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:39,427 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,427 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:00:39,427 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,428 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:39,428 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,428 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:00:39,428 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,428 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:39,428 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,428 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:00:39,429 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,429 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:39,429 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,429 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:00:39,429 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,430 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:00:39,430 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:00:39,430 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:39,434 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:00:39,435 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,435 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:00:39,435 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,436 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:00:39,436 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,436 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:00:39,437 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,437 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:00:39,437 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,437 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:00:39,438 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:00:39,440 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:00:39,440 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,441 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:00:39,441 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:00:39,444 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:00:39,454 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,454 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,455 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:39,455 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:39,455 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,456 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:00:39,456 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:39,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,456 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:00:39,456 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,456 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:39,456 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:39,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,457 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:00:39,457 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:39,457 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,457 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:00:39,457 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:39,457 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,457 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:00:39,457 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:39,458 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,458 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:00:39,458 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:00:39,458 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,459 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:00:39,459 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:39,459 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,459 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:00:39,459 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:00:39,459 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,460 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:00:39,462 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:00:39,463 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,463 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:00:39,463 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:00:39,463 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,464 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:00:39,464 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:00:39,464 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,464 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:00:39,464 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:00:39,465 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,465 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:00:39,465 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:00:39,465 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,466 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:00:39,466 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:39,466 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,466 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:00:39,466 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:00:39,466 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,466 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:00:39,467 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:00:39,467 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,467 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:00:39,467 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:00:39,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,468 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:00:39,468 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:39,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,468 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:00:39,468 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:39,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,469 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:00:39,469 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:39,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,469 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:00:39,469 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:39,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,469 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:00:39,469 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:39,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,469 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:00:39,469 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:00:39,470 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,470 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:00:39,470 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:39,470 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,470 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:00:39,470 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:39,471 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,471 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:00:39,471 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:00:39,471 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,471 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:00:39,472 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:39,472 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,472 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:00:39,472 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:39,472 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,472 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:00:39,472 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:00:39,473 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,473 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:00:39,473 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:00:39,474 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,474 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:00:39,474 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:00:39,474 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,474 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:00:39,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,475 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:00:39,475 [76] DEBUG index - Entering isPermitted(Accounts,CustomView,) method ... +01/18/13 11:00:39,476 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:39,478 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 11:00:39,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,501 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:39,501 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:39,503 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,503 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,503 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:39,504 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:00:39,504 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:00:39,504 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,504 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:39,504 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:39,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:39,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:39,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:39,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:39,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,505 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:39,506 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,506 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:39,506 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,506 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:00:39,506 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:39,510 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,511 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,511 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:39,511 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:39,514 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:39,515 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:39,515 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,515 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,515 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,515 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,515 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:00:39,515 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:39,523 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,523 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,524 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:39,524 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,524 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,524 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_field where vtiger_field.tabid in (?) and vtiger_field.block in (?) and vtiger_field.presence in (0,2) and vtiger_field.displaytype in (1,2,3) order by sequence +01/18/13 11:00:39,524 [76] DEBUG index - Prepared sql query parameters : [6,9] +01/18/13 11:00:39,531 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,531 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:39,531 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,531 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,532 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,532 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,532 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,532 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,532 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:39,532 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,533 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:39,533 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,533 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:00:39,533 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:39,538 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:00:39,538 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:00:39,553 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 11:00:39,557 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:00:39,558 [76] DEBUG index - function getTranslatedString(Account No) - translated to (Account No) +01/18/13 11:00:39,558 [76] DEBUG index - function getTranslatedString(Website) - translated to (网站) +01/18/13 11:00:39,558 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:00:39,559 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:00:39,559 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:00:39,559 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (上级单位) +01/18/13 11:00:39,560 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:00:39,560 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工数) +01/18/13 11:00:39,560 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:00:39,561 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它Email) +01/18/13 11:00:39,561 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (所有制) +01/18/13 11:00:39,561 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业) +01/18/13 11:00:39,561 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:00:39,562 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:00:39,562 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (行业编码) +01/18/13 11:00:39,562 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/18/13 11:00:39,563 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:00:39,563 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:00:39,563 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (通知主人) +01/18/13 11:00:39,623 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:00:39,624 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/18/13 11:00:39,624 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:00:39,624 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,624 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,625 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_field where vtiger_field.tabid in (?) and vtiger_field.block in (?) and vtiger_field.presence in (0,2) and vtiger_field.displaytype in (1,2,3) order by sequence +01/18/13 11:00:39,625 [76] DEBUG index - Prepared sql query parameters : [6,11] +01/18/13 11:00:39,629 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (付款地址) +01/18/13 11:00:39,629 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (收货地址) +01/18/13 11:00:39,630 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (付款邮政信箱) +01/18/13 11:00:39,630 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (收货邮政信箱) +01/18/13 11:00:39,630 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (付款城市) +01/18/13 11:00:39,631 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (收货城市) +01/18/13 11:00:39,631 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (付款省份) +01/18/13 11:00:39,631 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (收货省份) +01/18/13 11:00:39,632 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (付款邮政编码) +01/18/13 11:00:39,632 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (收货邮政编码) +01/18/13 11:00:39,632 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (付款国家) +01/18/13 11:00:39,633 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (收货国家) +01/18/13 11:00:39,633 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,633 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,633 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_field where vtiger_field.tabid in (?) and vtiger_field.block in (?) and vtiger_field.presence in (0,2) and vtiger_field.displaytype in (1,2,3) order by sequence +01/18/13 11:00:39,633 [76] DEBUG index - Prepared sql query parameters : [6,12] +01/18/13 11:00:39,637 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:00:39,637 [76] INFO index - CustomView :: Successfully got ColumnsList for the moduleAccounts +01/18/13 11:00:39,638 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,638 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:39,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,639 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,639 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:39,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,639 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:39,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,639 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:39,640 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:39,640 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:00:39,641 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:39,644 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where vtiger_field.tabid=? and vtiger_field.block in (?,?,?) + and vtiger_field.uitype in (5,6,23,70) and vtiger_field.presence in (0,2) order by vtiger_field.sequence +01/18/13 11:00:39,644 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:00:39,649 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,649 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,649 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,649 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,649 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:39,649 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:00:39,649 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,650 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,650 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:39,650 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (创建时间) +01/18/13 11:00:39,661 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,661 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,661 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,662 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,662 [76] DEBUG index - Entering getDisplayDate(2013-01-17 11:00:39) method ... +01/18/13 11:00:39,662 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,662 [76] DEBUG index - Entering getDisplayDate(2013-01-17 11:00:39) method ... +01/18/13 11:00:39,662 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,663 [76] DEBUG index - Entering getDisplayDate(2013-01-19 11:00:39) method ... +01/18/13 11:00:39,663 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,663 [76] DEBUG index - Entering getDisplayDate(2013-01-19 11:00:39) method ... +01/18/13 11:00:39,663 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,663 [76] DEBUG index - Entering getDisplayDate(2013-01-13 11:00:39) method ... +01/18/13 11:00:39,664 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,664 [76] DEBUG index - Entering getDisplayDate(2013-01-19 11:00:39) method ... +01/18/13 11:00:39,664 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,664 [76] DEBUG index - Entering getDisplayDate(2013-01-06 11:00:39) method ... +01/18/13 11:00:39,664 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,664 [76] DEBUG index - Entering getDisplayDate(2013-01-12 11:00:39) method ... +01/18/13 11:00:39,665 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,665 [76] DEBUG index - Entering getDisplayDate(2013-01-20 11:00:39) method ... +01/18/13 11:00:39,665 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,665 [76] DEBUG index - Entering getDisplayDate(2013-01-26 11:00:39) method ... +01/18/13 11:00:39,665 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,665 [76] DEBUG index - Entering getDisplayDate(2013-01-01 11:00:39) method ... +01/18/13 11:00:39,666 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,666 [76] DEBUG index - Entering getDisplayDate(2013-01-31 11:00:39) method ... +01/18/13 11:00:39,666 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,666 [76] DEBUG index - Entering getDisplayDate(2012-12-01 11:00:39) method ... +01/18/13 11:00:39,666 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,666 [76] DEBUG index - Entering getDisplayDate(2012-12-31 11:00:39) method ... +01/18/13 11:00:39,667 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,667 [76] DEBUG index - Entering getDisplayDate(2013-02-01 11:00:39) method ... +01/18/13 11:00:39,667 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,667 [76] DEBUG index - Entering getDisplayDate(2013-02-28 11:00:39) method ... +01/18/13 11:00:39,667 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,668 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,668 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,668 [76] DEBUG index - Entering getDisplayDate(2013-01-24 11:00:39) method ... +01/18/13 11:00:39,668 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,668 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,668 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,669 [76] DEBUG index - Entering getDisplayDate(2013-02-16 11:00:39) method ... +01/18/13 11:00:39,669 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,669 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,669 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,669 [76] DEBUG index - Entering getDisplayDate(2013-03-18 11:00:39) method ... +01/18/13 11:00:39,670 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,670 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,670 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,670 [76] DEBUG index - Entering getDisplayDate(2013-04-17 11:00:39) method ... +01/18/13 11:00:39,670 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,670 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,671 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,671 [76] DEBUG index - Entering getDisplayDate(2013-05-17 11:00:39) method ... +01/18/13 11:00:39,671 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,671 [76] DEBUG index - Entering getDisplayDate(2013-01-12 11:00:39) method ... +01/18/13 11:00:39,671 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,671 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,672 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,672 [76] DEBUG index - Entering getDisplayDate(2012-12-20 11:00:39) method ... +01/18/13 11:00:39,672 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,672 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,672 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,672 [76] DEBUG index - Entering getDisplayDate(2012-11-20 11:00:39) method ... +01/18/13 11:00:39,673 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,673 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,673 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,673 [76] DEBUG index - Entering getDisplayDate(2012-10-21 11:00:39) method ... +01/18/13 11:00:39,673 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,673 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,674 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,674 [76] DEBUG index - Entering getDisplayDate(2012-09-21 11:00:39) method ... +01/18/13 11:00:39,674 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,674 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:39) method ... +01/18/13 11:00:39,674 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,674 [76] DEBUG index - Entering getDisplayDate(2013-01-01 11:00:39) method ... +01/18/13 11:00:39,675 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,675 [76] DEBUG index - Entering getDisplayDate(2013-12-31 11:00:39) method ... +01/18/13 11:00:39,675 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,675 [76] DEBUG index - Entering getDisplayDate(2012-01-01 11:00:39) method ... +01/18/13 11:00:39,675 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,676 [76] DEBUG index - Entering getDisplayDate(2012-12-31 11:00:39) method ... +01/18/13 11:00:39,676 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,676 [76] DEBUG index - Entering getDisplayDate(2014-01-01 11:00:39) method ... +01/18/13 11:00:39,676 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,676 [76] DEBUG index - Entering getDisplayDate(2014-12-31 11:00:39) method ... +01/18/13 11:00:39,677 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,677 [76] DEBUG index - Entering getDisplayDate(2013-04-01 11:00:39) method ... +01/18/13 11:00:39,677 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,677 [76] DEBUG index - Entering getDisplayDate(2013-06-30 11:00:39) method ... +01/18/13 11:00:39,677 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,677 [76] DEBUG index - Entering getDisplayDate(2012-10-01 11:00:39) method ... +01/18/13 11:00:39,678 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,678 [76] DEBUG index - Entering getDisplayDate(2012-12-31 11:00:39) method ... +01/18/13 11:00:39,678 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,678 [76] DEBUG index - Entering getDisplayDate(2013-01-01 11:00:39) method ... +01/18/13 11:00:39,678 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,678 [76] DEBUG index - Entering getDisplayDate(2013-03-31 11:00:39) method ... +01/18/13 11:00:39,679 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:39,679 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,680 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,680 [76] DEBUG index - function getTranslatedString(账号信息) - translated to (账号信息) +01/18/13 11:00:39,680 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,680 [76] DEBUG index - function getTranslatedString(地址信息) - translated to (地址信息) +01/18/13 11:00:39,680 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,680 [76] DEBUG index - function getTranslatedString(描述信息) - translated to (描述信息) +01/18/13 11:00:39,743 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,743 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,743 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:00:39,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,744 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:00:39,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,744 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:00:39,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,744 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:00:39,745 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,745 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:00:39,745 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,745 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:00:39,745 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,745 [76] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/18/13 11:00:39,745 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:39,746 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:39,746 [76] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/18/13 11:00:39,746 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:00:39,746 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:00:39,747 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,404 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:00:53,542 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:00:53,542 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:00:53,542 [76] DEBUG index - ****Starting for new session +01/18/13 11:00:53,543 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:00:53,543 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/18/13 11:00:53,543 [76] INFO index - About to take action index +01/18/13 11:00:53,543 [76] DEBUG index - in index +01/18/13 11:00:53,543 [76] INFO index - current page is modules/Accounts/index.php +01/18/13 11:00:53,543 [76] INFO index - current module is Accounts +01/18/13 11:00:53,580 [76] DEBUG user - Entering Users() method ... +01/18/13 11:00:53,580 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:00:53,581 [76] DEBUG index - in getColumnFields Users +01/18/13 11:00:53,581 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:53,581 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,581 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:53,582 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,582 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:00:53,582 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:00:53,594 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:53,595 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,595 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:53,595 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:00:53,595 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:00:53,596 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:00:53,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,597 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:00:53,597 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,597 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:00:53,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,598 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:00:53,598 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,598 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:53,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,599 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:00:53,599 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,599 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:00:53,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,600 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:00:53,600 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,600 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:00:53,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,601 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:00:53,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,602 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:00:53,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,602 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:00:53,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,603 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:00:53,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,603 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:00:53,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,604 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:00:53,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,604 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:00:53,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,605 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:00:53,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,605 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:00:53,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,606 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:00:53,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,606 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:00:53,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,607 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:00:53,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,607 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:00:53,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,608 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:00:53,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,608 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:00:53,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,608 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:00:53,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,609 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:00:53,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,609 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:00:53,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,610 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:00:53,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,610 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:00:53,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,611 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:00:53,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,611 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:00:53,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,612 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:00:53,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,612 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:00:53,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,613 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:00:53,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,613 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:00:53,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,614 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:00:53,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,614 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:00:53,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,615 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:00:53,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,615 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:00:53,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,616 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:00:53,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,616 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:00:53,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,617 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:00:53,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,617 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:00:53,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,618 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:00:53,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,618 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:00:53,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,619 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:00:53,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,619 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:00:53,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,620 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:00:53,624 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:00:53,624 [76] DEBUG index - Prepared sql query parameters : [189,1,Accounts,index,,2013-01-18 11:00:53] +01/18/13 11:00:53,630 [76] DEBUG index - Current user is: admin +01/18/13 11:00:53,630 [76] DEBUG index - Current theme is: softed +01/18/13 11:00:53,630 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:00:53,630 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:00:53,632 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:00:53,632 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:00:53,634 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:00:53,635 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:00:53,636 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:00:53,637 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:53,637 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,637 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:00:53,637 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:00:53,638 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:00:53,638 [76] DEBUG index - including headers +01/18/13 11:00:53,638 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:53,639 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:53,642 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:00:53,642 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:53,645 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:00:53,646 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:00:53,647 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,647 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:00:53,647 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,647 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:00:53,648 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,648 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:00:53,648 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,648 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:00:53,649 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,649 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:00:53,649 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,649 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:00:53,650 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,650 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:00:53,650 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:00:53,650 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:00:53,650 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:00:53,651 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:00:53,663 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:53,663 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,663 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:00:53,663 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:53,664 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,664 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:53,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,665 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:00:53,665 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:00:53,665 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,665 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:53,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,666 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:00:53,666 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:00:53,667 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,667 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:53,668 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,668 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:00:53,668 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:00:53,669 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,669 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:53,670 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,670 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:00:53,670 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:00:53,670 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,670 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:53,671 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,671 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:00:53,671 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:00:53,672 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,672 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:53,672 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,672 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:00:53,672 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:00:53,673 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,673 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:00:53,673 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,673 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:00:53,674 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:00:53,674 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,674 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:53,675 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,675 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:00:53,675 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:00:53,676 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,676 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:53,677 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,677 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:00:53,677 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:00:53,677 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,677 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:53,678 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,678 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:00:53,678 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:00:53,678 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,679 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:53,679 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,679 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:00:53,679 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:00:53,680 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,680 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:53,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,681 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:00:53,681 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:00:53,681 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,681 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:53,682 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,682 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:00:53,682 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:00:53,682 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,682 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:53,683 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,683 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:00:53,683 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:00:53,684 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,684 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:53,684 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,684 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:00:53,684 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:00:53,685 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,685 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:53,686 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,686 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:00:53,686 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:00:53,687 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,687 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:53,687 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,687 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:00:53,688 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:00:53,688 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,688 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:53,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,689 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:00:53,689 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:00:53,689 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,689 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:00:53,689 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:00:53) method ... +01/18/13 11:00:53,690 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:00:53,690 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:00:53) method ... +01/18/13 11:00:53,690 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:00:53,690 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:53,690 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:53,690 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:53,691 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:53,691 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:00:53,691 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:00:53,691 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:00:53,700 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,701 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,701 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,701 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,701 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,701 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,701 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,702 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,702 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,702 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,702 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,702 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,702 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,702 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,703 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,703 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,703 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,703 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,703 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,703 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,703 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,704 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,704 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,704 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,704 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,704 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,704 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,704 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,705 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,705 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,705 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,705 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,705 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,705 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,705 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,705 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,706 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,706 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,706 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,706 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,706 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,706 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,707 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,707 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,707 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,707 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,707 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,707 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,707 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,707 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,710 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,710 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,710 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:00:53,714 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:00:53,715 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,715 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:00:53,715 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:53,718 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:53,718 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:53,719 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:53,719 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,719 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:00:53,720 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,720 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:00:53,720 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,720 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:00:53,721 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,721 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,721 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,721 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:53,721 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,722 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:00:53,722 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,722 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:00:53,722 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,722 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:53,722 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,723 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:00:53,723 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,723 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:53,723 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,723 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:00:53,724 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,724 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:53,724 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,724 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:00:53,724 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,724 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:00:53,725 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,725 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:00:53,725 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,725 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:00:53,725 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,725 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:00:53,726 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,726 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:00:53,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,726 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:00:53,727 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,727 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:00:53,727 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,727 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:00:53,728 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,728 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:53,728 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,728 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:00:53,729 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,729 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:53,729 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,729 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:00:53,729 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,729 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:53,729 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,730 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:00:53,730 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,730 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:53,730 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,730 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:00:53,731 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,731 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:00:53,731 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:00:53,731 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:53,736 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:00:53,736 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,737 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:00:53,737 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,737 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:00:53,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,738 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:00:53,739 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,739 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:00:53,739 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,739 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:00:53,740 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:00:53,743 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:00:53,743 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,743 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:00:53,743 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:00:53,749 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:00:53,759 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:53,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,759 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:53,760 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:53,760 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,760 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:00:53,760 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:53,760 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,760 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:00:53,760 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:53,760 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,761 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:53,761 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:53,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,761 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:00:53,761 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:53,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,761 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:00:53,761 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:53,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,762 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:00:53,762 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:53,762 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,762 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:00:53,762 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:00:53,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,763 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:00:53,763 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:53,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,763 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:00:53,763 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:00:53,764 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,764 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:00:53,767 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:00:53,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,768 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:00:53,768 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:00:53,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,768 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:00:53,769 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:00:53,769 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,769 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:00:53,769 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:00:53,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,770 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:00:53,770 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:00:53,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,770 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:00:53,771 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:53,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,771 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:00:53,771 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:00:53,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,771 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:00:53,771 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:00:53,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,772 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:00:53,772 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:00:53,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,773 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:00:53,773 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:53,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,773 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:00:53,773 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:53,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,773 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:00:53,773 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:53,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,774 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:00:53,774 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:53,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,774 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:00:53,774 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:53,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,774 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:00:53,774 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:00:53,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,775 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:00:53,775 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:53,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,775 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:00:53,775 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:53,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,776 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:00:53,776 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:00:53,776 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,776 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:00:53,777 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:53,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,777 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:00:53,777 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:53,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,777 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:00:53,777 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:00:53,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,778 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:00:53,778 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:00:53,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,779 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:00:53,779 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:00:53,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,779 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:00:53,780 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:53,780 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,780 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:00:53,780 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:00:53,781 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,785 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:53,785 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:53,785 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:53,786 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:53,786 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:00:53,786 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:53,787 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,787 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:00:53,787 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,787 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:00:53,788 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,788 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:00:53,788 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,788 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:00:53,789 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,789 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:00:53,789 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,789 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:00:53,790 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,790 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:00:53,790 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,790 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:00:53,791 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:53,791 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:53,791 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,791 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,791 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:00:53,791 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:53,802 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,802 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:53,802 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 11:00:53,802 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,802 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:00:53,803 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 11:00:53,807 [76] DEBUG index - Exiting initSortByField +01/18/13 11:00:53,807 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:53,808 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,808 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:53,809 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,809 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:00:53,809 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,809 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:00:53,810 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:53,810 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 11:00:53,810 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 11:00:53,810 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 11:00:53,810 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 11:00:53,811 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:00:53,811 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 11:00:53,811 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:00:53,812 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:00:53,812 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:00:53,812 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:00:53,815 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:00:53,815 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:53,819 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:00:53,819 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:53,823 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:00:53,823 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:00:53,823 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:00:53,823 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:00:53,823 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:00:53,824 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:00:53,824 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 11:00:53,824 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 11:00:53,824 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:00:53,825 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:00:53,826 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:00:53,826 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:00:53,827 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:00:53,827 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:00:53,832 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:00:53,832 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:00:53,832 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:00:53,832 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:00:53,832 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:00:53,833 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:00:53,833 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 11:00:53,833 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:53,833 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:53,837 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:53,837 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:53,837 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,837 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,837 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:53,837 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,837 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,838 [76] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:00:53,839 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:00:53,839 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:53,844 [76] DEBUG index - Entering when status=0 +01/18/13 11:00:53,844 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:00:53,844 [76] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:00:53,845 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,845 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,845 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 11:00:53,845 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:53,849 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,849 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,849 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 11:00:53,849 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:53,852 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 11:00:53,852 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:00:53,854 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 11:00:53,855 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,855 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 11:00:53,856 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 11:00:53,856 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:00:53,856 [76] DEBUG index - Entering when status=0 +01/18/13 11:00:53,856 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:00:53,856 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:00:53,856 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:00:53,857 [76] DEBUG index - Entering when status=0 +01/18/13 11:00:53,857 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:00:53,857 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:00:53,857 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,857 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,857 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:00:53,857 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:53,859 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:53,859 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,860 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:00:53,860 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:53,863 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:53,863 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:00:53,864 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,864 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:00:53,864 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,864 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:00:53,864 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,864 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:00:53,864 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,864 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:00:53,864 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,864 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:00:53,865 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,865 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:00:53,865 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,865 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:00:53,865 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:53,865 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:00:53,865 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:53,872 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:00:53,872 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:00:53,891 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 11:00:53,898 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:00:53,898 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:00:53,901 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:00:53,902 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:00:53,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,902 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:00:53,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,902 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:00:53,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,903 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:00:53,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:00:53,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:00:53,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:00:53,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:00:53,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:00:53,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,904 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,905 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:00:53,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,906 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:00:53,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:00:53,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,907 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,908 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,908 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,908 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,908 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,908 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:00:53,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,909 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:00:53,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,910 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:00:53,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,910 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:00:53,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:53,910 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:00:53,910 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 11:00:53,915 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:00:53,915 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:53,915 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 11:00:53,919 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:00:53,919 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:00:53,966 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:53,966 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 11:00:53,971 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:53,971 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 11:00:53,973 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:53,974 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 11:00:53,977 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:53,977 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 11:00:53,979 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:00:53,979 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:00:54,028 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,029 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 11:00:54,030 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,031 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 11:00:54,032 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,033 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 11:00:54,035 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,035 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 11:00:54,042 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,042 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 11:00:54,044 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,044 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 11:00:54,046 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,046 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 11:00:54,048 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,048 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 11:00:54,050 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:54,050 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 11:00:54,053 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:00:54,053 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:00:54,088 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,089 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 11:00:54,092 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,092 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 11:00:54,094 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,095 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 11:00:54,101 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,101 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 11:00:54,103 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 11:00:54,104 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:54,105 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,106 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 11:00:54,107 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:54,108 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 11:00:54,110 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:00:54,110 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:00:54,142 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,142 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 11:00:54,144 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,145 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 11:00:54,147 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,147 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 11:00:54,150 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,150 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 11:00:54,152 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,152 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 11:00:54,154 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,155 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 11:00:54,160 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,160 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 11:00:54,179 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,179 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 11:00:54,182 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,182 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 11:00:54,185 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,185 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 11:00:54,187 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,188 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 11:00:54,190 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:00:54,190 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 11:00:54,192 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:00:54,195 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:00:54,195 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:00:54,197 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:00:54,197 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:54,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,198 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:00:54,198 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:00:54,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,198 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:00:54,198 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:54,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,198 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:00:54,198 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:00:54,198 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,199 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:00:54,199 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:00:54,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,199 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:00:54,199 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:00:54,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,199 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 11:00:54,199 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:00:54,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,199 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:00:54,199 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:00:54,199 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,200 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 11:00:54,200 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:00:54,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,200 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:00:54,200 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:00:54,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,200 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 11:00:54,200 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:00:54,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,200 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:00:54,201 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:00:54,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,201 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 11:00:54,201 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:00:54,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,201 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:00:54,201 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:00:54,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,201 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 11:00:54,201 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:54,201 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,201 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:00:54,202 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:00:54,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,202 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:00:54,202 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:54,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,202 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:00:54,202 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:54,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,202 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:00:54,202 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:54,203 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,203 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:00:54,203 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:00:54,203 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,203 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:00:54,203 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,203 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,203 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,203 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,203 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,203 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:00:54,204 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:54,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,204 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:00:54,204 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:00:54,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,204 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:00:54,204 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:54,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,204 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:00:54,204 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:00:54,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,205 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:00:54,205 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:54,205 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,205 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:00:54,205 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:00:54,205 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,205 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:00:54,205 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:54,205 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,205 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:00:54,205 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:00:54,205 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,206 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:00:54,206 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:00:54,206 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,206 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:00:54,206 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:00:54,206 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,206 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 11:00:54,206 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:54,206 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,206 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:00:54,206 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:00:54,207 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,207 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:00:54,207 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:54,207 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,207 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 11:00:54,207 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:00:54,207 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,207 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:00:54,207 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:00:54,209 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,209 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 11:00:54,209 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:00:54,209 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,209 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 11:00:54,209 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:00:54,209 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,209 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:00:54,209 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:00:54,210 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,210 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 11:00:54,210 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:54,210 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,210 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 11:00:54,210 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:00:54,210 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,210 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:00:54,210 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:54,210 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,210 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:00:54,211 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:00:54,211 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,211 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:00:54,211 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:54,211 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,211 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:00:54,211 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:00:54,211 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,211 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:00:54,211 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:54,211 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,211 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 11:00:54,212 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:00:54,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,212 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:00:54,212 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:54,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,212 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:00:54,212 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:00:54,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,212 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:00:54,212 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:54,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,213 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:00:54,213 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:00:54,213 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,213 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:00:54,213 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:54,213 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,213 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:00:54,213 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:00:54,213 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,213 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:00:54,213 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:00:54,214 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,214 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:00:54,214 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:00:54,214 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,214 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 11:00:54,215 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:54,215 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:54,263 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:00:54,264 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 11:00:54,266 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:54,266 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:54,267 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 11:00:54,267 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:54,270 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 11:00:54,270 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:54,273 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 11:00:54,273 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:54,275 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:00:54,275 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:54,278 [76] DEBUG user - Entering Users() method ... +01/18/13 11:00:54,278 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:00:54,278 [76] DEBUG index - in getColumnFields Users +01/18/13 11:00:54,278 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:54,278 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,279 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,279 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:00:54,279 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:54,279 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,279 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:00:54,279 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,279 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:00:54,279 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:00:54,281 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 11:00:54,281 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:00:54,283 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,284 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,284 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,284 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,284 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,284 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,284 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,284 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,285 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,285 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,285 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,285 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,285 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,285 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,285 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,285 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,286 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,286 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,286 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,286 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,286 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,286 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,286 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,286 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,286 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,287 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,287 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,287 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,287 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,287 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,287 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,287 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,287 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,287 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,288 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,288 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,288 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,289 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/18/13 11:00:54,291 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 11:00:54,294 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,295 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,295 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,296 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,296 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 11:00:54,297 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:00:54,297 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,297 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,297 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,297 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,297 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,298 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,298 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,298 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,298 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:00:54,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,299 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:00:54,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,299 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:00:54,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,299 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:00:54,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,300 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,300 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:00:54,300 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,300 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,300 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:00:54,300 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,301 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,301 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,301 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,301 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 11:00:54,302 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:00:54,302 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:00:54,302 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:00:54,307 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/18/13 11:00:54,307 [76] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/18/13 11:00:54,309 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:00:54,309 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,310 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:00:54,310 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:54,311 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,312 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,312 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,313 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,313 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,313 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,313 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,314 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,314 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,314 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,314 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,315 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,315 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,315 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,316 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,316 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,316 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,316 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,317 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,317 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,317 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,317 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,318 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,318 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,318 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,319 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,319 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,319 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,320 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,320 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,320 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,320 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,321 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,321 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,321 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,321 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,321 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,322 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,322 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,322 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,322 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,323 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,326 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,327 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,327 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,327 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,327 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,327 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,327 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,327 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,327 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,327 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:00:54,333 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,333 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,333 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,334 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,335 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,335 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,335 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,336 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,336 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,336 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,336 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,336 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,336 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,337 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,337 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,338 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,338 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,338 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,339 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,339 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,339 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,339 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,340 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,340 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,340 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,340 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,341 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,341 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,342 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,342 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,342 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,342 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,343 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,343 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,343 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,343 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,343 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,343 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,344 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,344 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,344 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,345 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,348 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,348 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,348 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,348 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,349 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,349 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,349 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,349 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,349 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,349 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:00:54,352 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,352 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,352 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,353 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,353 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,353 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,353 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,354 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,354 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,354 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,354 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,355 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,355 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,355 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,356 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,356 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,356 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,356 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,357 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,357 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,357 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,357 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,358 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,358 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,358 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,358 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,359 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,359 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,360 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,360 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,360 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,360 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,361 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,361 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,361 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,361 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,361 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,362 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,362 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,362 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,362 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,363 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,366 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,366 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,367 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,367 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,367 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,367 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,367 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,367 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,367 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,367 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:54,371 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,372 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,372 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,373 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,373 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,373 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,373 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,374 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,374 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,374 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,374 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,375 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,375 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,375 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,376 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,376 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,376 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,376 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,377 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,377 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,377 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,377 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,378 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,378 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,378 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,378 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,379 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,379 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,380 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,380 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,380 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,380 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,381 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,381 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,381 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,381 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,382 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,382 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,382 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,382 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,383 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,386 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,387 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,387 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,387 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,387 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,387 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,387 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,387 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,387 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,388 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:00:54,395 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,395 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,395 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,396 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,396 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,397 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,397 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,397 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,398 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,398 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,398 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,398 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,399 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,399 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,399 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,400 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,400 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,401 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,401 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,401 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,402 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,402 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,402 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,402 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,403 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,403 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,403 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,403 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,404 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,404 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,404 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,405 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,405 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,405 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,405 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,405 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,405 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,406 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,406 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,406 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,410 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,410 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,410 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,410 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,411 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,411 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,411 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,411 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,411 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,411 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:00:54,416 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,416 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,416 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,417 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,418 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,418 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,418 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,419 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,419 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,419 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,419 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,419 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,419 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,419 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,420 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,421 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,421 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,421 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,421 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,422 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,422 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,422 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,423 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,423 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,423 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,423 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,424 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,424 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,424 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,425 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,425 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,425 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,425 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,426 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,426 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,426 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,426 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,427 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,427 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,427 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,431 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,431 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,431 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,432 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,432 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,432 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,432 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,432 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:00:54,435 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,435 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,436 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,437 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,437 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,437 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,437 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,438 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,438 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,438 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,438 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,438 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,439 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,439 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,439 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,440 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,440 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,440 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,441 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,441 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,441 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,441 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,442 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,442 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,442 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,442 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,443 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,443 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,444 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,444 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,444 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,444 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,445 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,445 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,445 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,445 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,445 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,446 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,446 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,446 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,446 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,447 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,450 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,451 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,451 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,451 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,451 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,451 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,451 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,451 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,451 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,452 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:00:54,454 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,454 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,454 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,455 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,455 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,455 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,455 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,456 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,456 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,456 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,457 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,457 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,457 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,457 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,458 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,458 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,458 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,458 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,459 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,459 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,459 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,460 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,460 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,461 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,461 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,461 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,461 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,462 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,462 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,462 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,462 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,462 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,463 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,463 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,463 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,463 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,464 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,464 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,464 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,464 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,464 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,465 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,469 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,469 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,469 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,469 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,469 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,469 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,470 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,470 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,470 [76] DEBUG index - Prepared sql query parameters : [16] +01/18/13 11:00:54,472 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,472 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,472 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,473 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,474 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,474 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,474 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,475 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,475 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,475 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,475 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,475 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,476 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,477 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,477 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,477 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,477 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,478 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,478 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,478 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,479 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,479 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,479 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,479 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,480 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,480 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,480 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,480 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,481 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,481 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,481 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,482 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,482 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,482 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,482 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,482 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,482 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,483 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,483 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,487 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,487 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,487 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,488 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,488 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,488 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,488 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,488 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,488 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 11:00:54,491 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,491 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,491 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,493 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,493 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,493 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,493 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,494 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,494 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,494 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,494 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,495 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,495 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,495 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,496 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,496 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,496 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,496 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,497 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,497 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,497 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,497 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,498 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,499 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,499 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,499 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,500 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,500 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:00:54,500 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,500 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,500 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,500 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,501 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,501 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,501 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,502 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:00:54,502 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:00:54,502 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,502 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:00:54,502 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:00:54,502 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:00:54,503 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:00:54,507 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:00:54,507 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:00:54,507 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,507 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,507 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:00:54,507 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,507 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,508 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:00:54,508 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:00:54,508 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:00:54,510 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,511 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:00:54,511 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,511 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:00:54,511 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,511 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:00:54,511 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,511 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:00:54,512 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,512 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:00:54,512 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,512 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:00:54,512 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 11:00:54,512 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 11:00:54,512 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,513 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,513 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:00:54,513 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,513 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,515 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,515 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,515 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,516 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:00:54,516 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,516 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,518 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,518 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,518 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,518 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,518 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,519 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:00:54,519 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,519 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,521 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,521 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,521 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,521 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,522 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:00:54,522 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,522 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,524 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,524 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,525 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,525 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:00:54,525 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,525 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,528 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,528 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,528 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,528 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,528 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,529 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:00:54,529 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,529 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,530 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,530 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,531 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,531 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,531 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,531 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:00:54,531 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,531 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,533 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,533 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,533 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,533 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,534 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,534 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:00:54,534 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,534 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,538 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,539 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,539 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,539 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,539 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,539 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:00:54,539 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,539 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,541 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,541 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,541 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,542 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,542 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,542 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:00:54,542 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,542 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,544 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,544 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,544 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,544 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,544 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,544 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:00:54,545 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,545 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,549 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,549 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,549 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,549 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,549 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,549 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:00:54,549 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,549 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,552 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,552 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,553 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,553 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,553 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,553 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:00:54,553 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,553 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,555 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,556 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,556 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,556 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,556 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,556 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:00:54,556 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,556 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,558 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,558 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,558 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,558 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,558 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,559 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:00:54,559 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,559 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,560 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,560 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,560 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,561 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,561 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,561 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:00:54,561 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,561 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,563 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,563 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,563 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,563 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,563 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,563 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:00:54,563 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,563 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,565 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,565 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,565 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,566 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,566 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,566 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:00:54,566 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,566 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,569 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,570 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,570 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,570 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,570 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,570 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:00:54,570 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,570 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,572 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,573 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,573 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,573 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,573 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,573 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:00:54,573 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,573 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,575 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,575 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,575 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,575 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,575 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,575 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:00:54,575 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,575 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,577 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,577 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,577 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,578 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,578 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,578 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:00:54,578 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,578 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,580 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,580 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,580 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,580 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,580 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,580 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:00:54,581 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,581 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:00:54,582 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,582 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,583 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:00:54,583 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,583 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,583 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:00:54,583 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,583 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,585 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,585 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,585 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,585 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,586 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,586 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:00:54,586 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,586 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,588 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,588 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,588 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,588 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,588 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,589 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:00:54,589 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,589 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,591 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,591 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,591 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,591 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,591 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,591 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:00:54,591 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,591 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,595 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,595 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,595 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,595 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,596 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,596 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:00:54,596 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,596 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,598 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,598 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,598 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,598 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,598 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,598 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:00:54,598 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,599 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,601 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,601 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,601 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,601 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,601 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,601 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:00:54,601 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,601 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,607 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,607 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,607 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,608 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,608 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,608 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:00:54,608 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,608 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,613 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,613 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,613 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,613 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,613 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,613 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:00:54,613 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,613 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,616 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,616 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,616 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,617 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,617 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,617 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:00:54,617 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,617 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,619 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,619 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,619 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,619 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,619 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,619 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:00:54,620 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,620 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,621 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,621 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,622 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,622 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,622 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,622 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:00:54,622 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,622 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:00:54,626 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,627 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:00:54,627 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,627 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:00:54,627 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:00:54,627 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:00:54,630 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,630 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,630 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:00:54,630 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 11:00:54,630 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 11:00:54,630 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,630 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,631 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 11:00:54,631 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 11:00:54,631 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 11:00:54,634 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 11:00:54,634 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:00:54,635 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 11:00:54,635 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:00:54,638 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:00:54,638 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:00:54,638 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:00:54,639 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,639 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 11:00:54,639 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:00:54,652 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:00:54,652 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:00:54,652 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:54,656 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,656 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,656 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:00:54,657 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,657 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,657 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:00:54,657 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,657 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,657 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:00:54,657 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,657 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,657 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:00:54,658 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,658 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,658 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:00:54,658 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,658 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,658 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:00:54,658 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,658 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,658 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:00:54,658 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,659 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,659 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:00:54,659 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,659 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,659 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:00:54,659 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,659 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,659 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:00:54,659 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,659 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,660 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:00:54,660 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,660 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,660 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:00:54,660 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,660 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,660 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:00:54,660 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,660 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,661 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:00:54,661 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,661 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,661 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:00:54,661 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,661 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,661 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:00:54,661 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,661 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,661 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:00:54,662 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,662 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,662 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:00:54,662 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,662 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,662 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:00:54,662 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,662 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,662 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:00:54,663 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,663 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,663 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:00:54,663 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,663 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,663 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:00:54,663 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,663 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,663 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:00:54,663 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,664 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,664 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:00:54,664 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,664 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,664 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:00:54,664 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,664 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,664 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:00:54,664 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,664 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,665 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:00:54,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,665 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:00:54,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,665 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:00:54,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,665 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:00:54,666 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,666 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:00:54,666 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,666 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:00:54,666 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,666 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:00:54,666 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,667 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,667 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 11:00:54,667 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 11:00:54,670 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:00:54,670 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:00:54,670 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:00:54,670 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:00:54,670 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:00:54,670 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:00:54,670 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:00:54,677 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:00:54,677 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:00:54,677 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 11:00:54,677 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 11:00:54,681 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:00:54,681 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:00:54,682 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:00:54,682 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:00:54,682 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:00:54,684 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:00:54,684 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:00:54,684 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:00:54,689 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,689 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,689 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,690 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,690 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:00:54,690 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,690 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,690 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:00:54,690 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,690 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,690 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,690 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,690 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,691 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,691 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,691 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,691 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,691 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,691 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,691 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,692 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,692 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,692 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,692 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,692 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,692 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,693 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,693 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,693 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,696 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:00:54,697 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:00:54,697 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,697 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:00:54,697 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,697 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:00:54,697 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,698 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:00:54,698 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,698 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,698 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:00:54,698 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,698 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,698 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:00:54,698 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,699 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:00:54,699 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,699 [76] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/18/13 11:00:54,699 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,699 [76] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/18/13 11:00:54,703 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:54,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:54,703 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,703 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,704 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:00:54,704 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,704 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,704 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,704 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,704 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,704 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:00:54,705 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:00:54,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:00:54,705 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,705 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,705 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:00:54,705 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:00:54,705 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:00:54,705 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 11:00:54,706 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:00:54,707 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:00:54,707 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:01:21,932 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:01:22,077 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:01:22,077 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:01:22,077 [76] DEBUG index - ****Starting for new session +01/18/13 11:01:22,078 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:01:22,078 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:01:22,078 [76] INFO index - About to take action CalendarAjax +01/18/13 11:01:22,078 [76] DEBUG index - in CalendarAjax +01/18/13 11:01:22,078 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:01:22,078 [76] INFO index - current module is Calendar +01/18/13 11:01:22,126 [76] DEBUG user - Entering Users() method ... +01/18/13 11:01:22,127 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:01:22,127 [76] DEBUG index - in getColumnFields Users +01/18/13 11:01:22,127 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:22,127 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:22,128 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:22,128 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:22,128 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:01:22,128 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:01:22,138 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:22,138 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:22,139 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:01:22,139 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:01:22,139 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:01:22,140 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:01:22,140 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,140 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:01:22,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,141 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:01:22,141 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,141 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:01:22,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,142 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:01:22,142 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,143 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:01:22,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,143 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:01:22,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,143 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:01:22,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,144 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:01:22,144 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,145 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:01:22,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,145 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:01:22,145 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,145 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:01:22,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,146 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:01:22,146 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,146 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:01:22,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,147 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:01:22,147 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,147 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:01:22,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,148 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:01:22,148 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,149 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:01:22,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,149 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:01:22,149 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,149 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:01:22,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,150 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:01:22,150 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,150 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:01:22,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,151 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:01:22,151 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,151 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:01:22,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,152 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:01:22,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,152 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:01:22,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,153 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:01:22,153 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,153 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:01:22,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,154 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:01:22,154 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,154 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:01:22,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,155 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:01:22,155 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,155 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:01:22,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,156 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:01:22,156 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,156 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:01:22,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,157 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:01:22,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,157 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:01:22,157 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,158 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:01:22,158 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,158 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:01:22,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,159 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:01:22,159 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,159 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:01:22,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,160 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:01:22,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,160 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:01:22,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,161 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:01:22,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,161 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:01:22,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,162 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:01:22,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,162 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:01:22,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,163 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:01:22,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:22,163 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:01:22,164 [76] DEBUG index - Current user is: admin +01/18/13 11:01:22,164 [76] DEBUG index - Current theme is: softed +01/18/13 11:01:22,164 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:01:22,164 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:01:22,166 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:01:22,166 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:01:22,168 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:01:22,168 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:01:22,170 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:01:22,171 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:01:22,172 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:22,172 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:01:22,172 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:01:22,172 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:01:22,172 [76] DEBUG index - skipping headers +01/18/13 11:01:22,173 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:01:22,174 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:01:22,179 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:01:22,180 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:01:22,180 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:01:22,180 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:01:22,185 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:02')) +01/18/13 11:01:22,191 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:01:39,762 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:01:39,901 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:01:39,902 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:01:39,902 [76] DEBUG index - ****Starting for new session +01/18/13 11:01:39,902 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:01:39,902 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_no', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:01:39,903 [76] INFO index - About to take action TooltipAjax +01/18/13 11:01:39,903 [76] DEBUG index - in TooltipAjax +01/18/13 11:01:39,903 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:01:39,903 [76] INFO index - current module is Tooltip +01/18/13 11:01:39,945 [76] DEBUG user - Entering Users() method ... +01/18/13 11:01:39,945 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:01:39,946 [76] DEBUG index - in getColumnFields Users +01/18/13 11:01:39,946 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:39,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:39,946 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:39,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:39,947 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:01:39,947 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:01:39,955 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:39,955 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:39,955 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:01:39,955 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:01:39,956 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:01:39,957 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:01:39,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,957 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:01:39,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,958 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:01:39,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,958 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:01:39,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,959 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:01:39,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,959 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:01:39,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,960 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:01:39,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,961 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:01:39,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,961 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:01:39,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,962 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:01:39,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,962 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:01:39,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,963 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:01:39,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,963 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:01:39,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,964 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:01:39,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,964 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:01:39,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,965 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:01:39,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,965 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:01:39,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,966 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:01:39,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,966 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:01:39,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,967 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:01:39,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,967 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:01:39,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,968 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:01:39,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,968 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:01:39,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,969 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:01:39,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,969 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:01:39,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,970 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:01:39,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,970 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:01:39,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,971 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:01:39,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,971 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:01:39,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,972 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:01:39,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,973 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:01:39,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,973 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:01:39,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,974 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:01:39,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,974 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:01:39,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,975 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:01:39,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,975 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:01:39,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,976 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:01:39,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,976 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:01:39,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,977 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:01:39,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,977 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:01:39,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,978 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:01:39,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,978 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:01:39,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,979 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:01:39,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,979 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:01:39,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,980 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:01:39,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,980 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:01:39,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,981 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:01:39,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:39,981 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:01:39,986 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:01:39,986 [76] DEBUG index - Prepared sql query parameters : [190,1,Tooltip,TooltipAjax,,2013-01-18 11:01:39] +01/18/13 11:01:40,001 [76] DEBUG index - Current user is: admin +01/18/13 11:01:40,002 [76] DEBUG index - Current theme is: softed +01/18/13 11:01:40,002 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:01:40,002 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:01:40,004 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:01:40,004 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:01:40,006 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:01:40,007 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:01:40,009 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:01:40,009 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:01:40,009 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:01:40,010 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:40,010 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:01:40,010 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:01:40,010 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:01:40,011 [76] DEBUG index - skipping headers +01/18/13 11:01:40,012 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:01:40,012 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:01:40,019 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:40,019 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:40,019 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:01:40,019 [76] DEBUG index - Prepared sql query parameters : [6,account_no] +01/18/13 11:01:40,023 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:01:40,023 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:01:47,440 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:01:47,575 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:01:47,575 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:01:47,576 [76] DEBUG index - ****Starting for new session +01/18/13 11:01:47,576 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:01:47,576 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'parenttab' => 'Marketing', + 'file' => 'MassEdit', + 'mode' => 'ajax', + 'idstring' => '8;4;2;6;', + 'viewname' => '4', + 'excludedRecords' => '', +) +01/18/13 11:01:47,576 [76] INFO index - About to take action AccountsAjax +01/18/13 11:01:47,576 [76] DEBUG index - in AccountsAjax +01/18/13 11:01:47,577 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:01:47,577 [76] INFO index - current module is Accounts +01/18/13 11:01:47,617 [76] DEBUG user - Entering Users() method ... +01/18/13 11:01:47,617 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:01:47,618 [76] DEBUG index - in getColumnFields Users +01/18/13 11:01:47,618 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:47,618 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,618 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:47,619 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,619 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:01:47,619 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:01:47,627 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:01:47,627 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,627 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:01:47,628 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:01:47,628 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:01:47,629 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:01:47,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,629 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:01:47,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,630 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:01:47,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,630 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:01:47,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,631 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:01:47,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,631 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:01:47,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,632 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:01:47,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,632 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:01:47,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,633 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:01:47,633 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,634 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:01:47,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,634 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:01:47,634 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,634 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:01:47,635 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,635 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:01:47,635 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,635 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:01:47,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,636 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:01:47,636 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,636 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:01:47,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,637 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:01:47,637 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,637 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:01:47,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,638 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:01:47,638 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,638 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:01:47,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,639 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:01:47,639 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,639 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:01:47,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,640 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:01:47,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,640 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:01:47,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,641 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:01:47,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,641 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:01:47,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,642 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:01:47,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,642 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:01:47,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,643 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:01:47,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,643 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:01:47,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,644 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:01:47,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,644 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:01:47,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,645 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:01:47,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,645 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:01:47,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,645 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:01:47,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,646 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:01:47,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,646 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:01:47,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,647 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:01:47,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,647 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:01:47,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,648 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:01:47,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,649 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:01:47,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,649 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:01:47,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,650 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:01:47,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,650 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:01:47,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,651 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:01:47,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,651 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:01:47,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,652 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:01:47,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,652 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:01:47,658 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:01:47,658 [76] DEBUG index - Prepared sql query parameters : [191,1,Accounts,AccountsAjax,,2013-01-18 11:01:47] +01/18/13 11:01:47,662 [76] DEBUG index - Current user is: admin +01/18/13 11:01:47,662 [76] DEBUG index - Current theme is: softed +01/18/13 11:01:47,662 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:01:47,662 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:01:47,664 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:01:47,664 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:01:47,667 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:01:47,667 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:01:47,669 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:01:47,669 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,670 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,670 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:01:47,670 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:01:47,670 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:01:47,670 [76] DEBUG index - skipping headers +01/18/13 11:01:47,671 [76] DEBUG index - Entering isPermitted(Accounts,MassEdit,) method ... +01/18/13 11:01:47,672 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:01:47,696 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:01:47,696 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:01:47,696 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:47,696 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,697 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:47,697 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,697 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:01:47,697 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:01:47,704 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:47,705 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,705 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:01:47,705 [76] DEBUG index - Entering getView() method ... +01/18/13 11:01:47,705 [76] DEBUG index - Exiting getView method ... +01/18/13 11:01:47,706 [76] DEBUG index - Entering getBlocks(Accounts,create_view,mass_edit,Array,) method ... +01/18/13 11:01:47,706 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:47,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,707 [76] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and create_view=0 and visible = 0 order by sequence +01/18/13 11:01:47,707 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:01:47,710 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,710 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,710 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:01:47,710 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,711 [76] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/18/13 11:01:47,711 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,711 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:01:47,711 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,711 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,711 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:01:47,712 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype = 1 AND vtiger_field.masseditable NOT IN (0,2) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/18/13 11:01:47,712 [76] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/18/13 11:01:47,724 [76] DEBUG index - Entering getBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1, +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1, +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1, +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1, +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1, +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1, +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1, +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1, +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1, +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1, +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1, +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1, +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1, +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1, +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1, +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1, +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1, +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1, +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1, +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1, +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1, +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1, +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1, +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1, +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1, +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1, +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1, +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1, +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1, +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1, +,Array,6,Array) method ... +01/18/13 11:01:47,724 [76] DEBUG index - Entering getOutputHtml(17,website,Website,100,Array,1,Accounts) method ... +01/18/13 11:01:47,725 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,725 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,725 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:01:47,725 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,726 [76] DEBUG index - Entering getOutputHtml(11,phone,Phone,100,Array,1,Accounts) method ... +01/18/13 11:01:47,726 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,726 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,726 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:01:47,727 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,727 [76] DEBUG index - Entering getOutputHtml(1,tickersymbol,Ticker Symbol,100,Array,1,Accounts) method ... +01/18/13 11:01:47,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,728 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:01:47,728 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,728 [76] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Accounts) method ... +01/18/13 11:01:47,729 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,729 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:01:47,729 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,730 [76] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Accounts) method ... +01/18/13 11:01:47,730 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,730 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,730 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:01:47,730 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,731 [76] DEBUG index - Entering getOutputHtml(7,employees,Employees,100,Array,1,Accounts) method ... +01/18/13 11:01:47,731 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,731 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,731 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:01:47,732 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,732 [76] DEBUG index - Entering getOutputHtml(13,email1,Email,100,Array,1,Accounts) method ... +01/18/13 11:01:47,733 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,733 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:01:47,733 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,733 [76] DEBUG index - Entering getOutputHtml(13,email2,Other Email,100,Array,1,Accounts) method ... +01/18/13 11:01:47,734 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,734 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,734 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:01:47,734 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,734 [76] DEBUG index - Entering getOutputHtml(1,ownership,Ownership,100,Array,1,Accounts) method ... +01/18/13 11:01:47,735 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,735 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:01:47,735 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,736 [76] DEBUG index - Entering getOutputHtml(15,industry,industry,100,Array,1,Accounts) method ... +01/18/13 11:01:47,736 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:01:47,736 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:01:47,737 [76] DEBUG index - Entering getRoleInformation(H2) method ... +01/18/13 11:01:47,737 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/18/13 11:01:47,737 [76] DEBUG index - Prepared sql query parameters : [H2] +01/18/13 11:01:47,739 [76] DEBUG index - Exiting getRoleInformation method ... +01/18/13 11:01:47,739 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/18/13 11:01:47,739 [76] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/18/13 11:01:47,741 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:01:47,741 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:01:47,741 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,742 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:01:47,746 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 191 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #344 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #344 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:01:47,746 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:01:47,747 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:01:47,749 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,749 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:01:47,749 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,749 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:01:47,754 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,754 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:01:47,754 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,754 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:01:47,759 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,759 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:01:47,759 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:01:47,760 [76] DEBUG index - Prepared sql query parameters : [industry] +01/18/13 11:01:47,762 [76] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:01:47,762 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:01:47,787 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:01:47,787 [76] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/18/13 11:01:47,788 [76] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/18/13 11:01:47,789 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:01:47,790 [76] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/18/13 11:01:47,790 [76] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/18/13 11:01:47,790 [76] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/18/13 11:01:47,790 [76] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/18/13 11:01:47,790 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,790 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,790 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:01:47,790 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,791 [76] DEBUG index - Entering getOutputHtml(15,rating,Rating,100,Array,1,Accounts) method ... +01/18/13 11:01:47,792 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:01:47,792 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:01:47,792 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:01:47,792 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:01:47,792 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,792 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:01:47,798 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 191 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #352 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #352 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:01:47,799 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:01:47,799 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:01:47,801 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,801 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:01:47,801 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,801 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:01:47,805 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,805 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:01:47,805 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,805 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:01:47,809 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,809 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:01:47,809 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:01:47,809 [76] DEBUG index - Prepared sql query parameters : [rating] +01/18/13 11:01:47,813 [76] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:01:47,813 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:01:47,821 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:01:47,821 [76] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/18/13 11:01:47,822 [76] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/18/13 11:01:47,822 [76] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/18/13 11:01:47,822 [76] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/18/13 11:01:47,822 [76] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/18/13 11:01:47,822 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,822 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:01:47,822 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,823 [76] DEBUG index - Entering getOutputHtml(15,accounttype,Type,100,Array,1,Accounts) method ... +01/18/13 11:01:47,824 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:01:47,824 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:01:47,824 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:01:47,824 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:01:47,824 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,824 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:01:47,828 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 191 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #360 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #360 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:01:47,828 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:01:47,829 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:01:47,833 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,833 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:01:47,833 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,833 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:01:47,836 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,836 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:01:47,837 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:01:47,837 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:01:47,840 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:01:47,840 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:01:47,840 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:01:47,840 [76] DEBUG index - Prepared sql query parameters : [accounttype] +01/18/13 11:01:47,842 [76] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:01:47,842 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/18/13 11:01:47,853 [76] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/18/13 11:01:47,854 [76] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/18/13 11:01:47,854 [76] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/18/13 11:01:47,854 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:01:47,854 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:01:47,854 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,854 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:01:47,854 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,855 [76] DEBUG index - Entering getOutputHtml(1,siccode,SIC Code,100,Array,1,Accounts) method ... +01/18/13 11:01:47,855 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,856 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,856 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:01:47,856 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,856 [76] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Accounts) method ... +01/18/13 11:01:47,857 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,857 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,857 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:01:47,857 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,858 [76] DEBUG index - Entering getOutputHtml(71,annual_revenue,Annual Revenue,100,Array,1,Accounts) method ... +01/18/13 11:01:47,858 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:01:47,858 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:01:47,858 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:01:47,858 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:01:47,861 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:01:47,861 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:01:47,861 [76] DEBUG index - Entering convertFromDollar(,1.000) method ... +01/18/13 11:01:47,861 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:01:47,861 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,861 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,861 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:01:47,861 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,862 [76] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Accounts) method ... +01/18/13 11:01:47,863 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,863 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,863 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:01:47,863 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:01:47,863 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:01:47,865 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:01:47,865 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:01:47,866 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:01:47,866 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:01:47,866 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:01:47,868 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:01:47,869 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:01:47,871 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:01:47,871 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:01:47,873 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:01:47,873 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:01:47,873 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:01:47,873 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:01:47,873 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:01:47,874 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:01:47,874 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:01:47,874 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:01:47,874 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:01:47,876 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:01:47,876 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:01:47,876 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:01:47,877 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:01:47,877 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:01:47,877 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:01:47,877 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,877 [76] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Accounts) method ... +01/18/13 11:01:47,878 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,878 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,878 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:01:47,878 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,879 [76] DEBUG index - Entering getOutputHtml(21,bill_street,Billing Address,100,Array,1,Accounts) method ... +01/18/13 11:01:47,879 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,880 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,880 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:01:47,880 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,880 [76] DEBUG index - Entering getOutputHtml(21,ship_street,Shipping Address,100,Array,1,Accounts) method ... +01/18/13 11:01:47,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,881 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:01:47,881 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,882 [76] DEBUG index - Entering getOutputHtml(1,bill_pobox,Billing Po Box,100,Array,1,Accounts) method ... +01/18/13 11:01:47,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,882 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:01:47,882 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,883 [76] DEBUG index - Entering getOutputHtml(1,ship_pobox,Shipping Po Box,100,Array,1,Accounts) method ... +01/18/13 11:01:47,883 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,884 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,884 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:01:47,884 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,884 [76] DEBUG index - Entering getOutputHtml(1,bill_city,Billing City,100,Array,1,Accounts) method ... +01/18/13 11:01:47,885 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,885 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,885 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:01:47,885 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,886 [76] DEBUG index - Entering getOutputHtml(1,ship_city,Shipping City,100,Array,1,Accounts) method ... +01/18/13 11:01:47,886 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,886 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,886 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:01:47,886 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,887 [76] DEBUG index - Entering getOutputHtml(1,bill_state,Billing State,100,Array,1,Accounts) method ... +01/18/13 11:01:47,887 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,887 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,888 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:01:47,888 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,888 [76] DEBUG index - Entering getOutputHtml(1,ship_state,Shipping State,100,Array,1,Accounts) method ... +01/18/13 11:01:47,889 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,889 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,889 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:01:47,889 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,889 [76] DEBUG index - Entering getOutputHtml(1,bill_code,Billing Code,100,Array,1,Accounts) method ... +01/18/13 11:01:47,890 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,890 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,890 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:01:47,890 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,891 [76] DEBUG index - Entering getOutputHtml(1,ship_code,Shipping Code,100,Array,1,Accounts) method ... +01/18/13 11:01:47,891 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,891 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,891 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:01:47,891 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,892 [76] DEBUG index - Entering getOutputHtml(1,bill_country,Billing Country,100,Array,1,Accounts) method ... +01/18/13 11:01:47,892 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,892 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,893 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:01:47,893 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,893 [76] DEBUG index - Entering getOutputHtml(1,ship_country,Shipping Country,100,Array,1,Accounts) method ... +01/18/13 11:01:47,894 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,894 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,894 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:01:47,894 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,895 [76] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Accounts) method ... +01/18/13 11:01:47,895 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,895 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,895 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:01:47,895 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:01:47,896 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,896 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,896 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:01:47,896 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,896 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,896 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:01:47,896 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,896 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,896 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:01:47,896 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,896 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,897 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:01:47,897 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,897 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,897 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:01:47,897 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,897 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,897 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:01:47,897 [76] DEBUG index - Exiting getBlockInformation method ... +01/18/13 11:01:47,897 [76] DEBUG index - Exiting getBlocks method ... +01/18/13 11:01:47,897 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:01:47,898 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:01:47,899 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:01:47,899 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:01:47,899 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:01:47,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:01:47,900 [76] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/18/13 11:01:47,900 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:01:47,902 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,902 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,902 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:01:47,903 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,903 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:01:47,903 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,903 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:01:47,903 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,904 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:01:47,904 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,904 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:01:47,904 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,904 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:01:47,904 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,905 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:01:47,905 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,905 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,905 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:01:47,905 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,905 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,905 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:01:47,905 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,905 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,905 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:01:47,906 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,906 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,906 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:01:47,906 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,906 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,906 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:01:47,906 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,906 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,906 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:01:47,907 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,907 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,907 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:01:47,907 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,907 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,907 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:01:47,907 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,907 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,907 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:01:47,908 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,908 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,908 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:01:47,908 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,908 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,908 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:01:47,908 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,908 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,908 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:01:47,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,909 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:01:47,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,909 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:01:47,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,909 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:01:47,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,910 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,910 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:01:47,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,910 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,910 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:01:47,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,910 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,910 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:01:47,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,911 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:01:47,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,911 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:01:47,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,911 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:01:47,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,912 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:01:47,912 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,912 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,912 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:01:47,912 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,912 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,912 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:01:47,912 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,912 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,912 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:01:47,913 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,913 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,913 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:01:47,913 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,913 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,913 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:01:47,913 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:01:47,913 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:01:47,913 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:01:47,913 [76] DEBUG index - Entering split_validationdataArray(Array) method ... +01/18/13 11:01:47,914 [76] DEBUG index - Exiting split_validationdataArray method ... +01/18/13 11:02:10,455 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:10,599 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:10,599 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:10,600 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:10,600 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:10,601 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:02:10,601 [76] INFO index - About to take action CalendarAjax +01/18/13 11:02:10,601 [76] DEBUG index - in CalendarAjax +01/18/13 11:02:10,601 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:02:10,601 [76] INFO index - current module is Calendar +01/18/13 11:02:10,650 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:10,651 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:10,651 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:10,651 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:10,651 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:10,652 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:10,652 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:10,652 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:10,652 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:10,691 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:10,691 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:10,692 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:10,692 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:10,692 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:10,693 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:10,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,694 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:10,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,694 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:10,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,695 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:10,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,696 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:10,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,696 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:10,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,697 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:10,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,697 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:10,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,698 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:10,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,698 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:10,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,699 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:10,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,700 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:10,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,700 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:10,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,701 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:10,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,701 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:10,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,702 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:10,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,702 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:10,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,703 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:10,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,703 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:10,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,704 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:10,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,704 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:10,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,705 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:10,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,705 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:10,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,706 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:10,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,706 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:10,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,707 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:10,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,707 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:10,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,708 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:10,708 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,708 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:10,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,709 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:10,709 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,709 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:10,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,710 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:10,710 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,710 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:10,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,711 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:10,711 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,711 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:10,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,712 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:10,712 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,713 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:10,713 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,713 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:10,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,714 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:10,714 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,714 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:10,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,715 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:10,715 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,715 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:10,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,716 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:10,716 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,716 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:10,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,717 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:10,717 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,717 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:10,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,718 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:10,718 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:10,718 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:10,719 [76] DEBUG index - Current user is: admin +01/18/13 11:02:10,719 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:10,719 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:10,719 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:10,721 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:10,721 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:10,723 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:10,723 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:10,725 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:10,726 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:10,726 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:10,727 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:10,727 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:10,727 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:10,727 [76] DEBUG index - skipping headers +01/18/13 11:02:10,728 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:02:10,729 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:10,734 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:02:10,735 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:02:10,735 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:02:10,735 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:02:10,739 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:03')) +01/18/13 11:02:10,758 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:02:26,267 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:26,409 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:26,409 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:26,410 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:26,410 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:26,410 [76] DEBUG index - array ( + 'module' => 'Emails', + 'return_module' => 'Accounts', + 'action' => 'EmailsAjax', + 'file' => 'mailSelect', + 'idlist' => '8:4:2:6', + 'viewname' => '4', + 'excludedRecords' => '', + 'searchurl' => '', + 'query' => 'true', + 'advft_criteria' => '[{"groupid":"1","columnname":"vtiger_account:accountname:accountname:Accounts_Account_Name:V","comparator":"n","value":"demovtiger","columncondition":"and"},{"groupid":"1","columnname":"vtiger_account:account_no:account_no:Accounts_Account_No:V","comparator":"c","value":"A","columncondition":""}]', + 'advft_criteria_groups' => '[null,{"groupcondition":""}]', + 'searchtype' => 'advance', +) +01/18/13 11:02:26,411 [76] INFO index - About to take action EmailsAjax +01/18/13 11:02:26,411 [76] DEBUG index - in EmailsAjax +01/18/13 11:02:26,411 [76] INFO index - current page is modules/Emails/EmailsAjax.php +01/18/13 11:02:26,411 [76] INFO index - current module is Emails +01/18/13 11:02:26,460 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:26,460 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:26,460 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:26,460 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:26,461 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,461 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:26,461 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,461 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:26,461 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:26,472 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:26,472 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,472 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:26,473 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:26,473 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:26,474 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:26,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,474 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:26,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,475 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:26,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,476 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:26,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,476 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:26,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,477 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:26,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,477 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:26,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,478 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:26,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,478 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:26,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,479 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:26,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,479 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:26,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,480 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:26,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,481 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:26,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,481 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:26,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,482 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:26,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,482 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:26,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,483 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:26,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,483 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:26,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,484 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:26,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,484 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:26,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,485 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:26,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,485 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:26,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,486 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:26,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,487 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:26,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,487 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:26,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,487 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:26,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,488 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:26,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,489 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:26,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,489 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:26,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,490 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:26,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,490 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:26,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,491 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:26,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,491 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:26,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,492 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:26,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,492 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:26,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,493 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:26,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,493 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:26,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,494 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:26,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,494 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:26,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,495 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:26,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,495 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:26,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,496 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:26,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,496 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:26,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,497 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:26,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,497 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:26,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,498 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:26,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,499 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:26,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,499 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:26,503 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:02:26,504 [76] DEBUG index - Prepared sql query parameters : [192,1,Emails,EmailsAjax,,2013-01-18 11:02:26] +01/18/13 11:02:26,507 [76] DEBUG index - Current user is: admin +01/18/13 11:02:26,507 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:26,507 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:26,507 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:26,509 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:26,510 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:26,512 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:26,512 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:26,514 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:26,514 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:26,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:26,515 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:26,515 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:26,515 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:26,515 [76] DEBUG index - skipping headers +01/18/13 11:02:26,516 [76] DEBUG index - Entering isPermitted(Emails,mailSelect,) method ... +01/18/13 11:02:26,517 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:26,541 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:02:26,541 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:02:26,541 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:02:26,542 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:26,542 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,542 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:26,542 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,542 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:26,542 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:02:26,547 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:26,547 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,548 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:26,548 [76] DEBUG email - Exiting Email method ... +01/18/13 11:02:26,561 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,562 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,562 [76] DEBUG index - Prepared sql query being executed : select fieldid, fieldname, fieldlabel, columnname from vtiger_field where tabid=? and uitype=13 and vtiger_field.presence in (0,2) +01/18/13 11:02:26,562 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:26,566 [76] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email1) method ... +01/18/13 11:02:26,566 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,566 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,566 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:26,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:26,567 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:26,567 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:26,567 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,567 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,567 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,567 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,567 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:26,567 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:26,576 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,576 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,576 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:26,577 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:02:26,577 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:02:26,577 [76] DEBUG index - Entering getFieldVisibilityPermission(Accounts,1,email2) method ... +01/18/13 11:02:26,577 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:26,577 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:26,578 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:02:26,578 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (Other Email) +01/18/13 11:02:31,463 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:31,538 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:31,611 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:31,611 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:31,612 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:31,612 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:31,612 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'MailerExport', + 'from' => 'Accounts', + 'step' => 'ask', +) +01/18/13 11:02:31,612 [76] INFO index - About to take action MailerExport +01/18/13 11:02:31,613 [76] DEBUG index - in MailerExport +01/18/13 11:02:31,613 [76] INFO index - current page is modules/Accounts/MailerExport.php +01/18/13 11:02:31,613 [76] INFO index - current module is Accounts +01/18/13 11:02:31,664 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:31,665 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:31,665 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:31,665 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,665 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,665 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,666 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:31,666 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:31,680 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,680 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:31,680 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:31,681 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:31,681 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:31,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,682 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:31,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,683 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:31,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,683 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:31,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,684 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:31,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,684 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:31,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,685 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:31,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,686 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:31,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,686 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:31,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,687 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:31,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,687 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:31,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,688 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:31,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,688 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:31,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,689 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:31,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,689 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:31,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,690 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:31,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,691 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:31,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,691 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:31,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,692 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:31,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,692 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:31,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,693 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:31,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,693 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:31,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,694 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:31,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,694 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:31,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,695 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:31,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,695 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:31,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,696 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:31,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,696 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:31,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,697 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:31,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,697 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:31,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,698 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:31,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,699 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:31,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,699 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:31,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,700 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:31,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,700 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:31,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,701 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:31,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,701 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:31,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,702 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:31,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,702 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:31,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,703 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:31,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,703 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:31,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,704 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:31,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,705 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:31,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,705 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:31,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,706 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:31,706 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,706 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:31,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,707 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:31,707 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,707 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:31,711 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:02:31,711 [76] DEBUG index - Prepared sql query parameters : [193,1,Accounts,MailerExport,,2013-01-18 11:02:31] +01/18/13 11:02:31,716 [76] DEBUG index - Current user is: admin +01/18/13 11:02:31,716 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:31,716 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:31,716 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:31,718 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:31,719 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:31,721 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:31,721 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:31,723 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:31,723 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:31,724 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,724 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:31,724 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:31,724 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:31,724 [76] DEBUG index - including headers +01/18/13 11:02:31,724 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:31,725 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:31,729 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:31,729 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:31,733 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:02:31,734 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:02:31,735 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,735 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:02:31,735 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,735 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:02:31,736 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,736 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:02:31,736 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,736 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:02:31,737 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,737 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:02:31,737 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,738 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:02:31,738 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,738 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:02:31,738 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,739 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:02:31,739 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:02:31,739 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:02:31,749 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:31,749 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,749 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:02:31,749 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:31,750 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,750 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:31,751 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,751 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:02:31,751 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:02:31,751 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,752 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:31,752 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,753 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:02:31,753 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:02:31,753 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,754 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:31,755 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,755 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:02:31,755 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:02:31,756 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,756 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:31,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,756 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:02:31,757 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:02:31,757 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,757 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:31,758 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,758 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:02:31,758 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:31,759 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,759 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:31,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,760 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:02:31,760 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:31,760 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,760 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:02:31,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,761 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:02:31,761 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:02:31,762 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,762 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:31,762 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,762 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:02:31,763 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:31,763 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,763 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:31,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,765 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:02:31,765 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:31,766 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,766 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:31,767 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,767 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:02:31,767 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:31,768 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,768 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:31,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,768 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:02:31,769 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:02:31,769 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,769 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:31,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,770 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:02:31,770 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:31,771 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,771 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:31,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,772 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:02:31,772 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:02:31,772 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,772 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:31,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,773 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:02:31,773 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:02:31,774 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,774 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:31,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,774 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:02:31,774 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:02:31,775 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,775 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:31,776 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,777 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:02:31,777 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:02:31,777 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,778 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:31,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,778 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:02:31,778 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:02:31,779 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,779 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:31,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,780 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:02:31,780 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:02:31,780 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,780 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:02:31,780 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:02:31) method ... +01/18/13 11:02:31,781 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:02:31,781 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:02:31) method ... +01/18/13 11:02:31,781 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:02:31,781 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:31,781 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:31,781 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:31,782 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:31,783 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:02:31,783 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:02:31,783 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:02:31,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,789 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,789 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,792 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,792 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,792 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,792 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,792 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,792 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,792 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,793 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,793 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,793 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,793 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,793 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,793 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,793 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,794 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,794 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,794 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,794 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,794 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,794 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,794 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,795 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,795 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,795 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,795 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,795 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,795 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,795 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,796 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,796 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,796 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,796 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,796 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,796 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,797 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,797 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,797 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,797 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,797 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,797 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,797 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,798 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,798 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,798 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,798 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,798 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,798 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,798 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,799 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:02:31,803 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:02:31,803 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,804 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:02:31,804 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:31,806 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:31,806 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:31,807 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:02:31,807 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,807 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:31,808 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,808 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:02:31,808 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,808 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:31,809 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,809 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:31,809 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,809 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:31,810 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,810 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:02:31,810 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,810 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:31,810 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,811 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:02:31,811 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,811 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:31,811 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,811 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:02:31,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,812 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:02:31,812 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,812 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:02:31,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,813 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:31,813 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,813 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:02:31,813 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,813 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:31,814 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,814 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:31,814 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,814 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:02:31,815 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,815 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:02:31,815 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,815 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:02:31,816 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,816 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:02:31,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,817 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:02:31,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,817 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:02:31,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,817 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:02:31,818 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,818 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:02:31,818 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,818 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:02:31,819 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,819 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:02:31,819 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,819 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:02:31,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,820 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:02:31,820 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,820 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:02:31,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,821 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:31,821 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:31,821 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:31,825 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:02:31,826 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,826 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:02:31,827 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,827 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:02:31,828 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,828 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:02:31,828 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,829 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:02:31,829 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:31,829 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:31,830 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:02:31,832 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:02:31,832 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,833 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:02:31,833 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:02:31,836 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:02:31,844 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:31,845 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,845 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:31,846 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:31,846 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,846 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:02:31,846 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:31,846 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,846 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:02:31,846 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:31,846 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,847 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:31,847 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:31,847 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,847 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:02:31,847 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:31,847 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,847 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:02:31,848 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:31,848 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,848 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:02:31,848 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:31,848 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,848 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:02:31,848 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:31,849 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,849 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:02:31,849 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:31,849 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,849 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:02:31,849 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:02:31,850 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,850 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:02:31,853 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:31,853 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:31,853 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:31,854 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:31,854 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'MailerExport', + 'search_url' => '&query=true&advft_criteria=[{"groupid":"1","columnname":"vtiger_account:accountname:accountname:Accounts_Account_Name:V","comparator":"n","value":"demovtiger","columncondition":"and"},{"groupid":"1","columnname":"vtiger_account:account_no:account_no:Accounts_Account_No:V","comparator":"c","value":"A","columncondition":""}]&advft_criteria_groups=[null,{"groupcondition":""}]&searchtype=advance', + 'idlist' => '8:4:2:6', + 'change_owner' => '', + 'change_status' => '', + 'where_export' => ' ( (( vtiger_account.accountname <> \'demovtiger\') and ( vtiger_account.account_no LIKE \'%A%\') ))', + 'step' => 'ask', + 'excludedRecords' => '', + 'numOfRows' => '', + 'allids' => '', + 'selectedboxes' => '', + 'allselectedboxes' => '8;4;2;6;', + 'current_page_boxes' => '2;4;6;8;10;14;16;18;20', + 'viewname' => '4', + 'pagenum' => '1', + 'selected_id' => '8', +) +01/18/13 11:02:31,854 [76] INFO index - About to take action MailerExport +01/18/13 11:02:31,854 [76] DEBUG index - in MailerExport +01/18/13 11:02:31,854 [76] INFO index - current page is modules/Accounts/MailerExport.php +01/18/13 11:02:31,854 [76] INFO index - current module is Accounts +01/18/13 11:02:31,901 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:31,901 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:31,902 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:31,902 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,902 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,902 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,903 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,903 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:31,903 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:31,914 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:31,914 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:31,914 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:31,914 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:31,915 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:31,915 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:31,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,916 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:31,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,916 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:31,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,917 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:31,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,918 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:31,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,918 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:31,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,919 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:31,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,919 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:31,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,920 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:31,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,920 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:31,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,921 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:31,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,921 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:31,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,922 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:31,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,922 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:31,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,923 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:31,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,923 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:31,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,924 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:31,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,924 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:31,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,925 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:31,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,925 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:31,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,926 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:31,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,926 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:31,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,927 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:31,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,927 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:31,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,927 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:31,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,928 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:31,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,928 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:31,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,929 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:31,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,929 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:31,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,930 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:31,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,930 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:31,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,931 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:31,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,931 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:31,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,932 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:31,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,932 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:31,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,933 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:31,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,933 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:31,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,934 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:31,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,934 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:31,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,935 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:31,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,935 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:31,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,936 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:31,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,936 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:31,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,937 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:31,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,937 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:31,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,938 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:31,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,938 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:31,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:31,939 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:31,965 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:02:31,965 [76] DEBUG index - Prepared sql query parameters : [194,1,Accounts,MailerExport,,2013-01-18 11:02:31] +01/18/13 11:02:31,969 [76] DEBUG index - Current user is: admin +01/18/13 11:02:31,969 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:31,969 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:31,969 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:31,972 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:31,972 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:31,974 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:31,974 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:31,976 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:31,976 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:31,977 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:31,977 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:31,977 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:31,977 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:31,977 [76] DEBUG index - including headers +01/18/13 11:02:31,977 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:31,978 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:31,982 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:31,982 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:31,986 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:02:31,987 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:02:31,987 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,987 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:02:31,988 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,988 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:02:31,988 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,988 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:02:31,989 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,989 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:02:31,989 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,989 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:02:31,990 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,990 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:02:31,990 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,990 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:02:31,991 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:31,991 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:02:31,991 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:02:31,991 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:02:32,001 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,001 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,001 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:02:32,001 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:32,002 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,003 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:32,003 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,003 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:02:32,003 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:02:32,004 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,004 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:32,005 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,005 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:02:32,005 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:02:32,006 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,006 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:32,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,007 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:02:32,007 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:02:32,007 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,008 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:32,008 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,008 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:02:32,008 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:02:32,009 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,009 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,010 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,010 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:02:32,010 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:32,010 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,011 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:32,011 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,011 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:02:32,011 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:32,012 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,012 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:02:32,012 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,013 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:02:32,013 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:02:32,013 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,013 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:32,014 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,014 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:02:32,014 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:32,015 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,015 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:32,015 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,016 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:02:32,016 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:32,016 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,016 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:32,017 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,017 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:02:32,017 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:32,018 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,018 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:32,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,018 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:02:32,018 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:02:32,019 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,019 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:32,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,020 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:02:32,020 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:32,020 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,021 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:32,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,021 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:02:32,021 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:02:32,022 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,022 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:32,022 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,023 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:02:32,023 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:02:32,023 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,023 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:32,024 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,024 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:02:32,024 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:02:32,025 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,025 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:32,025 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,025 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:02:32,025 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:02:32,026 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,026 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:32,027 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,027 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:02:32,027 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:02:32,027 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,027 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:32,028 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,028 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:02:32,028 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:02:32,029 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,029 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:02:32,029 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:02:32) method ... +01/18/13 11:02:32,029 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:02:32,029 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:02:32) method ... +01/18/13 11:02:32,029 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:02:32,030 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:32,030 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:32,030 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:32,031 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:32,031 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:02:32,031 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:02:32,031 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:02:32,036 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,036 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,037 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,037 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,037 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,037 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,037 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,037 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,038 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,038 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,038 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,038 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,038 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,038 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,038 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,038 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,039 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,039 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,039 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,039 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,039 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,039 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,040 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,040 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,040 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,040 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,040 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,040 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,040 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,041 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,041 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,041 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,041 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,041 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,041 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,041 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,042 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,042 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,042 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,042 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,042 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,042 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,043 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,043 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,043 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,043 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,043 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,043 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,043 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,044 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,044 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,044 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,044 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,044 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,044 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,044 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,045 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,045 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,045 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,045 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,045 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,045 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,045 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,046 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,046 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,046 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,046 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:02:32,050 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:02:32,051 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,051 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:02:32,051 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:32,053 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:32,054 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:32,054 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:02:32,055 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,055 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:32,055 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,055 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:02:32,055 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,056 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:32,056 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,056 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:32,056 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,056 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:32,057 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,057 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:02:32,057 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,057 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:32,058 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,058 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:02:32,058 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,058 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:32,059 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,059 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:02:32,059 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,059 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:02:32,059 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,060 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:02:32,060 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,060 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:32,060 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,060 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:02:32,060 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,060 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:32,061 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,061 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:32,061 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,061 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:02:32,062 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,062 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:02:32,062 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,063 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:02:32,063 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,063 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:02:32,063 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,064 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:02:32,064 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,064 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:02:32,064 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,064 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:02:32,065 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,065 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:02:32,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,065 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:02:32,066 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,066 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:02:32,066 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,066 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:02:32,066 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,067 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:02:32,067 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,067 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:02:32,067 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,068 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:32,068 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:32,068 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:32,072 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:02:32,072 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,073 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:02:32,073 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,074 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:02:32,074 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,075 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:02:32,075 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,075 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:02:32,076 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,076 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:32,076 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:02:32,079 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:02:32,079 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:32,079 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:02:32,079 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:02:32,083 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:02:32,091 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,091 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,091 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:32,092 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:32,092 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,092 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:02:32,092 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:32,093 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,093 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:02:32,093 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,093 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,093 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:32,093 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,093 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,093 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:02:32,093 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:32,094 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,094 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:02:32,094 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:32,094 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,094 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:02:32,094 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:32,094 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,094 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:02:32,095 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:32,095 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,095 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:02:32,095 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:32,096 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,096 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:02:32,096 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:02:32,096 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,096 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:02:32,099 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:02:32,099 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,099 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:02:32,099 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:02:32,100 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,100 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:02:32,100 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:02:32,101 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,101 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:02:32,101 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:02:32,101 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,101 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:02:32,101 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:02:32,102 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,102 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:02:32,102 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:32,102 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,102 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:02:32,102 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:02:32,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,103 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:02:32,103 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:02:32,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,103 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:02:32,104 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:02:32,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,104 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:02:32,104 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:32,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,105 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:02:32,105 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:32,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,105 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:02:32,105 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:32,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,105 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:02:32,105 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:32,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,105 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:02:32,106 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:32,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,106 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:02:32,106 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:02:32,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,106 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:02:32,107 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:32,107 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,107 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:02:32,107 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:32,107 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,107 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:02:32,107 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:02:32,108 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,108 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:02:32,108 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:32,108 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,108 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:02:32,108 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:32,108 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,108 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:02:32,108 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:02:32,109 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,109 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:02:32,109 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:02:32,110 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,110 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:02:32,110 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:02:32,111 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,111 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:02:32,111 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,111 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,111 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:02:32,112 [76] DEBUG index - Entering isPermitted(Accounts,MailerExport,) method ... +01/18/13 11:02:32,112 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:32,129 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,129 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,129 [76] DEBUG index - query being executed : SELECT columnname,fieldlabel,uitype FROM vtiger_field WHERE tablename='vtiger_contactscf' and vtiger_field.presence in (0,2) +01/18/13 11:02:32,135 [76] DEBUG index - query being executed : SELECT fieldid, columnname, fieldlabel FROM vtiger_field WHERE tablename='vtiger_contactdetails' AND uitype='56' and vtiger_field.presence in (0,2) +01/18/13 11:02:32,141 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,141 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,141 [76] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/18/13 11:02:32,142 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,142 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,142 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/18/13 11:02:32,142 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,142 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,142 [76] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/18/13 11:02:32,142 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:32,142 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,143 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:02:32,211 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:32,211 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:32,211 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:32,213 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:02:32,213 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:02:32,214 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,145 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:48,282 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:48,282 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:48,283 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:48,283 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:48,283 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/18/13 11:02:48,283 [76] INFO index - About to take action index +01/18/13 11:02:48,283 [76] DEBUG index - in index +01/18/13 11:02:48,284 [76] INFO index - current page is modules/Accounts/index.php +01/18/13 11:02:48,284 [76] INFO index - current module is Accounts +01/18/13 11:02:48,333 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:48,333 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:48,333 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:48,333 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,334 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,334 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,334 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,334 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:48,334 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:48,345 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,346 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,346 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:48,346 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:48,346 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:48,347 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:48,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,348 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:48,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,348 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:48,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,349 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:48,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,349 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:48,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,350 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:48,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,350 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:48,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,351 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:48,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,352 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:48,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,352 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:48,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,353 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:48,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,353 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:48,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,354 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:48,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,354 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:48,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,355 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:48,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,355 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:48,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,356 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:48,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,356 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:48,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,357 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:48,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,357 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:48,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,358 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:48,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,359 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:48,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,359 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:48,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,360 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:48,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,360 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:48,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,360 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:48,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,361 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:48,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,361 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:48,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,362 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:48,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,362 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:48,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,363 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:48,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,363 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:48,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,364 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:48,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,365 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:48,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,365 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:48,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,366 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:48,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,367 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:48,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,367 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:48,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,368 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:48,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,368 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:48,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,369 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:48,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,369 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:48,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,370 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:48,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,370 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:48,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,371 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:48,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,371 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:48,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,372 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:48,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,372 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:48,377 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:02:48,378 [76] DEBUG index - Prepared sql query parameters : [195,1,Accounts,index,,2013-01-18 11:02:48] +01/18/13 11:02:48,382 [76] DEBUG index - Current user is: admin +01/18/13 11:02:48,382 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:48,382 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:48,382 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:48,384 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:48,384 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:48,386 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:48,387 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:48,388 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:48,389 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,389 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,389 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:48,390 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:48,390 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:48,390 [76] DEBUG index - including headers +01/18/13 11:02:48,390 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:48,391 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:48,394 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:48,394 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:48,397 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:02:48,398 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:02:48,398 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,398 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:02:48,399 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,399 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:02:48,399 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,399 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:02:48,400 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,400 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:02:48,400 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,400 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:02:48,401 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,401 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:02:48,401 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,401 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:02:48,402 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:02:48,402 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:02:48,402 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:02:48,402 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:02:48,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,417 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,417 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:02:48,417 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:48,418 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,418 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:48,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,418 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:02:48,419 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:02:48,419 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,419 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,420 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,420 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:02:48,420 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:02:48,421 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,421 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:48,422 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,422 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:02:48,422 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:02:48,423 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,423 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:48,424 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,424 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:02:48,424 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:02:48,424 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,425 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:48,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,425 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:02:48,425 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:48,426 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,426 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:48,427 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,427 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:02:48,427 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:48,427 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,428 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:02:48,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,428 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:02:48,428 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:02:48,429 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,429 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:48,429 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,430 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:02:48,430 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:48,430 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,430 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:48,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,431 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:02:48,431 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:48,432 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,432 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:48,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,432 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:02:48,433 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:48,433 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,433 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:48,434 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,434 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:02:48,434 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:02:48,434 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,435 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:48,435 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,435 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:02:48,435 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:48,436 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,436 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:48,436 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,437 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:02:48,437 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:02:48,437 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,437 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:48,438 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,438 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:02:48,438 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:02:48,439 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,439 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:48,439 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,439 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:02:48,439 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:02:48,440 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,440 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:48,441 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,441 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:02:48,441 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:02:48,442 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,442 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:48,443 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,443 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:02:48,443 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:02:48,444 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,444 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:48,444 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,444 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:02:48,444 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:02:48,445 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,445 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:02:48,445 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:02:48) method ... +01/18/13 11:02:48,446 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:02:48,446 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:02:48) method ... +01/18/13 11:02:48,446 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:02:48,446 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:48,446 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:48,446 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:48,447 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:48,447 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:02:48,447 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:02:48,448 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:02:48,452 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,459 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,459 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,459 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,460 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,460 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,460 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,460 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,460 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,460 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,461 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,461 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,461 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,461 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,461 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,461 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,461 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,461 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,462 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,462 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,462 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,462 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,462 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:02:48,467 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:02:48,467 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,467 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:02:48,468 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:48,472 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,472 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,473 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:02:48,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,473 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:02:48,474 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,474 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:02:48,474 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,474 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:02:48,474 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,475 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,475 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,475 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:48,475 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,475 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:02:48,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,476 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:02:48,476 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,476 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:02:48,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,476 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:02:48,477 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,477 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:02:48,477 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,477 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:02:48,478 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,478 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:02:48,478 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,478 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:02:48,479 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,479 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:02:48,479 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,479 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:02:48,480 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,480 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:02:48,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,480 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:02:48,480 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,480 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:02:48,481 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,481 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:02:48,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,482 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:02:48,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,482 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:02:48,483 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,483 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:02:48,483 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,483 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:02:48,483 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,484 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:02:48,484 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,484 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:02:48,484 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,484 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:02:48,484 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,485 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:02:48,485 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,485 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:02:48,485 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,485 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:02:48,486 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,486 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:48,486 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:02:48,486 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:48,490 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:02:48,491 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,491 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:02:48,492 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,492 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:02:48,493 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,493 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:02:48,494 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,494 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:02:48,494 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,495 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:48,495 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:02:48,497 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:02:48,497 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,498 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:02:48,498 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:02:48,501 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:02:48,509 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,510 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:48,511 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,511 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:02:48,511 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:48,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,511 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:02:48,511 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,512 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:48,512 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:48,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,512 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:02:48,512 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:48,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,512 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:02:48,512 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:48,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,513 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:02:48,513 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:48,513 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,513 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:02:48,513 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:48,514 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,514 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:02:48,514 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:48,514 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,514 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:02:48,514 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:02:48,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,515 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:02:48,517 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:02:48,518 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,518 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:02:48,518 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:02:48,519 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,519 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:02:48,519 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:02:48,519 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,519 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:02:48,520 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:02:48,520 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,520 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:02:48,520 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:02:48,521 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,521 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:02:48,521 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:48,521 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,521 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:02:48,521 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:02:48,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,522 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:02:48,522 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:02:48,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,522 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:02:48,522 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:02:48,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,523 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:02:48,523 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:48,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,523 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:02:48,524 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:48,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,524 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:02:48,524 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:48,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,524 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:02:48,524 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:48,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,524 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:02:48,524 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:48,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,525 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:02:48,525 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:02:48,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,525 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:02:48,525 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:48,526 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,526 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:02:48,526 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:48,526 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,526 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:02:48,526 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:02:48,527 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,527 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:02:48,527 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:48,527 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,527 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:02:48,527 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:48,527 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,527 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:02:48,527 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:02:48,528 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,528 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:02:48,528 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:02:48,529 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,529 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:02:48,529 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:02:48,529 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,530 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:02:48,530 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,530 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,530 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:02:48,530 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:02:48,531 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,535 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:48,535 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:48,536 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:48,537 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:48,537 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:02:48,537 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:48,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,538 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:02:48,538 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,538 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:02:48,539 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,539 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:02:48,539 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,540 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:02:48,540 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,540 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:02:48,541 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,541 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:02:48,541 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,542 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:02:48,542 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,542 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:02:48,542 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:48,543 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:48,543 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,543 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,543 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,543 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,543 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:48,543 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:48,552 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,552 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,552 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:48,552 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 11:02:48,552 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,552 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,553 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:02:48,553 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 11:02:48,556 [76] DEBUG index - Exiting initSortByField +01/18/13 11:02:48,556 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:48,557 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,557 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:48,558 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,558 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:02:48,558 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,558 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:02:48,559 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:48,559 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 11:02:48,559 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 11:02:48,559 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 11:02:48,560 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 11:02:48,560 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:02:48,560 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 11:02:48,561 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:02:48,561 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:02:48,561 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:02:48,561 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:02:48,564 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:48,564 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:48,566 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:48,567 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:48,569 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:48,569 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:02:48,569 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:02:48,569 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:02:48,570 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:02:48,570 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:02:48,570 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 11:02:48,570 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 11:02:48,571 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:02:48,571 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:02:48,574 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:02:48,574 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:02:48,575 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:02:48,575 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:02:48,577 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:48,577 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:02:48,577 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:02:48,578 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:02:48,578 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:02:48,578 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:02:48,578 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 11:02:48,578 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,578 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:02:48,582 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:48,582 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:48,583 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,583 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,583 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:48,583 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,583 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,584 [76] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:02:48,585 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:02:48,585 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:48,587 [76] DEBUG index - Entering when status=0 +01/18/13 11:02:48,587 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:02:48,587 [76] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:02:48,587 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,587 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,588 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 11:02:48,588 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:48,592 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,592 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 11:02:48,592 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:48,595 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 11:02:48,595 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:02:48,597 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 11:02:48,598 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,598 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 11:02:48,599 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 11:02:48,599 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:02:48,599 [76] DEBUG index - Entering when status=0 +01/18/13 11:02:48,599 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:02:48,599 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:02:48,599 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:02:48,600 [76] DEBUG index - Entering when status=0 +01/18/13 11:02:48,600 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:02:48,600 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:02:48,600 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,600 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,600 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:02:48,600 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:48,602 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:48,602 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,603 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:02:48,603 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:48,606 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,606 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:02:48,606 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,606 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:02:48,606 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,606 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:02:48,606 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:02:48,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:02:48,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:02:48,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:02:48,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:02:48,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,607 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:02:48,608 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:02:48,613 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:02:48,613 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:02:48,631 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 11:02:48,636 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:02:48,637 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:02:48,639 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:48,640 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:48,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,640 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:48,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,640 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:48,640 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,640 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:48,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,641 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:48,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,642 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,643 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,643 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,643 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,643 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,643 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:48,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,644 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:48,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,645 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:48,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,646 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:48,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,647 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:48,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,648 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:48,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,648 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:48,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:48,648 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:48,648 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 11:02:48,651 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:02:48,652 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,652 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 11:02:48,657 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:02:48,657 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:02:48,707 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,707 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 11:02:48,709 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,709 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 11:02:48,716 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,717 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 11:02:48,718 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,719 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 11:02:48,721 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:02:48,721 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:02:48,773 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,773 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 11:02:48,775 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,775 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 11:02:48,777 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,777 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 11:02:48,779 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,779 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 11:02:48,785 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,785 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 11:02:48,788 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,788 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 11:02:48,796 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,796 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 11:02:48,801 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,801 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 11:02:48,807 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,807 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 11:02:48,810 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:02:48,810 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:02:48,845 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,846 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 11:02:48,848 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,848 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 11:02:48,850 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,850 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 11:02:48,852 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,852 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 11:02:48,854 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 11:02:48,854 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:48,856 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,856 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 11:02:48,858 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,858 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 11:02:48,863 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:02:48,863 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:02:48,896 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,896 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 11:02:48,898 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,898 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 11:02:48,900 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,900 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 11:02:48,902 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,902 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 11:02:48,904 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,904 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 11:02:48,906 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,906 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 11:02:48,908 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,908 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 11:02:48,910 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,910 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 11:02:48,912 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,912 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 11:02:48,916 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,916 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 11:02:48,918 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,918 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 11:02:48,921 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:02:48,921 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 11:02:48,923 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:48,926 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:48,926 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:48,928 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:48,929 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:48,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,929 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:02:48,929 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:02:48,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,930 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:02:48,930 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:48,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,930 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:02:48,930 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:02:48,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,930 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:02:48,930 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:02:48,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,930 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:02:48,931 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:02:48,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,931 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 11:02:48,931 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:02:48,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,931 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:02:48,931 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:02:48,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,931 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 11:02:48,931 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:02:48,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,932 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:02:48,932 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:02:48,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,932 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 11:02:48,932 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:02:48,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,932 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:02:48,932 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:02:48,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,932 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 11:02:48,933 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:02:48,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,933 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:02:48,933 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:02:48,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,933 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 11:02:48,933 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:48,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,933 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:02:48,933 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:02:48,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,933 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:02:48,934 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,934 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:02:48,934 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,934 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:02:48,934 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:48,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,934 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:02:48,934 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:02:48,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,935 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:02:48,935 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,935 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:48,935 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:48,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,935 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:02:48,935 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:48,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,935 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:02:48,936 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:02:48,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,936 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:02:48,936 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:48,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,936 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:02:48,936 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:02:48,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,936 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:02:48,936 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:48,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,937 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:02:48,937 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:02:48,937 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,937 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:02:48,937 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:48,937 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,937 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:02:48,937 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:02:48,937 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,937 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:02:48,937 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:48,937 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,938 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:02:48,938 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:02:48,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,938 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 11:02:48,938 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:48,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,938 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:02:48,938 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:02:48,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,938 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:02:48,938 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,939 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,939 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 11:02:48,939 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:02:48,939 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,939 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:02:48,939 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:02:48,940 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,941 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 11:02:48,941 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:02:48,941 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,941 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 11:02:48,941 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:02:48,941 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,941 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:02:48,941 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:02:48,941 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,941 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 11:02:48,942 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:48,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,942 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 11:02:48,942 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:02:48,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,942 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:02:48,942 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:48,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,942 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:02:48,942 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:02:48,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,943 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:02:48,943 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:48,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,943 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:02:48,943 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:02:48,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,943 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:02:48,943 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:48,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,943 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 11:02:48,943 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:02:48,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,944 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:02:48,944 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:48,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,944 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:02:48,944 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:02:48,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,944 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:02:48,944 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:48,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,944 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:02:48,944 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:02:48,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,945 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:02:48,945 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:48,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,945 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:02:48,945 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:02:48,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,945 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:02:48,945 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:02:48,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,945 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:02:48,945 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:02:48,946 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:48,946 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 11:02:48,946 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,947 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,981 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:02:48,981 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 11:02:48,987 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:48,987 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:48,988 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 11:02:48,988 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:48,991 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 11:02:48,992 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:48,994 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 11:02:48,994 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:48,996 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:02:48,996 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:48,998 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:48,999 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:48,999 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:48,999 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,999 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,999 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:48,999 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:48,999 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,999 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,1000 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:48,1000 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:48,1000 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:02:48,1000 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:49,002 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 11:02:49,002 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:02:49,003 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,004 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,004 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,004 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,004 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,004 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,004 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,004 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,004 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,005 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,005 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,005 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,005 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,005 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,005 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,005 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,005 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,006 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,006 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,006 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,006 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,006 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,006 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,006 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,006 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,006 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,007 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,007 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,007 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,007 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,007 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,007 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,007 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,007 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,007 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,008 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,008 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,009 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/18/13 11:02:49,011 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 11:02:49,015 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,015 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,015 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,016 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,017 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 11:02:49,017 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:02:49,017 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,017 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,017 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,017 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,017 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,018 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,019 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,019 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,019 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:02:49,019 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,019 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,019 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:02:49,019 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,020 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:02:49,020 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,020 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:02:49,020 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,020 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:02:49,020 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,021 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:02:49,021 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,022 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,022 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,022 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,022 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 11:02:49,023 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:02:49,023 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:02:49,023 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:02:49,025 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/18/13 11:02:49,025 [76] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/18/13 11:02:49,026 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:02:49,027 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,027 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:02:49,028 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:49,031 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,031 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,031 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,032 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,033 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,033 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,033 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,034 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,034 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,034 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,034 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,034 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,035 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,035 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,036 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,036 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,036 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,036 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,037 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,037 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,037 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,037 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,038 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,038 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,039 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,039 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,039 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,040 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,040 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,040 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,040 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,040 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,041 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,041 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,042 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,042 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,042 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,042 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,042 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,043 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,043 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,043 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,047 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,047 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,047 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,048 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,048 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,048 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,048 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,048 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,048 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,048 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:02:49,050 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,051 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,051 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,052 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,052 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,052 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,052 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,053 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,053 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,053 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,054 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,054 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,054 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,054 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,055 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,055 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,055 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,055 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,056 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,056 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,057 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,057 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,058 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,058 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,058 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,058 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,059 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,059 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,060 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,060 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,060 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,060 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,061 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,061 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,061 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,061 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,062 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,062 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,062 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,062 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,063 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,067 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,067 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,067 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,067 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,067 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,067 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,067 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,067 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,068 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,068 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:02:49,070 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,071 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,071 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,072 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,072 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,072 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,072 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,073 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,073 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,073 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,074 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,074 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,074 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,074 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,075 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,075 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,075 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,075 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,076 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,076 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,076 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,077 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,077 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,078 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,078 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,078 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,079 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,079 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,079 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,080 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,080 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,080 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,081 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,081 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,081 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,081 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,081 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,082 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,082 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,082 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,082 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,083 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,087 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,087 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,087 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,087 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,087 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,087 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,087 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,088 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,088 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,088 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:49,103 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,103 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,104 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,105 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,105 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,105 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,105 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,106 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,106 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,106 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,106 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,107 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,107 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,108 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,108 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,108 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,108 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,109 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,109 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,109 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,109 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,110 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,110 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,110 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,111 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,111 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,111 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,112 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,112 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,112 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,112 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,113 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,113 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,113 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,114 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,114 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,114 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,114 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,114 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,114 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,115 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,119 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,119 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,119 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,119 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,119 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,120 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,120 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,120 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,120 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,120 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:02:49,122 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,122 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,123 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,124 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,124 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,124 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,124 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,125 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,125 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,125 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,125 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,125 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,126 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,126 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,126 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,127 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,127 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,127 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,128 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,128 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,128 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,128 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,129 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,129 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,129 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,130 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,130 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,131 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,131 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,131 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,131 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,131 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,132 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,132 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,132 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,133 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,133 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,133 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,133 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,133 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,134 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,134 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,138 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,138 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,138 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,138 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,139 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,139 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,139 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,139 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,139 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,139 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:02:49,141 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,142 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,142 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,143 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,143 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,143 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,143 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,144 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,144 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,144 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,145 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,145 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,145 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,145 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,146 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,146 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,146 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,146 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,147 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,147 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,147 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,148 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,148 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,149 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,149 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,149 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,150 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,150 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,150 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,150 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,150 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,151 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,151 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,152 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,152 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,152 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,152 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,152 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,152 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,153 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,153 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,153 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,157 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,157 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,157 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,158 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,158 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,158 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,158 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,158 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,158 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,158 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:02:49,161 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,161 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,161 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,162 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,162 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,162 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,162 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,163 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,163 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,164 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,164 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,164 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,164 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,164 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,165 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,165 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,165 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,165 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,166 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,167 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,167 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,167 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,168 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,168 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,168 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,168 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,169 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,169 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,170 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,170 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,170 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,170 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,171 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,171 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,171 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,171 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,171 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,172 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,172 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,172 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,172 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,173 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,177 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,177 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,177 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,177 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,177 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,177 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,178 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,178 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,178 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,178 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:02:49,180 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,181 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,181 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,182 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,182 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,182 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,182 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,183 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,183 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,183 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,183 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,184 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,184 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,184 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,185 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,185 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,185 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,185 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,186 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,186 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,186 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,186 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,187 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,187 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,188 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,188 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,188 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,189 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,189 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,189 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,189 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,189 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,190 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,190 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,190 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,191 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,191 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,191 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,191 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,191 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,192 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,192 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,196 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,196 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,196 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,197 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,197 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,197 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,197 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,197 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,197 [76] DEBUG index - Prepared sql query parameters : [16] +01/18/13 11:02:49,199 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,200 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,200 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,201 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,201 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,201 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,201 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,202 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,202 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,202 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,203 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,203 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,203 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,204 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,204 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,204 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,204 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,205 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,205 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,205 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,205 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,206 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,206 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,207 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,207 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,207 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,208 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,208 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,208 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,208 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,208 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,209 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,209 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,210 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,210 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,210 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,210 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,210 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,210 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,211 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,211 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,215 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,215 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,215 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,215 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,216 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,216 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,216 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,216 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,216 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,216 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 11:02:49,219 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,219 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,219 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,220 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,220 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,220 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,220 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,221 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,221 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,222 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,222 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,222 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,222 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,222 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,223 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,223 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,223 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,223 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,224 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,224 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,225 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,225 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,226 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,226 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,226 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,226 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,227 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,227 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:02:49,227 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,228 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,228 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,228 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,229 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,229 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,229 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,229 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:02:49,229 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:02:49,230 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,230 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:02:49,230 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:02:49,230 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:02:49,231 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:02:49,234 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:02:49,235 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:02:49,235 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,235 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,235 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:49,235 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,235 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,235 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:02:49,236 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:02:49,236 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:02:49,239 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,239 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,239 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:02:49,239 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,240 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,240 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:02:49,240 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,240 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,240 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:02:49,240 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,240 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,240 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:02:49,240 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,240 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,241 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:02:49,241 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,241 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,241 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:02:49,241 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 11:02:49,241 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 11:02:49,241 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,241 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,241 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:02:49,242 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,242 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,244 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,244 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,244 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,244 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,244 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,244 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:02:49,244 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,244 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,246 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,246 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,247 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,247 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,247 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,247 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:02:49,247 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,247 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,250 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,250 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,250 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,250 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,250 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,250 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:02:49,250 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,250 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,253 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,253 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,253 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,253 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:02:49,254 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,254 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,255 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,256 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,256 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,256 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,256 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,256 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:02:49,256 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,256 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,258 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,259 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,259 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:02:49,259 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,259 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,261 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,261 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,261 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,262 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:02:49,262 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,262 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,264 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,264 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:02:49,264 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,264 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,266 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,266 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,266 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,266 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,267 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,267 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:02:49,267 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,267 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,271 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,271 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,271 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,271 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,271 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,271 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:02:49,271 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,272 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,273 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,273 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,274 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,274 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,274 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,274 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:02:49,274 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,274 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,276 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,276 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,277 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,277 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,277 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,277 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:02:49,277 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,277 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,279 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,279 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,280 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,280 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,280 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,280 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:02:49,280 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,280 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,282 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,282 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,282 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,283 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:02:49,283 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,283 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,284 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,284 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,284 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,285 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,285 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,285 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:02:49,285 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,285 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,287 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,287 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,287 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,287 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,287 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,287 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:02:49,287 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,287 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,291 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,291 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,291 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,291 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,291 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,291 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:02:49,292 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,292 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,294 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,294 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,294 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,294 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,294 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,294 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:02:49,294 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,294 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,298 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,298 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,298 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,298 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,298 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,299 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:02:49,299 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,299 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,301 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,301 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,301 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,301 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,302 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,302 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:02:49,302 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,302 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,304 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,304 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,305 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,305 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,305 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,305 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:02:49,305 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,305 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,307 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,307 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,307 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,308 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,308 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,308 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:02:49,308 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,308 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:02:49,310 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,310 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,310 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:02:49,310 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,311 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,311 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:02:49,311 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,311 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,313 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,313 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,313 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,313 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,313 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,313 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:02:49,313 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,313 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,315 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,315 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,315 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,315 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,315 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,315 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:02:49,316 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,316 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,317 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,317 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,317 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,317 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,318 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,318 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:02:49,318 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,318 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,319 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,319 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,320 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,320 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,320 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,320 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:02:49,320 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,320 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,321 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,322 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,322 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,322 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,322 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,322 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:02:49,322 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,322 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,325 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,325 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,326 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,326 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,326 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:02:49,326 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,326 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,329 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,329 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,330 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,330 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,330 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,330 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:02:49,330 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,330 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,332 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,332 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,332 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,332 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,332 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,332 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:02:49,332 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,332 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,334 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,335 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,335 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,335 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,335 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,335 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:02:49,335 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,335 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,340 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,340 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,340 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,340 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,340 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,340 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:02:49,340 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,340 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,343 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,343 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,343 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,344 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,344 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,344 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:02:49,344 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,344 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:02:49,346 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,346 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:02:49,346 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,346 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:02:49,346 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:02:49,347 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:02:49,350 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,350 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,351 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:02:49,351 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 11:02:49,351 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 11:02:49,351 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,351 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,351 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 11:02:49,351 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 11:02:49,351 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 11:02:49,355 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 11:02:49,355 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:02:49,355 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 11:02:49,355 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:02:49,357 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:02:49,357 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:02:49,358 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:02:49,358 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,358 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,358 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 11:02:49,358 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:02:49,369 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:02:49,369 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:02:49,370 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:49,374 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,374 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,374 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:02:49,374 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,374 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,375 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:02:49,375 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,375 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,375 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:02:49,375 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,375 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,375 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:02:49,375 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,376 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:02:49,376 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,376 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:02:49,376 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,376 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:02:49,376 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,377 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:02:49,377 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,377 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,377 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:02:49,377 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,377 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,377 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:02:49,377 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,377 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,378 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:02:49,378 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,378 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:02:49,378 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,378 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:02:49,378 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,378 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:02:49,379 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,379 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:02:49,379 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,379 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:02:49,379 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,379 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:02:49,380 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,380 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,380 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:02:49,380 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,380 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,380 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:02:49,380 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,380 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,380 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:02:49,380 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,381 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:02:49,381 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,381 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:02:49,381 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,381 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:02:49,381 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,381 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,382 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:02:49,382 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,382 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,382 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:02:49,382 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,382 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,382 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:02:49,382 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,382 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,383 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:02:49,383 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,383 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:02:49,383 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,383 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:02:49,383 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,383 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,383 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:02:49,384 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,384 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:02:49,384 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,384 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:02:49,384 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,384 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,384 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:02:49,385 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,385 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 11:02:49,385 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 11:02:49,387 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:02:49,387 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:02:49,387 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:02:49,387 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:02:49,387 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:02:49,388 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:02:49,388 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:02:49,395 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:49,395 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:49,395 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 11:02:49,395 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 11:02:49,400 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:02:49,401 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:49,401 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:02:49,401 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:02:49,401 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:02:49,404 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:02:49,404 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:02:49,404 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:02:49,409 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,409 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,409 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,410 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,410 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:02:49,410 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,410 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:02:49,410 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,410 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,410 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,411 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,411 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,411 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,411 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,411 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,411 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,411 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,411 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,411 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,411 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,412 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,412 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,412 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,412 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,412 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,413 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,413 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,413 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,417 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:02:49,417 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:02:49,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,417 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,417 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:02:49,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,418 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:02:49,418 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,418 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:02:49,418 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,418 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,418 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:02:49,419 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,419 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,419 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:02:49,419 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,419 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,419 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:02:49,419 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,419 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,419 [76] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/18/13 11:02:49,419 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,420 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,420 [76] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/18/13 11:02:49,424 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:49,424 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:49,424 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,424 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,424 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:02:49,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,425 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,425 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:02:49,426 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:49,426 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:49,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,426 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:02:49,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:02:49,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:49,426 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 11:02:49,428 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:02:49,428 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:02:49,428 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:59,334 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:02:59,477 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:02:59,477 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:02:59,477 [76] DEBUG index - ****Starting for new session +01/18/13 11:02:59,478 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:02:59,478 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'account_no', + 'id' => '4', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:02:59,478 [76] INFO index - About to take action TooltipAjax +01/18/13 11:02:59,478 [76] DEBUG index - in TooltipAjax +01/18/13 11:02:59,478 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:02:59,479 [76] INFO index - current module is Tooltip +01/18/13 11:02:59,528 [76] DEBUG user - Entering Users() method ... +01/18/13 11:02:59,528 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:02:59,528 [76] DEBUG index - in getColumnFields Users +01/18/13 11:02:59,528 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:59,529 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:59,529 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:59,529 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:59,529 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:02:59,530 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:02:59,539 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:02:59,539 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:59,539 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:02:59,539 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:02:59,540 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:02:59,540 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:02:59,541 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,541 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:02:59,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,542 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:02:59,542 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,542 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:02:59,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,543 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:02:59,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,543 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:02:59,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,544 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:02:59,544 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,545 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:02:59,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,545 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:02:59,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,546 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:02:59,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,546 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:02:59,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,547 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:02:59,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,547 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:02:59,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,548 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:02:59,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,548 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:02:59,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,549 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:02:59,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,549 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:02:59,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,550 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:02:59,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,550 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:02:59,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,551 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:02:59,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,551 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:02:59,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,552 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:02:59,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,552 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:02:59,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,553 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:02:59,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,553 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:02:59,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,554 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:02:59,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,554 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:02:59,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,555 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:02:59,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,555 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:02:59,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,556 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:02:59,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,556 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:02:59,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,557 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:02:59,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,557 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:02:59,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,558 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:02:59,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,559 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:02:59,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,559 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:02:59,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,560 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:02:59,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,560 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:02:59,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,561 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:02:59,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,561 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:02:59,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,562 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:02:59,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,562 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:02:59,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,563 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:02:59,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,563 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:02:59,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,564 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:02:59,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,564 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:02:59,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,565 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:02:59,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:02:59,565 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:02:59,570 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:02:59,571 [76] DEBUG index - Prepared sql query parameters : [196,1,Tooltip,TooltipAjax,,2013-01-18 11:02:59] +01/18/13 11:02:59,574 [76] DEBUG index - Current user is: admin +01/18/13 11:02:59,574 [76] DEBUG index - Current theme is: softed +01/18/13 11:02:59,574 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:02:59,574 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:02:59,576 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:02:59,576 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:02:59,578 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:02:59,579 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:02:59,580 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:02:59,581 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:02:59,581 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:02:59,582 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:02:59,582 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:02:59,582 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:02:59,582 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:02:59,583 [76] DEBUG index - skipping headers +01/18/13 11:02:59,584 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:02:59,584 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:02:59,592 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:02:59,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:02:59,592 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:02:59,592 [76] DEBUG index - Prepared sql query parameters : [6,account_no] +01/18/13 11:02:59,594 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:02:59,594 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:00,152 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:00,297 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:00,297 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:00,297 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:00,298 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:00,298 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'accountname', + 'id' => '2', + 'modname' => 'Accounts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:03:00,298 [76] INFO index - About to take action TooltipAjax +01/18/13 11:03:00,298 [76] DEBUG index - in TooltipAjax +01/18/13 11:03:00,299 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:03:00,299 [76] INFO index - current module is Tooltip +01/18/13 11:03:00,348 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:00,348 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:00,348 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:00,348 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,349 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,349 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,349 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,349 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:00,349 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:00,359 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,359 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:00,359 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:00,360 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:00,361 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:00,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,361 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:00,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,362 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:00,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,363 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:00,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,363 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:00,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,364 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:00,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,364 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:00,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,365 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:00,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,366 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:00,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,366 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:00,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,367 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:00,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,367 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:00,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,368 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:00,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,368 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:00,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,369 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:00,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,369 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:00,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,370 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:00,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,370 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:00,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,371 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:00,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,371 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:00,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,372 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:00,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,373 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:00,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,373 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:00,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,374 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:00,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,374 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:00,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,374 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:00,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,375 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:00,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,375 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:00,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,376 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:00,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,377 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:00,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,377 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:00,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,378 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:00,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,378 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:00,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,379 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:00,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,380 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:00,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,380 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:00,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,381 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:00,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,381 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:00,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,382 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:00,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,382 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:00,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,383 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:00,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,383 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:00,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,384 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:00,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,385 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:00,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,385 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:00,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,386 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:00,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,386 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:00,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,387 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:00,391 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:00,391 [76] DEBUG index - Prepared sql query parameters : [197,1,Tooltip,TooltipAjax,,2013-01-18 11:03:00] +01/18/13 11:03:00,394 [76] DEBUG index - Current user is: admin +01/18/13 11:03:00,394 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:00,394 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:00,394 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:00,396 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:00,397 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:00,399 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:00,399 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:00,401 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:00,401 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:03:00,402 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:03:00,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,403 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:00,403 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:00,403 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:00,403 [76] DEBUG index - skipping headers +01/18/13 11:03:00,404 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:03:00,405 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,412 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:00,412 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,413 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:03:00,413 [76] DEBUG index - Prepared sql query parameters : [6,accountname] +01/18/13 11:03:00,415 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:03:00,415 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:00,650 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:00,793 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:00,793 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:00,793 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:00,794 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:00,794 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '2', +) +01/18/13 11:03:00,794 [76] INFO index - About to take action DetailView +01/18/13 11:03:00,794 [76] DEBUG index - in DetailView +01/18/13 11:03:00,795 [76] INFO index - current page is modules/Accounts/DetailView.php +01/18/13 11:03:00,795 [76] INFO index - current module is Accounts +01/18/13 11:03:00,846 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:00,846 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:00,846 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:00,846 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,847 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,847 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,847 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,847 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:00,847 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:00,858 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:00,858 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,859 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:00,859 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:00,859 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:00,860 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:00,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,861 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:00,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,861 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:00,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,862 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:00,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,862 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:00,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,863 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:00,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,863 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:00,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,864 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:00,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,865 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:00,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,865 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:00,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,866 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:00,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,866 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:00,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,867 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:00,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,867 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:00,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,868 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:00,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,868 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:00,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,869 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:00,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,869 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:00,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,870 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:00,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,870 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:00,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,871 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:00,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,872 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:00,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,872 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:00,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,873 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:00,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,873 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:00,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,873 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:00,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,874 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:00,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,874 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:00,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,875 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:00,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,876 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:00,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,876 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:00,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,877 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:00,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,877 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:00,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,878 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:00,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,879 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:00,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,879 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:00,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,880 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:00,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,880 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:00,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,881 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:00,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,881 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:00,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,882 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:00,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,883 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:00,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,883 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:00,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,884 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:00,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,884 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:00,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,885 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:00,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,885 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:00,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:00,886 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:00,892 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:00,893 [76] DEBUG index - Prepared sql query parameters : [198,1,Accounts,DetailView,2,2013-01-18 11:03:00] +01/18/13 11:03:00,909 [76] DEBUG index - Current user is: admin +01/18/13 11:03:00,910 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:00,910 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:00,910 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:00,912 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:00,912 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:00,914 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:00,914 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:00,916 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:00,917 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:00,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,918 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:00,918 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:00,918 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:00,918 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,918 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:00,918 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,918 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:00,918 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:00,927 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:00,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:00,928 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:00,928 [76] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/18/13 11:03:00,928 [76] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/18/13 11:03:00,928 [76] DEBUG index - Prepared sql query parameters : [1,2] +01/18/13 11:03:00,932 [76] INFO index - in track view method Accounts +01/18/13 11:03:00,932 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:00,932 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:03:00,935 [76] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/18/13 11:03:00,935 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:00,937 [76] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/18/13 11:03:00,937 [76] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/18/13 11:03:00,937 [76] DEBUG index - Prepared sql query parameters : [1,Accounts,2,vtiger] +01/18/13 11:03:00,940 [76] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/18/13 11:03:00,940 [76] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/18/13 11:03:00,942 [76] DEBUG Tracker - history size: (current, max)(5, 5) +01/18/13 11:03:00,942 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:00,943 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:00,943 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:00,943 [76] DEBUG index - including headers +01/18/13 11:03:00,943 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:03:00,944 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:03:00,947 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:00,948 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:00,950 [76] DEBUG index - Entering in function getTagCloudView(1) +01/18/13 11:03:00,950 [76] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/18/13 11:03:00,950 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:00,953 [76] DEBUG index - Exiting from function getTagCloudView(1) +01/18/13 11:03:00,953 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:03:00,954 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:03:00,954 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,954 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:03:00,955 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,955 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:03:00,955 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,956 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:03:00,956 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,956 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:03:00,956 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,956 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:03:00,957 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,957 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:03:00,957 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,957 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:03:00,958 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:00,958 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:03:00,958 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:03:00,958 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:03:00,967 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:00,967 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,967 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:03:00,967 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:00,968 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,968 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:03:00,969 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,969 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:03:00,969 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:03:00,969 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,970 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:00,970 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,971 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:03:00,971 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:03:00,971 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,971 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:00,973 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,973 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:03:00,973 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:03:00,974 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,974 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:00,974 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,974 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:03:00,974 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:03:00,975 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,975 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:00,976 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,976 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:03:00,976 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:00,977 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,977 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:00,977 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,977 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:03:00,977 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:03:00,978 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,978 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:03:00,979 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,979 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:03:00,979 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:03:00,979 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,980 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:00,980 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,980 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:03:00,980 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:03:00,981 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,981 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:03:00,982 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,982 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:03:00,982 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:03:00,982 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,983 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:00,983 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,983 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:03:00,983 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:00,984 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,984 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:03:00,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,985 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:03:00,985 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:03:00,985 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,985 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:00,986 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,986 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:03:00,986 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:03:00,987 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,987 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:00,988 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,988 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:03:00,988 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:03:00,988 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,989 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:03:00,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,989 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:03:00,989 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:03:00,990 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,990 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:03:00,991 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,991 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:03:00,991 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:03:00,991 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,991 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:00,993 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,993 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:03:00,993 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:03:00,994 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,994 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:00,994 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,994 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:03:00,994 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:03:00,995 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,995 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:03:00,996 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:00,996 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:03:00,996 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:03:00,997 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:00,997 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:03:00,997 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:03:00) method ... +01/18/13 11:03:00,997 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:00,997 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:03:00) method ... +01/18/13 11:03:00,998 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:03:00,998 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:00,998 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:00,999 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:03:00,999 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:03:00,999 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:03:01,003 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,004 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,004 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,004 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,004 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,004 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,004 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,005 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,005 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,005 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,005 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,005 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,005 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,005 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,006 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,006 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,006 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,006 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,006 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,006 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,006 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,007 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,007 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,007 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,007 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,007 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,007 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,007 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,008 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,008 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,008 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,008 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,008 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,008 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,009 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,009 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,009 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,009 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,009 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,009 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,009 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,010 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,010 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,010 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,010 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,010 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,010 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,010 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,011 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,011 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,011 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,011 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,011 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,011 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,011 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,012 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,012 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,012 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,012 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,012 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,012 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,012 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,013 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,013 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,013 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,013 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,013 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:03:01,017 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:03:01,018 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,018 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:03:01,018 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,021 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,021 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,022 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:01,022 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,022 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:01,022 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,023 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:03:01,023 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,023 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:03:01,023 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,023 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,024 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,024 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:01,024 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,024 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:01,024 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,025 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:01,025 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,025 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:01,025 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,025 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:03:01,026 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,026 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:03:01,026 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,026 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:03:01,027 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,027 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:01,027 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,027 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:03:01,028 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,028 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:01,028 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,028 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:03:01,028 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,028 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:01,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,029 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:03:01,029 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,029 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:01,030 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,030 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:03:01,030 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,030 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:03:01,031 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,031 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:03:01,031 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,032 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:01,032 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,032 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:03:01,032 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,032 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:03:01,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,033 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:03:01,033 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,033 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:01,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,033 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:03:01,034 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,034 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:01,034 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,034 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:03:01,035 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,035 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:03:01,035 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:03:01,035 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,039 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:01,040 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,040 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:03:01,041 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,041 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:03:01,042 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,042 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:03:01,042 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,043 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:03:01,043 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,043 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:03:01,044 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:03:01,051 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:03:01,051 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,051 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:03:01,051 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:03:01,055 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:03:01,062 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,062 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,062 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,062 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:01,063 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,063 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:03:01,063 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:03:01,063 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,063 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:03:01,063 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,063 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,063 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,064 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:01,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,064 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:03:01,064 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:01,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,064 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:03:01,064 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:01,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,065 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:01,065 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:01,065 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,065 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:01,065 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:01,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,066 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:03:01,066 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:01,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,066 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:01,066 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:03:01,067 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,067 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:03:01,069 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:03:01,069 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,070 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:03:01,070 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:03:01,070 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,070 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:03:01,070 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:03:01,071 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,071 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:03:01,071 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:03:01,072 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,072 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:03:01,072 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:03:01,072 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,072 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:03:01,072 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:01,073 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,073 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:03:01,073 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:03:01,073 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,073 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:03:01,073 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:03:01,074 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,074 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:03:01,074 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:03:01,075 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,075 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:03:01,075 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:01,075 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,075 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:01,075 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:01,075 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,075 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:03:01,075 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:03:01,076 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,076 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:03:01,076 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:03:01,076 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,076 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:03:01,076 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:01,076 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,076 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:03:01,076 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:03:01,077 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,077 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:03:01,077 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:01,077 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,077 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:01,077 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:03:01,077 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,078 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:03:01,078 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:03:01,078 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,078 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:03:01,078 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:03:01,079 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,079 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:03:01,079 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:03:01,079 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,079 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:03:01,079 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:01,080 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,080 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:01,080 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:01,081 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,081 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:03:01,081 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:01,081 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,081 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:03:01,082 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,082 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,082 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:03:01,082 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:01,083 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,085 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,085 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,085 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,085 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,086 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,086 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:03:01,086 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,088 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/18/13 11:03:01,088 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,091 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/18/13 11:03:01,091 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,093 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/18/13 11:03:01,094 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,095 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/18/13 11:03:01,095 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,097 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,097 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,099 [76] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/18/13 11:03:01,099 [76] DEBUG index - id is 2 +01/18/13 11:03:01,099 [76] DEBUG index - name is vtiger +01/18/13 11:03:01,099 [76] INFO index - Account detail view +01/18/13 11:03:01,099 [76] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/18/13 11:03:01,099 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,099 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,100 [76] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/18/13 11:03:01,100 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:01,103 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,103 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:03:01,103 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,103 [76] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/18/13 11:03:01,104 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,104 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:03:01,104 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,104 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:03:01,105 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/18/13 11:03:01,105 [76] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/18/13 11:03:01,116 [76] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/18/13 11:03:01,116 [76] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/18/13 11:03:01,117 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,117 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,117 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:03:01,118 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,118 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,118 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,118 [76] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/18/13 11:03:01,119 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,119 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,119 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:03:01,119 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,120 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,120 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,120 [76] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/18/13 11:03:01,121 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,121 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,121 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:03:01,121 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,121 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,121 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,122 [76] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/18/13 11:03:01,123 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,123 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:03:01,123 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,123 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,123 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,124 [76] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/18/13 11:03:01,124 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,124 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,125 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:03:01,125 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,125 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,125 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,125 [76] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/18/13 11:03:01,126 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,126 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:03:01,126 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,127 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,127 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,127 [76] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/18/13 11:03:01,128 [76] DEBUG index - Entering getAccountName(0) method ... +01/18/13 11:03:01,128 [76] INFO index - in getAccountName 0 +01/18/13 11:03:01,128 [76] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/18/13 11:03:01,128 [76] DEBUG index - Prepared sql query parameters : [0] +01/18/13 11:03:01,130 [76] DEBUG index - Exiting getAccountName method ... +01/18/13 11:03:01,130 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,130 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,130 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:03:01,131 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,131 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,131 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,131 [76] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/18/13 11:03:01,132 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,132 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,132 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:03:01,132 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,133 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,133 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,133 [76] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/18/13 11:03:01,134 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,134 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,134 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:03:01,134 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,134 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,134 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,135 [76] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/18/13 11:03:01,136 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,136 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,136 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:03:01,136 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,136 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,136 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,137 [76] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/18/13 11:03:01,137 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,138 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,138 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:03:01,138 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,138 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,138 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,139 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/18/13 11:03:01,139 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,139 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,139 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:03:01,140 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,140 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,140 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,140 [76] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/18/13 11:03:01,141 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,141 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,141 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:03:01,141 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:03:01,141 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:03:01,141 [76] DEBUG index - Entering getRoleInformation(H2) method ... +01/18/13 11:03:01,142 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/18/13 11:03:01,142 [76] DEBUG index - Prepared sql query parameters : [H2] +01/18/13 11:03:01,144 [76] DEBUG index - Exiting getRoleInformation method ... +01/18/13 11:03:01,144 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/18/13 11:03:01,144 [76] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/18/13 11:03:01,147 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:03:01,147 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:03:01,147 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,147 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:03:01,152 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 198 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:03:01,153 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,153 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,155 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,155 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:03:01,155 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,155 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:03:01,159 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,160 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:03:01,160 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,160 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:03:01,164 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,164 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:03:01,164 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:03:01,165 [76] DEBUG index - Prepared sql query parameters : [industry] +01/18/13 11:03:01,167 [76] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:03:01,167 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:03:01,190 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/18/13 11:03:01,191 [76] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/18/13 11:03:01,192 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/18/13 11:03:01,193 [76] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/18/13 11:03:01,193 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,193 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,193 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,194 [76] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/18/13 11:03:01,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,195 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:03:01,195 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:03:01,195 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:03:01,195 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:03:01,195 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:03:01,196 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,196 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:03:01,199 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 198 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:03:01,200 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,200 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,202 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,202 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:03:01,203 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,203 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:03:01,207 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,207 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:03:01,207 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,207 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:03:01,211 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,211 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:03:01,212 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:03:01,212 [76] DEBUG index - Prepared sql query parameters : [rating] +01/18/13 11:03:01,217 [76] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:03:01,217 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:03:01,225 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:03:01,225 [76] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/18/13 11:03:01,226 [76] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/18/13 11:03:01,226 [76] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/18/13 11:03:01,226 [76] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/18/13 11:03:01,226 [76] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/18/13 11:03:01,226 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,226 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,226 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,227 [76] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/18/13 11:03:01,228 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,228 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,228 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:03:01,228 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:03:01,228 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:03:01,228 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:03:01,228 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:03:01,228 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,229 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:03:01,233 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 198 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:03:01,234 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,235 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,237 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,237 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:03:01,237 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,237 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:03:01,240 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,240 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:03:01,240 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:03:01,241 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:03:01,244 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:03:01,244 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:03:01,244 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:03:01,244 [76] DEBUG index - Prepared sql query parameters : [accounttype] +01/18/13 11:03:01,246 [76] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:03:01,246 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:03:01,257 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:03:01,257 [76] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/18/13 11:03:01,257 [76] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/18/13 11:03:01,257 [76] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:03:01,258 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:03:01,259 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,259 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,259 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,259 [76] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/18/13 11:03:01,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,260 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,260 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:03:01,260 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,261 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,261 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,261 [76] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/18/13 11:03:01,262 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,262 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,262 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:03:01,262 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,262 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,262 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,263 [76] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/18/13 11:03:01,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,264 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:03:01,264 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:03:01,264 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:03:01,264 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:03:01,264 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,267 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:03:01,267 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:03:01,267 [76] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/18/13 11:03:01,267 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:03:01,267 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,267 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,267 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,268 [76] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/18/13 11:03:01,269 [76] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/18/13 11:03:01,269 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,273 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:03:01,273 [76] INFO index - in getOwnerName 1 +01/18/13 11:03:01,273 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:03:01,273 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,273 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,279 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:03:01,279 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,282 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,283 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,283 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:01,283 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,283 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,283 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:03:01,283 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:03:01,286 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:03:01,286 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:03:01,288 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:03:01,288 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:03:01,288 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:03:01,292 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,293 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,296 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,296 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,300 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:03:01,300 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:03:01,300 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:03:01,300 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:03:01,301 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:03:01,301 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:03:01,301 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:03:01,302 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:03:01,302 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:03:01,304 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:03:01,304 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:03:01,305 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:03:01,305 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:03:01,305 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:03:01,305 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:03:01,305 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,305 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,305 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,306 [76] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/18/13 11:03:01,307 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,307 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,307 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:03:01,307 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,307 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,307 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,308 [76] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/18/13 11:03:01,309 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,309 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,309 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:03:01,309 [76] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/18/13 11:03:01,309 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:01,309 [76] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/18/13 11:03:01,310 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:03:01,310 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,310 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,310 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,310 [76] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/18/13 11:03:01,311 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,311 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,311 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:03:01,311 [76] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/18/13 11:03:01,312 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:01,312 [76] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/18/13 11:03:01,312 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:03:01,312 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,312 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,312 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,313 [76] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/18/13 11:03:01,314 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,314 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,314 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:03:01,314 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,314 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,314 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,315 [76] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/18/13 11:03:01,316 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,316 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,316 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:03:01,316 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,316 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,316 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,317 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/18/13 11:03:01,318 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,318 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,318 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:03:01,318 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,318 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,318 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,319 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/18/13 11:03:01,320 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,320 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,320 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:03:01,320 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,320 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,320 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,321 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/18/13 11:03:01,321 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,321 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,322 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:03:01,322 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,322 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,322 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,322 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/18/13 11:03:01,323 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,323 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,323 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:03:01,323 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,324 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,324 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,324 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/18/13 11:03:01,325 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,325 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:03:01,325 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,325 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,325 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,326 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/18/13 11:03:01,327 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,327 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,327 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:03:01,327 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,327 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,327 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,328 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/18/13 11:03:01,328 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,328 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,329 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:03:01,329 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,329 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,329 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,329 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/18/13 11:03:01,330 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,330 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,330 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:03:01,330 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,331 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,331 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,331 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/18/13 11:03:01,332 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,332 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,332 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:03:01,332 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,332 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,332 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,333 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/18/13 11:03:01,334 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,334 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,334 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:03:01,334 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,334 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,334 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,335 [76] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/18/13 11:03:01,336 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,336 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,336 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:03:01,336 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:01,336 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:01,336 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:03:01,336 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,337 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:03:01,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,337 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:03:01,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,337 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:03:01,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,338 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:03:01,338 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,338 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,338 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:03:01,338 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,338 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,338 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:03:01,338 [76] DEBUG index - Exiting getDetailBlockInformation method ... +01/18/13 11:03:01,338 [76] DEBUG index - Exiting getBlocks method ... +01/18/13 11:03:01,338 [76] DEBUG index - Entering updateInfo(2) method ... +01/18/13 11:03:01,339 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:03:01,339 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,341 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:03:01,341 [76] INFO index - in getOwnerName 1 +01/18/13 11:03:01,341 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:03:01,341 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:01,341 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:01,344 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:03:01,344 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,346 [76] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/18/13 11:03:01,346 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:01,347 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:03:01,347 [76] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/18/13 11:03:01,347 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,347 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,347 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:03:01,347 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:01,347 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:01,349 [76] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/18/13 11:03:01,349 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,351 [76] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/18/13 11:03:01,352 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,352 [76] DEBUG index - Entering isPermitted(Accounts,Delete,2) method ... +01/18/13 11:03:01,353 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,353 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:03:01,353 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,354 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:03:01,354 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:03:01,356 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,356 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,357 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,357 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,358 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,358 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:01,358 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,358 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,359 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,359 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,359 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,359 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,359 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:01,359 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,360 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:01,360 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,360 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:03:01,360 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:03:01,364 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,365 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,365 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:03:01,365 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:03:01,383 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:03:01,384 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,385 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:03:01,385 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:03:01,385 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:03:01,388 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:03:01,388 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,388 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,388 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:01,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:01,388 [76] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/18/13 11:03:01,389 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:01,392 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,392 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:03:01,392 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,392 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:03:01,392 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,393 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:03:01,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,393 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:03:01,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,393 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:03:01,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,394 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:03:01,394 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,394 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:03:01,394 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,394 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:03:01,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,395 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:03:01,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,395 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:03:01,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,395 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:03:01,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,396 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:03:01,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,396 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:03:01,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,396 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:03:01,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,397 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:03:01,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,397 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:03:01,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,398 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:03:01,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,398 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:03:01,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,398 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:03:01,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,399 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:01,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,399 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:03:01,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,399 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:03:01,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,400 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:03:01,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,400 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:03:01,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,400 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:03:01,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,401 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:03:01,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,401 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:03:01,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,401 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:03:01,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,402 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:03:01,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,402 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:03:01,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,402 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:03:01,403 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,403 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:03:01,403 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,403 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:03:01,403 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,403 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:03:01,404 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,404 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,404 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:03:01,404 [76] DEBUG index - Entering split_validationdataArray(Array) method ... +01/18/13 11:03:01,404 [76] DEBUG index - Exiting split_validationdataArray method ... +01/18/13 11:03:01,404 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:03:01,404 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:01,405 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,405 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:03:01,406 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,406 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:03:01,406 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,406 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:03:01,407 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,407 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:03:01,408 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,408 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:03:01,408 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,408 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:01,409 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,409 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:03:01,410 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,410 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:03:01,410 [76] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/18/13 11:03:01,410 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,411 [76] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/18/13 11:03:01,412 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:03:01,412 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:03:01,414 [76] DEBUG index - Entering when status=0 +01/18/13 11:03:01,414 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:03:01,414 [76] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/18/13 11:03:01,414 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,415 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,415 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,415 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,415 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,416 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,416 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,416 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 35 +01/18/13 11:03:01,436 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,436 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,436 [76] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/18/13 11:03:01,436 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:01,440 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:03:01,441 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,441 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:03:01,441 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:01,444 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:03:01,444 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:01,444 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,444 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:01,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:01,445 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:03:01,445 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:03:01,445 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:01,445 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,445 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:01,445 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,445 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:03:01,445 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:03:01,457 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:01,457 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,457 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:01,457 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,457 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,458 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:01,459 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:03:01,459 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:01,459 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,459 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:01,459 [76] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/18/13 11:03:01,460 [76] DEBUG index - Prepared sql query parameters : [2013-01-18 11:03:01,2,1] +01/18/13 11:03:01,466 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,466 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,466 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/18/13 11:03:01,466 [76] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/18/13 11:03:01,476 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,476 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,476 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,476 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,477 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:03:01,477 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,477 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:03:01,477 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,478 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,478 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,478 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,478 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,478 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,478 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,478 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,478 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,478 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,478 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,479 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,479 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,479 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,479 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:01,480 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,480 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,480 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:03:01,480 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,480 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,480 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:03:01,481 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,481 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:03:01,481 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,481 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:03:01,481 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,482 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:03:01,482 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,482 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:03:01,482 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,482 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:01,482 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,482 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,482 [76] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/18/13 11:03:01,483 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,483 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:03:01,483 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,483 [76] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/18/13 11:03:01,483 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,483 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:01,483 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,484 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:01,484 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,484 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,484 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:01,484 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,484 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,484 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:01,484 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,485 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:03:01,485 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,485 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:01,485 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,485 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:03:01,485 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,485 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,486 [76] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/18/13 11:03:01,591 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,591 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,591 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,591 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,591 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,591 [76] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/18/13 11:03:01,592 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:01,595 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:01,595 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,595 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:01,595 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,595 [76] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/18/13 11:03:01,596 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,596 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,596 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,596 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,597 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,597 [76] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/18/13 11:03:01,597 [76] DEBUG index - Prepared sql query parameters : [ModComments] +01/18/13 11:03:01,600 [76] DEBUG lead - Entering Leads() method ... +01/18/13 11:03:01,600 [76] DEBUG index - Entering getColumnFields(Leads) method ... +01/18/13 11:03:01,600 [76] DEBUG index - in getColumnFields Leads +01/18/13 11:03:01,600 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:03:01,600 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,601 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:03:01,601 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,601 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:01,601 [76] DEBUG index - Prepared sql query parameters : [7] +01/18/13 11:03:01,609 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:03:01,609 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,609 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,610 [76] DEBUG lead - Exiting Lead method ... +01/18/13 11:03:01,610 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:03:01,610 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:03:01,610 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:01,610 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,610 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:01,610 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,610 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:01,611 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:03:01,621 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:01,621 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,622 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,622 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,622 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,622 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,622 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,623 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,623 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,623 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,623 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,623 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,623 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,624 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:03:01,624 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:03:01,624 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:01,624 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,624 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:01,624 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,624 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:01,624 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,631 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:01,631 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,631 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,633 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,633 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,634 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,634 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,634 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,636 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:01,636 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:01,636 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:01,636 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,636 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:01,637 [76] DEBUG index - Entering getTabid(ModComments) method ... +01/18/13 11:03:01,637 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:01,637 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/18/13 11:03:01,637 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:01,664 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:01,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:01,664 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,664 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,664 [76] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/18/13 11:03:01,664 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:01,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:01,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,665 [76] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/18/13 11:03:01,665 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:01,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:01,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,665 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,665 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:03:01,665 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:01,666 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:01,666 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:03:01,666 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:03:01,667 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:01,667 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,434 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:08,590 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:08,590 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:08,590 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:08,591 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:08,591 [76] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '2', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:08,591 [76] INFO index - About to take action CallRelatedList +01/18/13 11:03:08,591 [76] DEBUG index - in CallRelatedList +01/18/13 11:03:08,591 [76] INFO index - current page is modules/Accounts/CallRelatedList.php +01/18/13 11:03:08,591 [76] INFO index - current module is Accounts +01/18/13 11:03:08,642 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:08,642 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:08,642 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:08,642 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:08,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,643 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:08,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,643 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:08,643 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:08,655 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:08,655 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,655 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:08,655 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:08,656 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:08,656 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:08,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,657 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:08,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,658 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:08,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,658 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:08,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,659 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:08,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,659 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:08,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,660 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:08,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,661 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:08,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,661 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:08,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,662 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:08,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,662 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:08,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,663 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:08,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,663 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:08,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,664 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:08,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,665 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:08,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,665 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:08,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,666 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:08,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,666 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:08,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,667 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:08,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,667 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:08,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,668 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:08,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,668 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:08,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,669 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:08,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,670 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:08,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,670 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:08,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,670 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:08,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,671 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:08,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,671 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:08,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,672 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:08,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,672 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:08,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,673 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:08,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,673 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:08,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,674 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:08,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,675 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:08,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,675 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:08,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,676 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:08,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,676 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:08,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,677 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:08,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,677 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:08,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,678 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:08,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,679 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:08,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,679 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:08,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,680 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:08,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,680 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:08,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,681 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:08,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,681 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:08,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,682 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:08,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,682 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:08,687 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:08,688 [76] DEBUG index - Prepared sql query parameters : [199,1,Accounts,CallRelatedList,2,2013-01-18 11:03:08] +01/18/13 11:03:08,692 [76] DEBUG index - Current user is: admin +01/18/13 11:03:08,692 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:08,692 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:08,692 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:08,694 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:08,694 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:08,697 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:08,697 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:08,699 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:08,699 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,700 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,700 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:08,700 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:08,700 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:08,700 [76] DEBUG index - including headers +01/18/13 11:03:08,700 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:03:08,701 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:03:08,704 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:08,705 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:08,707 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:03:08,709 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:03:08,709 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,709 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:03:08,710 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,710 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:03:08,710 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,710 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:03:08,711 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,711 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:03:08,711 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,711 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:03:08,711 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,712 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:03:08,712 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,712 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:03:08,712 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:03:08,712 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:03:08,713 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:03:08,713 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:03:08,722 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,722 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,722 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:03:08,722 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:08,723 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,723 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:03:08,723 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,724 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:03:08,724 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:03:08,724 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,724 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:08,725 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,725 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:03:08,725 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:03:08,726 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,726 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:08,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,728 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:03:08,728 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:03:08,728 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,729 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:08,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,729 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:03:08,729 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:03:08,730 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,730 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:08,731 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,731 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:03:08,731 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:08,731 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,731 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:08,732 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,732 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:03:08,732 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:03:08,733 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,733 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:03:08,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,733 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:03:08,734 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:03:08,734 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,734 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:08,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,735 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:03:08,735 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:03:08,736 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,736 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:03:08,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,737 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:03:08,737 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:03:08,737 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,737 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:08,738 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,738 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:03:08,738 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:08,739 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,739 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:03:08,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,739 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:03:08,740 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:03:08,740 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,740 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:08,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,741 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:03:08,741 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:03:08,742 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,742 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:08,742 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,742 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:03:08,743 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:03:08,743 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,743 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:03:08,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,744 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:03:08,744 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:03:08,745 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,745 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:03:08,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,745 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:03:08,745 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:03:08,746 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,746 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:08,747 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,747 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:03:08,747 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:03:08,748 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,748 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:08,749 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,749 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:03:08,749 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:03:08,749 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,750 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:03:08,750 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,750 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:03:08,750 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:03:08,751 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,751 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:03:08,751 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:03:08) method ... +01/18/13 11:03:08,751 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:08,751 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:03:08) method ... +01/18/13 11:03:08,752 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:03:08,752 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:08,752 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:08,753 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:03:08,753 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:03:08,754 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:03:08,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,762 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,762 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,762 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,762 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,762 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,762 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,763 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,763 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,763 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,763 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,763 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,763 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,763 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,763 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,764 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,764 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,764 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,764 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,764 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,764 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,765 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,765 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,765 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,765 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,765 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,765 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,765 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,765 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,766 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,766 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,766 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,766 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,766 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,766 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,767 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,767 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,767 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,767 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,767 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,767 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,768 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,768 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,768 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,768 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,768 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,768 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,768 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,769 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,769 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:03:08,773 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:03:08,774 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,774 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:03:08,774 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:08,776 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:03:08,776 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:03:08,777 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:08,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,777 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:08,778 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,778 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:03:08,778 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,778 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:03:08,779 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,779 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,779 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,779 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:08,780 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,780 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:08,780 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,780 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:08,781 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,781 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:08,781 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,781 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:03:08,781 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,781 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:03:08,782 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,782 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:03:08,782 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,782 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:08,782 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,783 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:03:08,783 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,783 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:08,783 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,783 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:03:08,784 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,784 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:08,784 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,784 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:03:08,785 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,785 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:08,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,785 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:03:08,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,786 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:03:08,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,787 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:03:08,787 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,787 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:08,787 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,787 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:03:08,788 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,788 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:03:08,788 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,788 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:03:08,789 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,789 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:08,789 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,789 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:03:08,790 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,790 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:08,790 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,790 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:03:08,790 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,791 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:03:08,791 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:03:08,791 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:08,800 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:08,800 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,801 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:03:08,801 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,802 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:03:08,802 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,802 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:03:08,803 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,803 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:03:08,804 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,804 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:03:08,804 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:03:08,806 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:03:08,807 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,807 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:03:08,807 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:03:08,810 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:03:08,817 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,817 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,818 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,818 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:08,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,819 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:03:08,819 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:03:08,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,819 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:03:08,819 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,819 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,819 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:08,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,819 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:03:08,820 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:08,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,820 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:03:08,820 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:08,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,820 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:08,821 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:08,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,821 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:08,821 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:08,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,822 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:03:08,822 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:08,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,822 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:08,822 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:03:08,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,823 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:03:08,826 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:03:08,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,826 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:03:08,827 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:03:08,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,827 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:03:08,828 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:03:08,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,828 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:03:08,828 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:03:08,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,829 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:03:08,829 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:03:08,830 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,830 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:03:08,830 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:03:08,831 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,831 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:03:08,831 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:03:08,831 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,831 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:03:08,831 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:03:08,832 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,832 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:03:08,832 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:03:08,833 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,833 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:03:08,833 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:08,833 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,833 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:08,833 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:08,834 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,834 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:03:08,834 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:03:08,834 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,834 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:03:08,834 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:03:08,834 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,834 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:03:08,834 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:08,835 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,835 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:03:08,835 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:03:08,836 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,836 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:03:08,836 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:08,836 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,836 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:08,836 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:03:08,836 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,836 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:03:08,836 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:03:08,837 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,837 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:03:08,837 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:03:08,837 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,837 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:03:08,838 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:03:08,838 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,838 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:03:08,838 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:08,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,839 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:08,839 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:08,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,840 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:03:08,840 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:08,840 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,840 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:03:08,841 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,841 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,841 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:03:08,842 [76] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,2) method ... +01/18/13 11:03:08,842 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,859 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:08,859 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:08,860 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:08,861 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:08,861 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,861 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,861 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,861 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,861 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:08,861 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:08,870 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,870 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,871 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:08,871 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:03:08,871 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,873 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/18/13 11:03:08,873 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,876 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/18/13 11:03:08,876 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,879 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/18/13 11:03:08,879 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,881 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/18/13 11:03:08,881 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,884 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,885 [76] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/18/13 11:03:08,885 [76] DEBUG index - id is 2 +01/18/13 11:03:08,886 [76] DEBUG index - name is vtiger +01/18/13 11:03:08,886 [76] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/18/13 11:03:08,886 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,886 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,886 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:03:08,887 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:03:08,887 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:08,887 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,887 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:08,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:08,887 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:03:08,887 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:03:08,887 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:08,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,888 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:08,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,888 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:03:08,888 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:03:08,899 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:08,899 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,899 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:08,899 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,900 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:08,900 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:08,901 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:03:08,901 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:08,901 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,901 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:08,901 [76] DEBUG index - Entering updateInfo(2) method ... +01/18/13 11:03:08,901 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:03:08,902 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:08,904 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:03:08,904 [76] INFO index - in getOwnerName 1 +01/18/13 11:03:08,904 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:03:08,904 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:08,904 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:08,907 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:03:08,907 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:08,909 [76] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/18/13 11:03:08,909 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:03:08,910 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:03:08,910 [76] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/18/13 11:03:08,910 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,910 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/18/13 11:03:08,911 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:08,923 [76] DEBUG index - Exiting getRelatedLists method ... +01/18/13 11:03:08,924 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:08,925 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:08,925 [76] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/18/13 11:03:08,925 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:08,929 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:03:08,929 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:03:08,930 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,930 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:03:08,931 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,931 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:03:08,931 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,932 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:03:08,932 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,932 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:03:08,933 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,933 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:03:08,933 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,934 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:08,934 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,934 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:03:08,935 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:08,935 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:03:08,942 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,942 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,943 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,943 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:03:08,943 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,943 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:03:08,944 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,944 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,944 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,944 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,944 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,944 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,945 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,945 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,945 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,945 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,945 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:08,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,946 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:03:08,966 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:08,967 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,967 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:03:08,982 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:08,982 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,982 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:03:08,982 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:08,983 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,983 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:03:08,983 [76] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/18/13 11:03:08,983 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,983 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:03:08,984 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:08,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,984 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:08,984 [76] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/18/13 11:03:08,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,985 [76] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/18/13 11:03:08,985 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:08,985 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,985 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:03:08,985 [76] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/18/13 11:03:08,986 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,986 [76] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/18/13 11:03:08,986 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:08,986 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,986 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:08,986 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:08,986 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,987 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:08,987 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:08,987 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,987 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:08,987 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:08,987 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,987 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:08,987 [76] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/18/13 11:03:08,988 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,988 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:03:08,989 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:08,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,989 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:08,989 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:03:08,989 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,989 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:03:08,989 [76] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/18/13 11:03:08,990 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:08,990 [76] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/18/13 11:03:08,990 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:03:08,990 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:08,991 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:11,273 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:11,416 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:11,416 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:11,416 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:11,417 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:11,417 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:03:11,417 [76] INFO index - About to take action CalendarAjax +01/18/13 11:03:11,417 [76] DEBUG index - in CalendarAjax +01/18/13 11:03:11,417 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:03:11,417 [76] INFO index - current module is Calendar +01/18/13 11:03:11,467 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:11,467 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:11,467 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:11,467 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:11,468 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:11,468 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:11,468 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:11,468 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:11,468 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:11,477 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:11,477 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:11,477 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:11,477 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:11,478 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:11,479 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:11,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,479 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:11,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,480 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:11,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,481 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:11,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,481 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:11,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,482 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:11,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,482 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:11,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,483 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:11,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,483 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:11,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,484 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:11,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,484 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:11,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,485 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:11,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,486 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:11,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,486 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:11,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,487 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:11,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,487 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:11,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,488 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:11,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,489 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:11,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,489 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:11,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,490 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:11,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,490 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:11,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,491 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:11,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,491 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:11,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,492 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:11,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,492 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:11,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,493 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:11,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,493 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:11,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,494 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:11,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,494 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:11,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,495 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:11,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,495 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:11,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,496 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:11,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,496 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:11,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,497 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:11,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,497 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:11,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,498 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:11,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,498 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:11,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,499 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:11,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,499 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:11,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,500 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:11,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,500 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:11,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,501 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:11,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,502 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:11,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,502 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:11,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,503 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:11,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,503 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:11,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,504 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:11,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:11,504 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:11,505 [76] DEBUG index - Current user is: admin +01/18/13 11:03:11,505 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:11,505 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:11,505 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:11,507 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:11,507 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:11,509 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:11,509 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:11,511 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:11,512 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:11,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:11,513 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:11,513 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:11,513 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:11,513 [76] DEBUG index - skipping headers +01/18/13 11:03:11,514 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:03:11,515 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:11,520 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:11,521 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:03:11,521 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:03:11,521 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:03:11,525 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:04')) +01/18/13 11:03:11,529 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:03:18,030 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:18,177 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:18,177 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:18,177 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:18,178 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:18,178 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:18,178 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:18,178 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:18,178 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:18,179 [76] INFO index - current module is Accounts +01/18/13 11:03:18,229 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:18,229 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:18,230 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:18,230 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:18,230 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,231 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:18,231 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,231 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:18,231 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:18,240 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:18,241 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,241 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,241 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:18,242 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:18,242 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:18,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,243 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:18,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,244 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:18,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,244 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:18,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,245 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:18,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,245 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:18,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,246 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:18,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,246 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:18,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,247 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:18,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,247 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:18,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,248 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:18,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,249 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:18,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,249 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:18,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,250 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:18,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,250 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:18,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,251 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:18,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,251 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:18,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,252 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:18,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,252 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:18,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,253 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:18,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,253 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:18,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,254 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:18,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,255 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:18,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,255 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:18,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,255 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:18,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,256 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:18,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,256 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:18,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,257 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:18,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,257 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:18,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,258 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:18,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,258 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:18,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,259 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:18,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,260 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:18,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,260 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:18,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,261 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:18,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,261 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:18,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,262 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:18,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,262 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:18,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,263 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:18,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,263 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:18,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,264 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:18,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,264 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:18,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,265 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:18,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,266 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:18,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,266 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:18,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,267 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:18,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,267 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:18,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,268 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:18,273 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:18,273 [76] DEBUG index - Prepared sql query parameters : [200,1,Accounts,AccountsAjax,2,2013-01-18 11:03:18] +01/18/13 11:03:18,277 [76] DEBUG index - Current user is: admin +01/18/13 11:03:18,277 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:18,277 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:18,277 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:18,279 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:18,280 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:18,282 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:18,282 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:18,284 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:18,284 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:18,285 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,285 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:18,285 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:18,285 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:18,285 [76] DEBUG index - skipping headers +01/18/13 11:03:18,286 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:18,286 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,288 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:18,288 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:18,288 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,289 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,289 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,289 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,289 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:18,289 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:18,297 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,297 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,297 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,313 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:18,314 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:03:18,322 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:18,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:18,322 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,322 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,323 [76] DEBUG index - Entering get_contacts(2) method ... +01/18/13 11:03:18,323 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:18,323 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:03:18,326 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:03:18,326 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:03:18,326 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,326 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,326 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,326 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,326 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:18,326 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:03:18,334 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,335 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,335 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,335 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,335 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,337 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/18/13 11:03:18,337 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,337 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,337 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:18,338 [76] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/18/13 11:03:18,338 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,338 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:18,338 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:03:18,339 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:18,339 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:03:18,339 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:18,339 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:18,341 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:18,344 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:18,345 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,345 [76] DEBUG index - Entering function initSortByField (Contacts) +01/18/13 11:03:18,345 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,345 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,345 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:18,345 [76] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:18,349 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:18,349 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:03:18,350 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:03:18,350 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,350 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,350 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,351 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,351 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,351 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:18,351 [76] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/18/13 11:03:18,351 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,351 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,351 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:18,352 [76] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/18/13 11:03:18,355 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:18,355 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 2 +01/18/13 11:03:18,359 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/18/13 11:03:18,366 [76] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,2,) method ... +01/18/13 11:03:18,366 [76] DEBUG index - Entering getURLstring(Contacts) method ... +01/18/13 11:03:18,366 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:18,366 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,366 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,366 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,366 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,368 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,368 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,369 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,369 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,370 [76] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/18/13 11:03:18,371 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,372 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,372 [76] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/18/13 11:03:18,373 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,374 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,374 [76] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/18/13 11:03:18,375 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,376 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:03:18,376 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,376 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,376 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:03:18,378 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,378 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,378 [76] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/18/13 11:03:18,380 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,380 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,380 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:18,382 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:18,383 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,383 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:18,385 [76] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +130,CON11,2,,Jennifer,Davis,jennifer_davis@company.com,(508) 156-2360,(858) 849-6114,IT Developer,,,0,,,,,,0,0,,0,0,130,1,vtiger,Administrator +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:18,385 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,385 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,387 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,387 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,388 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:03:18,388 [76] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/18/13 11:03:18,394 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,lastname,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,394 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,395 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,396 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,396 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,396 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,397 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,397 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,title,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,398 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,398 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,399 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,399 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,400 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,400 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,401 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,email,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,401 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,401 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,403 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,403 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,403 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,403 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,403 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,403 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,404 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,phone,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,405 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,405 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,406 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,406 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,406 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,406 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,407 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,408 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +132,CON12,2,--None--,,vTiger,,,,,,,0,,,,,,0,0,,0,0,132,1,vtiger,Administrator +,assigned_user_id,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,408 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,408 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,410 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,410 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,410 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,410 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,410 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:18,411 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,411 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,411 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,413 [76] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/18/13 11:03:18,413 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,413 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,413 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,419 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:18,419 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:18,420 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,420 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,420 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,421 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:03:18,421 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:03:18,425 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,lastname,Contacts,Contacts,132,1,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,426 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,426 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,427 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,428 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,428 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,428 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,429 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,title,Contacts,Contacts,132,1,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,429 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,429 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,431 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,431 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,431 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,432 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,email,Contacts,Contacts,132,1,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,432 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,432 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,434 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,434 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,434 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,434 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,434 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,434 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,435 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,435 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,phone,Contacts,Contacts,132,1,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,436 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,436 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,437 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,437 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,437 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,437 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,438 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,438 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,assigned_user_id,Contacts,Contacts,132,1,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:18,439 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,439 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,440 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,440 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,440 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:03:18,440 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:18,441 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:18,441 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:03:18,442 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,442 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,442 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,443 [76] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/18/13 11:03:18,444 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:18,444 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:18,444 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:18,450 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:18,450 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:18,450 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,450 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,450 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:18,451 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:03:18,451 [76] DEBUG index - Prepared sql query parameters : [132] +01/18/13 11:03:18,455 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:18,455 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:18,456 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:03:18,456 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,456 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:18,456 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:18,456 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:18,456 [76] DEBUG index - Prepared sql query parameters : [6,4] +01/18/13 11:03:18,459 [76] INFO index - getNextRow +01/18/13 11:03:18,460 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:18,460 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:18,460 [76] DEBUG index - Exiting get_contacts method ... +01/18/13 11:03:20,740 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:20,886 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:20,886 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:20,887 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:20,887 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:20,887 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:20,888 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:20,888 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:20,888 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:20,888 [76] INFO index - current module is Accounts +01/18/13 11:03:20,940 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:20,941 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:20,941 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:20,941 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:20,942 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:20,942 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:20,942 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:20,942 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:20,942 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:20,950 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:20,950 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:20,950 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:20,950 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:20,951 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:20,952 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:20,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,952 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:20,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,953 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:20,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,954 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:20,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,954 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:20,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,955 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:20,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,955 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:20,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,956 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:20,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,957 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:20,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,957 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:20,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,958 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:20,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,958 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:20,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,959 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:20,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,960 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:20,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,960 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:20,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,961 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:20,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,961 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:20,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,962 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:20,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,962 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:20,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,963 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:20,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,963 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:20,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,964 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:20,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,965 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:20,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,965 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:20,965 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,965 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:20,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,966 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:20,966 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,966 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:20,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,967 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:20,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,967 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:20,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,968 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:20,968 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,969 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:20,969 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,969 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:20,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,970 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:20,970 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,970 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:20,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,971 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:20,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,971 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:20,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,972 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:20,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,973 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:20,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,973 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:20,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,974 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:20,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,974 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:20,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,975 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:20,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,975 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:20,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,976 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:20,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,976 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:20,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,977 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:20,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,978 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:20,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:20,978 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:20,985 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:20,985 [76] DEBUG index - Prepared sql query parameters : [201,1,Accounts,AccountsAjax,2,2013-01-18 11:03:20] +01/18/13 11:03:21,016 [76] DEBUG index - Current user is: admin +01/18/13 11:03:21,016 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:21,017 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:21,017 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:21,019 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:21,019 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:21,021 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:21,021 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:21,023 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:21,024 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:21,024 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,024 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:21,025 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:21,025 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:21,025 [76] DEBUG index - skipping headers +01/18/13 11:03:21,025 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:21,026 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:21,028 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:21,028 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:21,028 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,028 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,028 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,028 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,028 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:21,028 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:21,036 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,036 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,036 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:21,040 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:21,040 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,043 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:21,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:21,043 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,043 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,043 [76] DEBUG index - Entering get_opportunities(2) method ... +01/18/13 11:03:21,043 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:21,043 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,046 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:03:21,046 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:03:21,046 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,046 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,046 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,046 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,047 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:21,047 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,051 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,051 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,052 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:21,052 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,052 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,053 [76] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/18/13 11:03:21,054 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:21,054 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:03:21,055 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:03:21,055 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:21,055 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:03:21,055 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:21,055 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:21,057 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:21,060 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:21,060 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,061 [76] DEBUG index - Entering function initSortByField (Potentials) +01/18/13 11:03:21,061 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,061 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,061 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:21,061 [76] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:21,064 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:21,064 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:03:21,064 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:03:21,064 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,065 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:21,066 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,066 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,066 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:21,066 [76] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/18/13 11:03:21,066 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,066 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,066 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:21,066 [76] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/18/13 11:03:21,069 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:21,070 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 2 +01/18/13 11:03:21,072 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/18/13 11:03:21,077 [76] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,2,) method ... +01/18/13 11:03:21,077 [76] DEBUG index - Entering getURLstring(Potentials) method ... +01/18/13 11:03:21,078 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:21,078 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,078 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,078 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,078 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,080 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,080 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,080 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,081 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,081 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:03:21,083 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,083 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,083 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:03:21,085 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,085 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,085 [76] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/18/13 11:03:21,087 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,087 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,087 [76] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/18/13 11:03:21,089 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,089 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,089 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/18/13 11:03:21,091 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,091 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,091 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:21,091 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,091 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,092 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:03:21,093 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:21,094 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:21,094 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:21,095 [76] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +3,2,vtiger - 1000 units,Qualification,Existing Business,75000.00,2006-07-15,Existing Business,vtiger,Administrator,3,1 +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:21,095 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,095 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,097 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,097 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,097 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:03:21,098 [76] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/18/13 11:03:21,101 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,potentialname,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,102 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,102 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,103 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,104 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,104 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,104 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,104 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,related_to,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,105 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,105 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,106 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,106 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,107 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,107 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,107 [76] DEBUG index - Entering getSalesEntityType(2) method ... +01/18/13 11:03:21,107 [76] INFO index - in getSalesEntityType 2 +01/18/13 11:03:21,107 [76] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/18/13 11:03:21,107 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,113 [76] DEBUG index - Exiting getSalesEntityType method ... +01/18/13 11:03:21,113 [76] DEBUG index - Entering getEntityName(Accounts) method ... +01/18/13 11:03:21,114 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:21,114 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:03:21,121 [76] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/18/13 11:03:21,121 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,123 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,124 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,sales_stage,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,125 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,125 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,126 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,126 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,126 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,127 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,127 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,amount,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,128 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,128 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,129 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,129 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,129 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,129 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,130 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:03:21,130 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:03:21,130 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:03:21,130 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:21,135 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:03:21,135 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:03:21,135 [76] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/18/13 11:03:21,136 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:03:21,136 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,136 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,closingdate,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,137 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,137 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,138 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,138 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,138 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,138 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,139 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,139 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,assigned_user_id,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:21,140 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,140 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,141 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,141 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,141 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:03:21,141 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:21,142 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:21,142 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:03:21,142 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:21,142 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,143 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,144 [76] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/18/13 11:03:21,145 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:21,145 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:21,145 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:21,151 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:21,151 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:21,151 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,151 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,151 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:21,152 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:03:21,152 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:03:21,155 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:21,155 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:21,155 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:03:21,155 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,155 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:21,155 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:21,156 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:21,156 [76] DEBUG index - Prepared sql query parameters : [6,2] +01/18/13 11:03:21,158 [76] INFO index - getNextRow +01/18/13 11:03:21,159 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:21,159 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:21,159 [76] DEBUG index - Exiting get_opportunities method ... +01/18/13 11:03:22,757 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:22,901 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:22,901 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:22,901 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:22,902 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:22,902 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:22,902 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:22,902 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:22,902 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:22,903 [76] INFO index - current module is Accounts +01/18/13 11:03:22,953 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:22,953 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:22,953 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:22,953 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:22,954 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:22,954 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:22,954 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:22,954 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:22,955 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:22,968 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:22,969 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:22,969 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:22,969 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:22,969 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:22,970 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:22,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,971 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:22,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,972 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:22,972 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,972 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:22,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,973 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:22,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,973 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:22,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,974 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:22,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,974 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:22,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,975 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:22,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,976 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:22,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,976 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:22,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,977 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:22,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,977 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:22,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,978 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:22,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,978 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:22,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,979 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:22,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,979 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:22,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,980 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:22,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,980 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:22,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,981 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:22,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,982 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:22,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,982 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:22,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,983 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:22,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,983 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:22,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,983 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:22,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,984 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:22,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,984 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:22,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,985 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:22,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,985 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:22,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,986 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:22,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,987 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:22,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,987 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:22,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,988 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:22,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,988 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:22,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,989 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:22,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,989 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:22,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,990 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:22,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,990 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:22,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,991 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:22,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,991 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:22,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,992 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:22,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,993 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:22,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,993 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:22,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,994 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:22,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,994 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:22,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,995 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:22,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,995 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:22,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:22,996 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:23,004 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:23,004 [76] DEBUG index - Prepared sql query parameters : [202,1,Accounts,AccountsAjax,2,2013-01-18 11:03:22] +01/18/13 11:03:23,033 [76] DEBUG index - Current user is: admin +01/18/13 11:03:23,033 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:23,033 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:23,034 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:23,036 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:23,036 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:23,038 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:23,038 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:23,040 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:23,041 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:23,041 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,042 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:23,042 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:23,042 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:23,042 [76] DEBUG index - skipping headers +01/18/13 11:03:23,042 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:23,043 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:23,045 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:23,045 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:23,045 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,045 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,045 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,045 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,045 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:23,045 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:23,053 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,053 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,054 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:23,058 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:23,058 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:03:23,060 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:23,060 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:23,060 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,060 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,061 [76] DEBUG index - Entering get_quotes(2) method ... +01/18/13 11:03:23,061 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:23,061 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:03:23,067 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:03:23,067 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:03:23,067 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,067 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,067 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,067 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,067 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:23,067 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:03:23,075 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,075 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,075 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:23,075 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,075 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,077 [76] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/18/13 11:03:23,077 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,077 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,078 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:23,078 [76] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/18/13 11:03:23,078 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:23,079 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:23,079 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:03:23,079 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:23,079 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:03:23,079 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:23,079 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:23,083 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:23,087 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:23,087 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,087 [76] DEBUG index - Entering function initSortByField (Quotes) +01/18/13 11:03:23,087 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,087 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,087 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:23,088 [76] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:23,094 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:23,094 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:03:23,094 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:03:23,094 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,094 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,095 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:23,095 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,095 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,096 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:23,096 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:03:23,099 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:03:23,134 [76] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,2,) method ... +01/18/13 11:03:23,134 [76] DEBUG index - Entering getURLstring(Quotes) method ... +01/18/13 11:03:23,134 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:23,134 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,135 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,135 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,135 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,136 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,136 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,137 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,138 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,138 [76] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/18/13 11:03:23,140 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,140 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,140 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:03:23,142 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,142 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,142 [76] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/18/13 11:03:23,143 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,144 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,144 [76] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/18/13 11:03:23,144 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,144 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,144 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:03:23,144 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,144 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,144 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:03:23,146 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,146 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,146 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:23,148 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:03:23,149 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:23,149 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:23,150 [76] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +Administrator,75,1,1,1,Quotes,,2012-12-06 03:40:56,2012-12-06 03:40:56,,,0,1,0,75,Cont_Quote,3,Accepted,2007-10-29,26,QUO2,110.000,UPS,,0,,10.000,160.000,individual,0.000,10.000,50.000,2,,1,1.000,vtiger - 1000 units,vtiger +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:23,151 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,151 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,152 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,152 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,153 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:03:23,153 [76] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:03:23,157 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quote_no,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:23,158 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,158 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,160 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,160 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,160 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,160 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:23,161 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,subject,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:23,162 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,162 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,163 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,163 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,163 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,163 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,164 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:23,164 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quotestage,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:23,165 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,165 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,166 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,166 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,166 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,167 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,167 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:23,167 [76] DEBUG index - Entering getPotentialName(3) method ... +01/18/13 11:03:23,167 [76] INFO index - in getPotentialName 3 +01/18/13 11:03:23,167 [76] DEBUG index - Prepared sql query being executed : select potentialname from vtiger_potential where potentialid=? +01/18/13 11:03:23,167 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:03:23,169 [76] DEBUG index - Exiting getPotentialName method ... +01/18/13 11:03:23,170 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,hdnGrandTotal,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:23,171 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,171 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,172 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,172 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,172 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,172 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,173 [76] DEBUG index - Entering into function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:03:23,173 [76] DEBUG index - Prepared sql query being executed : select currency_id, vtiger_quotes.conversion_rate as conv_rate, vtiger_currency_info.* from vtiger_quotes + inner join vtiger_currency_info on vtiger_quotes.currency_id = vtiger_currency_info.id + where quoteid=? +01/18/13 11:03:23,173 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:03:23,175 [76] DEBUG index - Exit from function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:03:23,175 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:03:23,176 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:03:23,176 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:03:23,176 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:23,178 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:03:23,178 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:03:23,178 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:23,179 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,assigned_user_id,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:03:23,180 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,180 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,181 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,181 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,181 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:03:23,182 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:23,182 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:03:23,182 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:03:23,183 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:23,183 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,183 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,184 [76] DEBUG index - Entering isPermitted(Quotes,Delete,) method ... +01/18/13 11:03:23,185 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:23,185 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:23,185 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:23,191 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:23,191 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:23,191 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,191 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,192 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:23,193 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:03:23,193 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:03:23,196 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:23,196 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:23,196 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:03:23,196 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,196 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:23,196 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:23,197 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:23,197 [76] DEBUG index - Prepared sql query parameters : [6,20] +01/18/13 11:03:23,199 [76] INFO index - getNextRow +01/18/13 11:03:23,200 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:23,200 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:23,200 [76] DEBUG index - Exiting get_quotes method ... +01/18/13 11:03:24,642 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:24,786 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:24,787 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:24,787 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:24,788 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:24,788 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:24,788 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:24,788 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:24,788 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:24,788 [76] INFO index - current module is Accounts +01/18/13 11:03:24,839 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:24,839 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:24,839 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:24,839 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:24,840 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,840 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:24,840 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,840 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:24,840 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:24,849 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:24,849 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,849 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:24,849 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:24,850 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:24,851 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:24,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,851 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:24,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,852 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:24,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,852 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:24,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,853 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:24,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,853 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:24,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,854 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:24,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,855 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:24,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,855 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:24,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,856 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:24,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,856 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:24,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,857 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:24,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,857 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:24,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,858 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:24,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,858 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:24,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,859 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:24,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,859 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:24,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,860 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:24,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,861 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:24,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,861 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:24,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,862 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:24,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,862 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:24,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,863 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:24,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,863 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:24,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,863 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:24,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,864 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:24,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,864 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:24,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,865 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:24,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,865 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:24,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,866 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:24,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,866 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:24,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,867 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:24,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,868 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:24,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,868 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:24,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,869 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:24,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,869 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:24,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,870 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:24,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,870 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:24,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,871 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:24,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,871 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:24,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,872 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:24,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,872 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:24,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,873 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:24,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,874 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:24,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,874 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:24,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,875 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:24,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,875 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:24,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,876 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:24,881 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:24,881 [76] DEBUG index - Prepared sql query parameters : [203,1,Accounts,AccountsAjax,2,2013-01-18 11:03:24] +01/18/13 11:03:24,885 [76] DEBUG index - Current user is: admin +01/18/13 11:03:24,885 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:24,885 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:24,885 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:24,887 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:24,888 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:24,890 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:24,890 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:24,892 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:24,892 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:24,893 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,893 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:24,893 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:24,893 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:24,894 [76] DEBUG index - skipping headers +01/18/13 11:03:24,894 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:24,894 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:24,897 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:24,897 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:24,897 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:24,897 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,897 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:24,897 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,897 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:24,897 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:24,905 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:24,905 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,905 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:24,909 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:24,909 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:03:24,912 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:24,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:24,912 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:24,912 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,912 [76] DEBUG index - Entering get_salesorder(2) method ... +01/18/13 11:03:24,912 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:24,912 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:03:24,916 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:03:24,916 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:03:24,916 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,916 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,917 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,917 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,917 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:24,917 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:03:24,925 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,926 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,926 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:24,926 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:24,926 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:24,928 [76] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/18/13 11:03:24,928 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,928 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:24,928 [76] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/18/13 11:03:24,929 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:24,929 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:24,929 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:03:24,929 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:24,930 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:03:24,930 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:24,930 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:24,933 [76] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:24,936 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:24,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,937 [76] DEBUG index - Entering function initSortByField (SalesOrder) +01/18/13 11:03:24,937 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,937 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,937 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:24,937 [76] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:24,942 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:24,942 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:03:24,942 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:03:24,942 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,942 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,942 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:24,943 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,943 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,943 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:24,943 [76] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/18/13 11:03:24,944 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,944 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,944 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:24,944 [76] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/18/13 11:03:24,947 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:24,947 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 2 +01/18/13 11:03:24,950 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/18/13 11:03:24,955 [76] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,2,) method ... +01/18/13 11:03:24,955 [76] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/18/13 11:03:24,955 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:24,955 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,956 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,956 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:24,956 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:24,957 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,957 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,958 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,959 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,959 [76] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/18/13 11:03:24,959 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,959 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,959 [76] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/18/13 11:03:24,961 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,961 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,962 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:03:24,963 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,963 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,964 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:03:24,964 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,964 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,964 [76] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/18/13 11:03:24,964 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,964 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,964 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:03:24,966 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:03:24,966 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:24,966 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:24,968 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:03:24,969 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:24,969 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:24,970 [76] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,SalesOrderEditView,DeleteSalesOrder,) method ... +01/18/13 11:03:24,970 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:24,970 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:24,972 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,972 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,973 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:03:24,973 [76] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:03:24,977 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:24,977 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:24,977 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:03:24,977 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,977 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:24,978 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:24,978 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:24,978 [76] DEBUG index - Prepared sql query parameters : [6,22] +01/18/13 11:03:24,980 [76] INFO index - getNextRow +01/18/13 11:03:24,981 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:24,981 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:24,982 [76] DEBUG index - Exiting get_salesorder method ... +01/18/13 11:03:27,514 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:27,656 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:27,657 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:27,657 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:27,657 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:27,658 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:27,658 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:27,658 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:27,658 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:27,658 [76] INFO index - current module is Accounts +01/18/13 11:03:27,708 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:27,708 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:27,708 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:27,708 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:27,709 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,709 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:27,709 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,709 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:27,710 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:27,718 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:27,718 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,718 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:27,718 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:27,719 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:27,720 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:27,720 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,720 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:27,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,721 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:27,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,722 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:27,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,722 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:27,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,723 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:27,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,723 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:27,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,724 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:27,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,724 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:27,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,725 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:27,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,725 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:27,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,726 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:27,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,727 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:27,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,727 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:27,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,728 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:27,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,728 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:27,729 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,729 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:27,729 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,729 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:27,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,730 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:27,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,730 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:27,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,731 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:27,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,731 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:27,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,732 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:27,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,733 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:27,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,733 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:27,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,733 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:27,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,734 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:27,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,734 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:27,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,735 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:27,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,735 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:27,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,736 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:27,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,736 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:27,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,737 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:27,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,737 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:27,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,738 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:27,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,739 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:27,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,739 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:27,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,740 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:27,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,740 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:27,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,741 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:27,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,741 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:27,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,742 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:27,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,742 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:27,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,743 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:27,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,744 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:27,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,744 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:27,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,745 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:27,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,745 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:27,754 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:27,754 [76] DEBUG index - Prepared sql query parameters : [204,1,Accounts,AccountsAjax,2,2013-01-18 11:03:27] +01/18/13 11:03:27,758 [76] DEBUG index - Current user is: admin +01/18/13 11:03:27,758 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:27,759 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:27,759 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:27,761 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:27,761 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:27,763 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:27,763 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:27,765 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:27,765 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:27,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,766 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:27,766 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:27,767 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:27,767 [76] DEBUG index - skipping headers +01/18/13 11:03:27,767 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:27,767 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:27,769 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:27,769 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:27,770 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:27,770 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,770 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:27,770 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,770 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:27,770 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:27,778 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:27,778 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,779 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:27,783 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:27,783 [76] DEBUG index - Prepared sql query parameters : [5] +01/18/13 11:03:27,785 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:27,786 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:27,786 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:27,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,786 [76] DEBUG index - Entering get_invoices(2) method ... +01/18/13 11:03:27,786 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:27,786 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:03:27,790 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:03:27,790 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:03:27,790 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:03:27,790 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,790 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,790 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,790 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,791 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:27,791 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:03:27,798 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,798 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,798 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:27,798 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:03:27,799 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:27,799 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:27,800 [76] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/18/13 11:03:27,800 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,801 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,801 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:27,801 [76] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/18/13 11:03:27,802 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:27,802 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:27,802 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:27,802 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:27,802 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:03:27,802 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:27,802 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:27,806 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:27,809 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:27,809 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,810 [76] DEBUG index - Entering function initSortByField (Invoice) +01/18/13 11:03:27,810 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,810 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,810 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:27,810 [76] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:27,814 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:27,814 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:03:27,815 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:03:27,815 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:03:27,815 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,815 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,815 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:27,815 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:03:27,816 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,816 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,816 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:27,816 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:03:27,819 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:03:27,847 [76] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,2,) method ... +01/18/13 11:03:27,847 [76] DEBUG index - Entering getURLstring(Invoice) method ... +01/18/13 11:03:27,847 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:27,847 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,848 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,848 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:27,848 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:27,849 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,849 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,850 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,851 [76] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/18/13 11:03:27,853 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,853 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:03:27,855 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,855 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,855 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:03:27,855 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,855 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,855 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:03:27,857 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,857 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,857 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:03:27,859 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:03:27,859 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:27,859 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:27,861 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:03:27,862 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:27,862 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:27,863 [76] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:27,863 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:27,863 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:27,865 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,865 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,866 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:03:27,866 [76] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/18/13 11:03:27,870 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:27,871 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:27,871 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:03:27,871 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,871 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:27,871 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:27,871 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:27,871 [76] DEBUG index - Prepared sql query parameters : [6,23] +01/18/13 11:03:27,874 [76] INFO index - getNextRow +01/18/13 11:03:27,874 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:27,874 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:27,875 [76] DEBUG index - Exiting get_invoices method ... +01/18/13 11:03:29,133 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:29,276 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:29,276 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:29,277 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:29,277 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:29,277 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:29,277 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:29,278 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:29,278 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:29,278 [76] INFO index - current module is Accounts +01/18/13 11:03:29,330 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:29,330 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:29,330 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:29,330 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:29,331 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,331 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:29,331 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,331 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:29,331 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:29,341 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:29,342 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,342 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:29,342 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:29,342 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:29,343 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:29,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,344 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:29,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,345 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:29,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,345 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:29,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,346 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:29,346 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,346 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:29,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,347 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:29,347 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,347 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:29,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,348 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:29,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,348 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:29,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,349 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:29,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,350 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:29,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,350 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:29,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,351 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:29,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,351 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:29,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,352 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:29,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,352 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:29,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,353 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:29,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,354 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:29,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,354 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:29,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,355 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:29,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,355 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:29,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,356 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:29,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,356 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:29,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,356 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:29,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,357 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:29,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,357 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:29,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,358 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:29,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,358 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:29,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,359 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:29,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,360 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:29,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,360 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:29,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,361 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:29,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,361 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:29,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,362 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:29,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,362 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:29,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,363 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:29,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,363 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:29,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,364 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:29,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,365 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:29,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,365 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:29,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,366 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:29,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,366 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:29,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,367 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:29,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,367 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:29,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,368 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:29,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,368 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:29,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,369 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:29,374 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:29,374 [76] DEBUG index - Prepared sql query parameters : [205,1,Accounts,AccountsAjax,2,2013-01-18 11:03:29] +01/18/13 11:03:29,385 [76] DEBUG index - Current user is: admin +01/18/13 11:03:29,386 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:29,386 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:29,386 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:29,388 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:29,388 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:29,390 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:29,391 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:29,392 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:29,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:29,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,394 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:29,394 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:29,394 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:29,394 [76] DEBUG index - skipping headers +01/18/13 11:03:29,394 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:29,395 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:29,397 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:29,397 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:29,397 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:29,397 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,397 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:29,397 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,397 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:29,397 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:29,405 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:29,405 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,405 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:29,409 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:29,409 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:29,412 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:29,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:29,412 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:29,413 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,413 [76] DEBUG index - Entering get_activities(2) method ... +01/18/13 11:03:29,413 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:29,413 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:03:29,415 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:03:29,415 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:03:29,416 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,416 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,416 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,416 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,416 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:03:29,416 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:03:29,425 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,425 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,425 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:29,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,426 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:29,426 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:29,426 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:29,428 [76] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/18/13 11:03:29,428 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:29,428 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:03:29,429 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,429 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,429 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:29,429 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:03:29,429 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,430 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,430 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:03:29,430 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:29,431 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,431 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:03:29,431 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:03:29,431 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:29,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,432 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:29,432 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:03:29,432 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,432 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:03:29,432 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:29,432 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,432 [76] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/18/13 11:03:29,433 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:29,433 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:29,435 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:29,438 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:29,438 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,439 [76] DEBUG index - Entering function initSortByField (Calendar) +01/18/13 11:03:29,439 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,439 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,439 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:29,439 [76] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:29,443 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:29,443 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:03:29,443 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:03:29,443 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,444 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,444 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:03:29,444 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,444 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:29,445 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,445 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,445 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:29,445 [76] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/18/13 11:03:29,445 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,445 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,445 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:29,445 [76] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/18/13 11:03:29,449 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:29,449 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 2 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/18/13 11:03:29,453 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/18/13 11:03:29,459 [76] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,2,) method ... +01/18/13 11:03:29,459 [76] DEBUG index - Entering getURLstring(Activity) method ... +01/18/13 11:03:29,459 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:29,459 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,459 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,459 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:29,459 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:29,461 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,461 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,462 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,462 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,462 [76] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/18/13 11:03:29,464 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,464 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,464 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:03:29,466 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,466 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,466 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:03:29,468 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,468 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:03:29,468 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,468 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,468 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:03:29,470 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,470 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,470 [76] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/18/13 11:03:29,471 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,471 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,471 [76] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/18/13 11:03:29,473 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,473 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,473 [76] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/18/13 11:03:29,475 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,475 [76] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/18/13 11:03:29,475 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,475 [76] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/18/13 11:03:29,477 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,477 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,477 [76] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/18/13 11:03:29,479 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,479 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:29,481 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:29,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:29,482 [76] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/18/13 11:03:29,483 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:03:29,484 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:29,484 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:29,485 [76] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:29,485 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:29,486 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:29,487 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,487 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,488 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/18/13 11:03:29,488 [76] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/18/13 11:03:29,492 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:29,492 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:29,492 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:29,492 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,492 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:29,492 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:29,492 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:29,493 [76] DEBUG index - Prepared sql query parameters : [6,9] +01/18/13 11:03:29,501 [76] INFO index - getNextRow +01/18/13 11:03:29,501 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:29,502 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:29,502 [76] DEBUG index - Exiting get_activities method ... +01/18/13 11:03:31,728 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:31,874 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:31,874 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:31,875 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:31,875 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:31,875 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:31,875 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:31,876 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:31,876 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:31,876 [76] INFO index - current module is Accounts +01/18/13 11:03:31,926 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:31,926 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:31,926 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:31,926 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:31,927 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,927 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:31,927 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,927 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:31,927 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:31,936 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:31,936 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,936 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:31,936 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:31,937 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:31,938 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:31,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,938 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:31,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,939 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:31,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,939 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:31,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,940 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:31,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,941 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:31,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,941 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:31,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,942 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:31,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,942 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:31,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,943 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:31,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,943 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:31,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,944 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:31,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,945 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:31,945 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,945 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:31,945 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,946 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:31,946 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,946 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:31,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,947 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:31,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,947 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:31,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,948 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:31,948 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,948 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:31,949 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,949 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:31,949 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,949 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:31,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,950 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:31,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,950 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:31,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,950 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:31,951 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,951 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:31,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,952 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:31,952 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,952 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:31,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,953 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:31,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,953 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:31,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,954 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:31,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,955 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:31,955 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,955 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:31,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,956 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:31,956 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,956 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:31,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,957 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:31,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,957 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:31,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,958 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:31,958 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,958 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:31,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,959 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:31,959 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,960 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:31,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,960 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:31,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,961 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:31,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,961 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:31,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,962 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:31,962 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,962 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:31,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,963 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:31,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,963 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:31,968 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:31,969 [76] DEBUG index - Prepared sql query parameters : [206,1,Accounts,AccountsAjax,2,2013-01-18 11:03:31] +01/18/13 11:03:31,972 [76] DEBUG index - Current user is: admin +01/18/13 11:03:31,972 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:31,972 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:31,972 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:31,974 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:31,974 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:31,976 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:31,977 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:31,978 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:31,979 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:31,979 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:31,979 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:31,980 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:31,980 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:31,980 [76] DEBUG index - skipping headers +01/18/13 11:03:31,980 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:31,981 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:31,983 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:31,983 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:31,983 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:31,983 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,983 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:31,983 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,983 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:31,983 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:31,991 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:31,991 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:31,991 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:31,995 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:31,995 [76] DEBUG index - Prepared sql query parameters : [7] +01/18/13 11:03:31,1000 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:31,1000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:31,1000 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:32,000 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,000 [76] DEBUG index - Entering get_emails(2) method ... +01/18/13 11:03:32,000 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:32,000 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:03:32,006 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:03:32,007 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:03:32,007 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:03:32,007 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,007 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,007 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,007 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,007 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:32,007 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:03:32,012 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,012 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,013 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:32,013 [76] DEBUG email - Exiting Email method ... +01/18/13 11:03:32,013 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:32,013 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:32,015 [76] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/18/13 11:03:32,016 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:32,016 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:32,016 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:03:32,016 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:32,016 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:03:32,016 [76] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/18/13 11:03:32,016 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:03:32,018 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:32,019 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:32,021 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (2,130,132) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 2 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:32,024 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:32,024 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,025 [76] DEBUG index - Entering function initSortByField (Emails) +01/18/13 11:03:32,025 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,025 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,025 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:32,025 [76] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:32,029 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:32,029 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:03:32,029 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:03:32,029 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:03:32,030 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,030 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,030 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:32,030 [76] DEBUG email - Exiting Email method ... +01/18/13 11:03:32,030 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:32,030 [76] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/18/13 11:03:32,030 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,030 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,031 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:32,031 [76] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/18/13 11:03:32,033 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:32,034 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130,132) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/18/13 11:03:32,039 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130,132) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/18/13 11:03:32,046 [76] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,2,) method ... +01/18/13 11:03:32,046 [76] DEBUG index - Entering getURLstring(Emails) method ... +01/18/13 11:03:32,046 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:32,046 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,046 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,046 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:32,046 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:32,048 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,048 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,049 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,049 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,049 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:03:32,051 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,052 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,052 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:03:32,052 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,052 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,052 [76] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/18/13 11:03:32,054 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,054 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,055 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:32,055 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,055 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,055 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:03:32,057 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,057 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:03:32,057 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:03:32,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:32,057 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:03:32,057 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:03:32,058 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:32,058 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:32,059 [76] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:32,059 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:32,059 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:32,061 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,061 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,061 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:32,061 [76] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/18/13 11:03:32,065 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:32,065 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:32,065 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:03:32,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,065 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:32,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:32,065 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:32,065 [76] DEBUG index - Prepared sql query parameters : [6,10] +01/18/13 11:03:32,068 [76] INFO index - getNextRow +01/18/13 11:03:32,069 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:32,069 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:32,069 [76] DEBUG index - Exiting get_emails method ... +01/18/13 11:03:33,522 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:33,666 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:33,666 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:33,666 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:33,667 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:33,667 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:33,667 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:33,667 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:33,667 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:33,668 [76] INFO index - current module is Accounts +01/18/13 11:03:33,718 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:33,718 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:33,718 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:33,718 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:33,719 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,719 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:33,719 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,719 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:33,719 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:33,727 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:33,727 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,728 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:33,728 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:33,728 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:33,729 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:33,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,730 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:33,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,730 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:33,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,731 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:33,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,731 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:33,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,732 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:33,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,733 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:33,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,733 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:33,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,734 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:33,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,734 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:33,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,735 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:33,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,735 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:33,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,736 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:33,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,737 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:33,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,737 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:33,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,738 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:33,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,738 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:33,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,739 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:33,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,739 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:33,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,740 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:33,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,740 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:33,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,741 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:33,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,741 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:33,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,742 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:33,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,742 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:33,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,743 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:33,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,743 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:33,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,744 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:33,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,744 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:33,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,745 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:33,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,745 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:33,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,746 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:33,746 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,746 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:33,747 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,747 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:33,747 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,748 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:33,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,748 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:33,748 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,749 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:33,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,749 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:33,749 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,750 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:33,750 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,750 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:33,751 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,751 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:33,751 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,751 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:33,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,752 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:33,752 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,752 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:33,753 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,753 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:33,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,754 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:33,754 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,754 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:33,755 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,755 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:33,761 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:33,761 [76] DEBUG index - Prepared sql query parameters : [207,1,Accounts,AccountsAjax,2,2013-01-18 11:03:33] +01/18/13 11:03:33,764 [76] DEBUG index - Current user is: admin +01/18/13 11:03:33,764 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:33,764 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:33,764 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:33,766 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:33,766 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:33,769 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:33,769 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:33,771 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:33,771 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:33,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:33,772 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:33,772 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:33,772 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:33,772 [76] DEBUG index - skipping headers +01/18/13 11:03:33,772 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:33,773 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:33,775 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:33,775 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:33,775 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:33,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,775 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:33,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,775 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:33,776 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:33,785 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:33,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,785 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:33,789 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:33,789 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:03:33,797 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:33,797 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:33,797 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:33,797 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,797 [76] DEBUG index - Entering get_history(2) method ... +01/18/13 11:03:33,797 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:33,797 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:33,799 [76] DEBUG index - Exiting get_history method ... +01/18/13 11:03:33,800 [76] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0,2) method ... +01/18/13 11:03:33,801 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:33,801 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,802 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:03:33,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:33,802 [76] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/18/13 11:03:35,693 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:35,835 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:35,835 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:35,835 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:35,836 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:35,836 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:35,836 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:35,836 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:35,837 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:35,837 [76] INFO index - current module is Accounts +01/18/13 11:03:35,886 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:35,886 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:35,887 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:35,887 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:35,887 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,887 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:35,888 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,888 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:35,888 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:35,898 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:35,898 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,898 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:35,898 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:35,899 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:35,899 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:35,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,900 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:35,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,901 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:35,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,901 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:35,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,902 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:35,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,902 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:35,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,903 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:35,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,903 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:35,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,904 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:35,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,905 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:35,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,905 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:35,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,906 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:35,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,906 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:35,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,907 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:35,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,907 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:35,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,908 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:35,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,908 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:35,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,909 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:35,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,910 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:35,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,910 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:35,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,911 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:35,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,911 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:35,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,912 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:35,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,912 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:35,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,912 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:35,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,913 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:35,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,913 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:35,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,914 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:35,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,915 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:35,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,915 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:35,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,916 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:35,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,916 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:35,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,917 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:35,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,917 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:35,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,918 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:35,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,918 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:35,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,919 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:35,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,919 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:35,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,920 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:35,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,920 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:35,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,921 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:35,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,921 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:35,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,922 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:35,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,922 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:35,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,923 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:35,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,923 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:35,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,924 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:35,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,925 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:35,930 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:35,930 [76] DEBUG index - Prepared sql query parameters : [208,1,Accounts,AccountsAjax,2,2013-01-18 11:03:35] +01/18/13 11:03:35,934 [76] DEBUG index - Current user is: admin +01/18/13 11:03:35,935 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:35,935 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:35,935 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:35,937 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:35,937 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:35,939 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:35,939 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:35,941 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:35,941 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:35,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:35,942 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:35,942 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:35,942 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:35,943 [76] DEBUG index - skipping headers +01/18/13 11:03:35,943 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:35,943 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:35,946 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:35,946 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:35,946 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:35,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,946 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:35,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,946 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:35,946 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:35,953 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:35,954 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,954 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:35,958 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:35,958 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:03:35,960 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:35,961 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:35,961 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:35,961 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,961 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:35,961 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:35,963 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:35,963 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:03:35,965 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:03:35,965 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:03:35,965 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:03:35,965 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,965 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,965 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:35,965 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:03:35,971 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,971 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,971 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:35,971 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:03:35,971 [76] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/18/13 11:03:35,972 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:35,973 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:35,973 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:35,973 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:35,973 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:03:35,973 [76] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/18/13 11:03:35,974 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:35,974 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:35,974 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:03:35,974 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:35,974 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:03:35,974 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:35,975 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:35,978 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:35,981 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:35,981 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:35,981 [76] DEBUG index - Entering function initSortByField (Documents) +01/18/13 11:03:35,981 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,982 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,982 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:35,982 [76] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:35,985 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:35,986 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:03:35,986 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:03:35,986 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:03:35,986 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,986 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,986 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:35,986 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:03:35,987 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,987 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,987 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:35,988 [76] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/18/13 11:03:35,988 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:35,988 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:35,988 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:35,988 [76] DEBUG index - Prepared sql query parameters : [8,%title%] +01/18/13 11:03:35,993 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:35,993 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=2 +01/18/13 11:03:36,061 [76] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/18/13 11:03:36,066 [76] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,2,) method ... +01/18/13 11:03:36,066 [76] DEBUG index - Entering getURLstring(Documents) method ... +01/18/13 11:03:36,066 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:36,066 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:36,067 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:36,067 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:36,067 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:36,068 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:36,068 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:36,069 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:36,070 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:36,070 [76] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/18/13 11:03:36,072 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:36,072 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:36,072 [76] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/18/13 11:03:36,074 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:36,074 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:36,074 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:03:36,076 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:36,076 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:36,076 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:36,078 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:03:36,078 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:36,078 [76] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/18/13 11:03:36,078 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:03:36,079 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:36,079 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:36,080 [76] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:36,080 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:36,080 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:36,081 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:36,082 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:36,082 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:36,082 [76] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/18/13 11:03:36,085 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:36,085 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:36,085 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:03:36,086 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:36,086 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:36,086 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:36,086 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:36,086 [76] DEBUG index - Prepared sql query parameters : [6,8] +01/18/13 11:03:36,089 [76] INFO index - getNextRow +01/18/13 11:03:36,090 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:36,090 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:40,459 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:40,600 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:40,600 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:40,601 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:40,601 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:40,601 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:40,601 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:40,602 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:40,602 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:40,602 [76] INFO index - current module is Accounts +01/18/13 11:03:40,652 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:40,652 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:40,652 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:40,652 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:40,653 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,653 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:40,653 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,653 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:40,654 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:40,664 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:40,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,664 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:40,664 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:40,665 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:40,665 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:40,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,666 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:40,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,667 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:40,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,667 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:40,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,668 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:40,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,668 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:40,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,669 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:40,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,670 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:40,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,670 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:40,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,671 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:40,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,671 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:40,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,672 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:40,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,672 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:40,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,673 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:40,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,673 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:40,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,674 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:40,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,674 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:40,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,675 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:40,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,676 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:40,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,676 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:40,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,677 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:40,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,677 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:40,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,678 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:40,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,678 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:40,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,678 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:40,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,679 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:40,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,679 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:40,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,680 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:40,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,681 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:40,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,681 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:40,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,682 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:40,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,682 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:40,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,683 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:40,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,683 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:40,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,684 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:40,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,684 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:40,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,685 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:40,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,686 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:40,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,686 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:40,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,687 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:40,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,687 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:40,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,688 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:40,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,688 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:40,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,689 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:40,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,689 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:40,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,690 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:40,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,690 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:40,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,691 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:40,696 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:40,696 [76] DEBUG index - Prepared sql query parameters : [209,1,Accounts,AccountsAjax,2,2013-01-18 11:03:40] +01/18/13 11:03:40,699 [76] DEBUG index - Current user is: admin +01/18/13 11:03:40,699 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:40,699 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:40,699 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:40,701 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:40,702 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:40,704 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:40,704 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:40,706 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:40,706 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:40,707 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,707 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:40,707 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:40,707 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:40,707 [76] DEBUG index - skipping headers +01/18/13 11:03:40,707 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:40,708 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:40,710 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:40,710 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:40,710 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:40,710 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,710 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:40,711 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,711 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:40,711 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:40,719 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:40,720 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,720 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:40,724 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:40,724 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:03:40,726 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:40,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:40,726 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:40,727 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,727 [76] DEBUG index - Entering get_tickets(2) method ... +01/18/13 11:03:40,727 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:40,727 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:03:40,731 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:03:40,731 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:03:40,731 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:03:40,731 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,731 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,731 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,731 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,732 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:40,732 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:03:40,737 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,737 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,737 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:40,737 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:03:40,737 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:40,738 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:40,739 [76] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/18/13 11:03:40,739 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,739 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,740 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:40,740 [76] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/18/13 11:03:40,740 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:40,741 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:40,741 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:40,741 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:40,741 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:03:40,741 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:40,741 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:40,745 [76] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:40,748 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:40,748 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,748 [76] DEBUG index - Entering function initSortByField (HelpDesk) +01/18/13 11:03:40,749 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,749 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,749 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:40,749 [76] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:40,752 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:40,753 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:03:40,753 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:03:40,753 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:03:40,753 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,753 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,753 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:40,753 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:03:40,754 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,754 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,754 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:40,754 [76] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/18/13 11:03:40,754 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,755 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,755 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:40,755 [76] DEBUG index - Prepared sql query parameters : [13,%title%] +01/18/13 11:03:40,757 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:40,758 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 +01/18/13 11:03:40,760 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/18/13 11:03:40,765 [76] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,2,) method ... +01/18/13 11:03:40,765 [76] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/18/13 11:03:40,765 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:40,765 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,765 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,765 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:40,766 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:40,767 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,767 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,768 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,769 [76] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/18/13 11:03:40,771 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,771 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:03:40,773 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,773 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:03:40,773 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,773 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:03:40,775 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,775 [76] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/18/13 11:03:40,777 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,777 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:03:40,777 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:03:40,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:40,777 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:03:40,779 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:03:40,780 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:40,780 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:40,781 [76] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:40,781 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:40,781 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:40,782 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,783 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,783 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:03:40,783 [76] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/18/13 11:03:40,787 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:40,787 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/18/13 11:03:40,787 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:03:40,787 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,787 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:40,787 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:40,787 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:40,788 [76] DEBUG index - Prepared sql query parameters : [6,13] +01/18/13 11:03:40,790 [76] INFO index - getNextRow +01/18/13 11:03:40,791 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:40,791 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:40,791 [76] DEBUG index - Exiting get_tickets method ... +01/18/13 11:03:42,766 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:42,909 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:42,909 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:42,909 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:42,910 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:42,910 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:42,910 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:42,910 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:42,910 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:42,911 [76] INFO index - current module is Accounts +01/18/13 11:03:42,960 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:42,960 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:42,961 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:42,961 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:42,961 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:42,962 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:42,962 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:42,962 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:42,962 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:42,971 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:42,971 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:42,971 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:42,971 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:42,972 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:42,972 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:42,973 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,973 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:42,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,974 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:42,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,974 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:42,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,975 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:42,975 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,975 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:42,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,976 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:42,976 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,976 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:42,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,977 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:42,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,978 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:42,978 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,978 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:42,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,979 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:42,979 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,979 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:42,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,980 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:42,980 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,980 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:42,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,981 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:42,981 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,981 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:42,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,982 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:42,982 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,982 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:42,983 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,983 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:42,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,984 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:42,984 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,984 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:42,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,985 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:42,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,985 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:42,985 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,985 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:42,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,986 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:42,986 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,987 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:42,987 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,987 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:42,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,988 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:42,988 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,988 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:42,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,989 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:42,989 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,989 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:42,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,990 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:42,990 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,990 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:42,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,991 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:42,991 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,992 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:42,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,992 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:42,992 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,993 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:42,993 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,993 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:42,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,994 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:42,994 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,994 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:42,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,995 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:42,995 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,995 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:42,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,996 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:42,996 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,996 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:42,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,997 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:42,997 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,997 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:42,998 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:42,998 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:43,002 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:43,002 [76] DEBUG index - Prepared sql query parameters : [210,1,Accounts,AccountsAjax,2,2013-01-18 11:03:42] +01/18/13 11:03:43,006 [76] DEBUG index - Current user is: admin +01/18/13 11:03:43,006 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:43,006 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:43,006 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:43,008 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:43,009 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:43,011 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:43,011 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:43,013 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:43,013 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:43,014 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,014 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:43,014 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:43,014 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:43,015 [76] DEBUG index - skipping headers +01/18/13 11:03:43,015 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:43,015 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:43,017 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:43,018 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:43,018 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:43,018 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,018 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:43,018 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,018 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:43,018 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:43,025 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:43,026 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,026 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:43,030 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:43,030 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:03:43,033 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:43,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:43,033 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:43,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,033 [76] DEBUG index - Entering get_products(2) method ... +01/18/13 11:03:43,034 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:43,034 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:03:43,037 [76] DEBUG product - Entering Products() method ... +01/18/13 11:03:43,037 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:03:43,037 [76] DEBUG index - in getColumnFields Products +01/18/13 11:03:43,037 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,037 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,037 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,037 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,037 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:43,037 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:03:43,044 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,045 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,045 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:43,045 [76] DEBUG product - Exiting Product method ... +01/18/13 11:03:43,045 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:43,045 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:43,047 [76] DEBUG index - Entering isPermitted(Products,4,) method ... +01/18/13 11:03:43,047 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:43,048 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:43,048 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:43,048 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:43,048 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:03:43,048 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:43,051 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:43,051 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,051 [76] DEBUG index - Entering function initSortByField (Products) +01/18/13 11:03:43,051 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,052 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,052 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:43,052 [76] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:43,058 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:43,058 [76] DEBUG product - Entering Products() method ... +01/18/13 11:03:43,058 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:03:43,058 [76] DEBUG index - in getColumnFields Products +01/18/13 11:03:43,059 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,059 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,059 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:43,059 [76] DEBUG product - Exiting Product method ... +01/18/13 11:03:43,060 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,060 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,060 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:43,060 [76] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/18/13 11:03:43,060 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,060 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,060 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:43,060 [76] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/18/13 11:03:43,064 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:43,064 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:03:43,084 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/18/13 11:03:43,092 [76] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,2,) method ... +01/18/13 11:03:43,092 [76] DEBUG index - Entering getURLstring(Products) method ... +01/18/13 11:03:43,092 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:43,092 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,092 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,092 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:43,092 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:43,094 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,094 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,095 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:43,095 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,095 [76] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/18/13 11:03:43,097 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:43,098 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,098 [76] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/18/13 11:03:43,100 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:43,100 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,100 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/18/13 11:03:43,102 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:43,102 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,102 [76] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/18/13 11:03:43,104 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:03:43,104 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:43,104 [76] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/18/13 11:03:43,106 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:03:43,107 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:43,107 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:43,108 [76] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:43,108 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:43,108 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:43,110 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,110 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,110 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:43,110 [76] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/18/13 11:03:43,114 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:43,114 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:43,114 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:03:43,114 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,114 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:43,114 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:43,115 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:43,115 [76] DEBUG index - Prepared sql query parameters : [6,14] +01/18/13 11:03:43,117 [76] INFO index - getNextRow +01/18/13 11:03:43,118 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:43,118 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:43,119 [76] DEBUG index - Exiting get_products method ... +01/18/13 11:03:44,990 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:45,136 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:45,136 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:45,137 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:45,137 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:45,137 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:45,137 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:45,138 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:45,138 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:45,138 [76] INFO index - current module is Accounts +01/18/13 11:03:45,188 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:45,189 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:45,189 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:45,189 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:45,190 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,190 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:45,190 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,190 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:45,190 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:45,199 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:45,199 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,199 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:45,199 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:45,200 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:45,201 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:45,201 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,201 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:45,202 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,202 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:45,202 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,202 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:45,203 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,203 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:45,203 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,203 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:45,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,204 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:45,204 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,205 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:45,205 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,205 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:45,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,206 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:45,206 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,206 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:45,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,207 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:45,207 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,207 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:45,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,208 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:45,208 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,208 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:45,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,209 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:45,209 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,209 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:45,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,210 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:45,210 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,210 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:45,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,211 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:45,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,212 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:45,212 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,212 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:45,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,213 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:45,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,213 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:45,213 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,213 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:45,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,214 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:45,214 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,214 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:45,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,215 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:45,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,215 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:45,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,216 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:45,216 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,216 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:45,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,217 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:45,217 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,218 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:45,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,218 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:45,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,219 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:45,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,219 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:45,219 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,220 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:45,220 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,220 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:45,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,221 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:45,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,221 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:45,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,222 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:45,222 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,222 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:45,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,223 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:45,223 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,223 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:45,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,224 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:45,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,224 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:45,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,225 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:45,225 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,225 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:45,231 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:45,231 [76] DEBUG index - Prepared sql query parameters : [211,1,Accounts,AccountsAjax,2,2013-01-18 11:03:45] +01/18/13 11:03:45,234 [76] DEBUG index - Current user is: admin +01/18/13 11:03:45,234 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:45,234 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:45,234 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:45,236 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:45,236 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:45,239 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:45,239 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:45,241 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:45,241 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:45,242 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,242 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:45,242 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:45,242 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:45,242 [76] DEBUG index - skipping headers +01/18/13 11:03:45,242 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:45,243 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:45,245 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:45,245 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:45,245 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:45,245 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,245 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:45,245 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,245 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:45,246 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:45,256 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:45,256 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,256 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:45,260 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:45,260 [76] DEBUG index - Prepared sql query parameters : [87] +01/18/13 11:03:45,263 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:45,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:45,263 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:45,263 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,263 [76] DEBUG index - Entering get_campaigns(2) method ... +01/18/13 11:03:45,263 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:45,264 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:03:45,266 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:03:45,266 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:03:45,266 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,266 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,266 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,266 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,267 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:45,267 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:03:45,273 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,273 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,273 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:45,273 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:45,273 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:45,275 [76] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/18/13 11:03:45,276 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:45,276 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:45,276 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:45,276 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:45,276 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:03:45,276 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:45,276 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:45,279 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:45,282 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:45,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,283 [76] DEBUG index - Entering function initSortByField (Campaigns) +01/18/13 11:03:45,283 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,283 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,283 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:45,283 [76] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:45,287 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:45,287 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:03:45,288 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:03:45,288 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,288 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,288 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:45,289 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,289 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,289 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:45,289 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 +01/18/13 11:03:45,338 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/18/13 11:03:45,343 [76] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,2,) method ... +01/18/13 11:03:45,343 [76] DEBUG index - Entering getURLstring(Campaigns) method ... +01/18/13 11:03:45,344 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:45,344 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,344 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,344 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:45,344 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:45,345 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,346 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,346 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,348 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,348 [76] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/18/13 11:03:45,350 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,350 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,350 [76] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/18/13 11:03:45,352 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,352 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,352 [76] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/18/13 11:03:45,354 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,354 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,354 [76] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/18/13 11:03:45,355 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,356 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,356 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/18/13 11:03:45,357 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:03:45,358 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:45,358 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:03:45,359 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:03:45,360 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:45,360 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:45,361 [76] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:45,361 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:45,361 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:45,363 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,363 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,363 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:03:45,363 [76] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/18/13 11:03:45,367 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:45,367 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/18/13 11:03:45,367 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:03:45,367 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,367 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:45,367 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:45,367 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:45,367 [76] DEBUG index - Prepared sql query parameters : [6,26] +01/18/13 11:03:45,370 [76] INFO index - getNextRow +01/18/13 11:03:45,371 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:45,371 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:45,372 [76] DEBUG index - Exiting get_campaigns method ... +01/18/13 11:03:47,338 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:47,481 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:47,481 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:47,481 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:47,482 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:47,482 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:47,482 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:47,482 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:47,483 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:47,483 [76] INFO index - current module is Accounts +01/18/13 11:03:47,533 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:47,534 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:47,534 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:47,534 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:47,534 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,535 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:47,535 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,535 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:47,535 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:47,543 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:47,543 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,543 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:47,544 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:47,544 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:47,545 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:47,545 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,546 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:47,546 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,546 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:47,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,547 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:47,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,547 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:47,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,548 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:47,548 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,548 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:47,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,549 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:47,549 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,549 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:47,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,550 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:47,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,551 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:47,551 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,551 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:47,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,552 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:47,552 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,552 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:47,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,553 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:47,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,553 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:47,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,554 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:47,554 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,554 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:47,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,555 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:47,555 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,556 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:47,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,556 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:47,556 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,557 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:47,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,557 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:47,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,558 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:47,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,558 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:47,558 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,558 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:47,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,559 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:47,559 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,559 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:47,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,560 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:47,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,560 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:47,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,561 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:47,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,561 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:47,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,562 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:47,562 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,563 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:47,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,563 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:47,563 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,564 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:47,564 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,564 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:47,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,565 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:47,565 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,565 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:47,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,566 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:47,566 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,566 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:47,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,567 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:47,567 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,567 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:47,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,568 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:47,568 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,568 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:47,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,569 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:47,569 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,569 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:47,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,570 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:47,575 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:47,575 [76] DEBUG index - Prepared sql query parameters : [212,1,Accounts,AccountsAjax,2,2013-01-18 11:03:47] +01/18/13 11:03:47,606 [76] DEBUG index - Current user is: admin +01/18/13 11:03:47,606 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:47,606 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:47,606 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:47,608 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:47,608 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:47,611 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:47,611 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:47,613 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:47,613 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:47,614 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,614 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:47,614 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:47,614 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:47,614 [76] DEBUG index - skipping headers +01/18/13 11:03:47,614 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:47,615 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:47,617 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:47,617 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:47,617 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:47,617 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,617 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:47,617 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,617 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:47,618 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:47,625 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:47,625 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,625 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:47,629 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:47,629 [76] DEBUG index - Prepared sql query parameters : [92] +01/18/13 11:03:47,631 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:47,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:47,632 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:47,632 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,632 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:47,632 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:47,633 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:47,634 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:03:47,638 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:03:47,638 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:03:47,638 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,638 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,638 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:47,639 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:03:47,643 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,644 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:47,644 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:47,644 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:03:47,644 [76] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/18/13 11:03:47,651 [76] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/18/13 11:03:47,651 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:47,652 [76] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/18/13 11:03:47,652 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,652 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,652 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:47,652 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:47,652 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,654 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,654 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:03:47,654 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:47,654 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,654 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,654 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:03:47,654 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:47,655 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:47,657 [76] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:47,660 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:47,660 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,661 [76] DEBUG index - Entering function initSortByField (ServiceContracts) +01/18/13 11:03:47,661 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,661 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,661 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:47,661 [76] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:47,664 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:47,664 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:03:47,664 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:03:47,664 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,664 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:47,665 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:47,665 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,666 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:47,666 [76] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/18/13 11:03:47,666 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,666 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:47,666 [76] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/18/13 11:03:47,670 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:47,670 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:03:47,675 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/18/13 11:03:47,680 [76] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,2,) method ... +01/18/13 11:03:47,680 [76] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/18/13 11:03:47,680 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:47,680 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,680 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:47,681 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:47,682 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,682 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,683 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,683 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,683 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:03:47,683 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,683 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,683 [76] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/18/13 11:03:47,685 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,685 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:03:47,686 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,686 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,686 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:03:47,687 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,688 [76] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/18/13 11:03:47,688 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,688 [76] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/18/13 11:03:47,688 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,688 [76] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/18/13 11:03:47,688 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,689 [76] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/18/13 11:03:47,690 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,690 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,691 [76] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/18/13 11:03:47,691 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:03:47,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:47,691 [76] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/18/13 11:03:47,693 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:03:47,693 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:47,694 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:47,695 [76] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:47,695 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:47,695 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:47,697 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,697 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,697 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:47,697 [76] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/18/13 11:03:47,700 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:47,700 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:47,701 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:03:47,701 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,701 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:47,701 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:47,701 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:47,701 [76] DEBUG index - Prepared sql query parameters : [6,37] +01/18/13 11:03:47,704 [76] INFO index - getNextRow +01/18/13 11:03:47,704 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:47,705 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:49,022 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:49,168 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:49,168 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:49,168 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:49,169 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:49,169 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:49,169 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:49,169 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:49,169 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:49,169 [76] INFO index - current module is Accounts +01/18/13 11:03:49,222 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:49,222 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:49,222 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:49,222 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:49,223 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,223 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:49,223 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,223 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:49,223 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:49,232 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:49,232 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,232 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:49,232 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:49,233 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:49,234 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:49,234 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,234 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:49,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,235 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:49,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,235 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:49,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,236 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:49,236 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,237 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:49,237 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,237 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:49,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,238 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:49,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,238 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:49,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,239 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:49,239 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,239 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:49,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,240 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:49,240 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,240 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:49,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,241 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:49,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,242 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:49,242 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,242 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:49,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,243 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:49,243 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,243 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:49,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,244 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:49,244 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,244 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:49,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,245 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:49,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,245 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:49,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,246 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:49,246 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,247 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:49,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,247 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:49,247 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,247 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:49,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,248 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:49,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,248 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:49,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,249 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:49,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,249 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:49,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,250 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:49,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,251 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:49,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,251 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:49,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,252 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:49,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,252 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:49,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,253 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:49,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,253 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:49,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,254 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:49,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,254 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:49,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,255 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:49,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,255 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:49,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,256 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:49,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,256 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:49,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,257 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:49,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,257 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:49,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,258 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:49,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,258 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:49,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,259 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:49,264 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:49,264 [76] DEBUG index - Prepared sql query parameters : [213,1,Accounts,AccountsAjax,2,2013-01-18 11:03:49] +01/18/13 11:03:49,267 [76] DEBUG index - Current user is: admin +01/18/13 11:03:49,268 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:49,268 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:49,268 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:49,270 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:49,270 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:49,272 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:49,273 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:49,274 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:49,275 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:49,275 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,276 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:49,276 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:49,276 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:49,276 [76] DEBUG index - skipping headers +01/18/13 11:03:49,276 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:49,277 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:49,279 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:49,279 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:49,279 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:49,279 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,279 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:49,279 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,279 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:49,279 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:49,287 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:49,287 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,287 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:49,291 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:49,291 [76] DEBUG index - Prepared sql query parameters : [108] +01/18/13 11:03:49,294 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:49,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:49,294 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:49,294 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,294 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:49,294 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:49,296 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:49,296 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:03:49,302 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:03:49,302 [76] DEBUG index - in getColumnFields Services +01/18/13 11:03:49,303 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,303 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,303 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,303 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,303 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:49,303 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:03:49,309 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,309 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,309 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:49,310 [76] DEBUG index - Entering isPermitted(Services,4,) method ... +01/18/13 11:03:49,310 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:49,311 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:49,311 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:49,311 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:03:49,311 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,312 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,312 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:03:49,312 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:49,312 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:49,314 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2), ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:49,317 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:49,317 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,318 [76] DEBUG index - Entering function initSortByField (Services) +01/18/13 11:03:49,318 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,318 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,318 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:49,318 [76] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:49,324 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:49,324 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:03:49,324 [76] DEBUG index - in getColumnFields Services +01/18/13 11:03:49,324 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,324 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,324 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:49,325 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,325 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,325 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:49,325 [76] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/18/13 11:03:49,325 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,326 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,326 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:49,326 [76] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/18/13 11:03:49,328 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:49,328 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) +01/18/13 11:03:49,362 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/18/13 11:03:49,387 [76] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,2,) method ... +01/18/13 11:03:49,387 [76] DEBUG index - Entering getURLstring(Services) method ... +01/18/13 11:03:49,387 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:49,387 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,387 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,388 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:49,388 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:49,389 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,389 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,390 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,390 [76] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/18/13 11:03:49,390 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,390 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,391 [76] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/18/13 11:03:49,392 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,393 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/18/13 11:03:49,394 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,395 [76] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/18/13 11:03:49,396 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:03:49,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:49,397 [76] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/18/13 11:03:49,398 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:03:49,399 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:49,399 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:49,400 [76] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:49,400 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:49,400 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:49,402 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,402 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,402 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:49,403 [76] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/18/13 11:03:49,408 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:49,408 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:49,408 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:03:49,408 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,408 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:49,408 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:49,408 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:49,408 [76] DEBUG index - Prepared sql query parameters : [6,38] +01/18/13 11:03:49,417 [76] INFO index - getNextRow +01/18/13 11:03:49,418 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:49,418 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:03:51,307 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:51,444 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:51,444 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:51,445 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:51,445 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:51,445 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:51,445 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:51,445 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:51,446 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:51,446 [76] INFO index - current module is Accounts +01/18/13 11:03:51,497 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:51,497 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:51,497 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:51,497 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,498 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,498 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,498 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,498 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:51,498 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:51,509 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,509 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,509 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:51,509 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:51,510 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:51,510 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:51,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,511 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:51,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,512 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:51,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,512 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:51,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,513 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:51,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,513 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:51,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,514 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:51,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,514 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:51,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,515 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:51,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,516 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:51,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,516 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:51,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,517 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:51,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,517 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:51,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,518 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:51,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,518 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:51,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,519 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:51,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,519 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:51,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,520 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:51,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,520 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:51,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,521 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:51,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,522 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:51,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,522 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:51,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,523 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:51,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,523 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:51,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,523 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:51,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,524 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:51,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,525 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:51,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,525 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:51,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,526 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:51,526 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,526 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:51,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,527 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:51,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,527 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:51,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,528 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:51,528 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,528 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:51,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,529 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:51,529 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,529 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:51,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,530 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:51,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,530 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:51,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,531 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:51,531 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,531 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:51,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,532 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:51,532 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,532 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:51,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,533 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:51,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,533 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:51,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,534 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:51,534 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,534 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:51,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,535 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:51,535 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,535 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:51,570 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:51,570 [76] DEBUG index - Prepared sql query parameters : [214,1,Accounts,AccountsAjax,2,2013-01-18 11:03:51] +01/18/13 11:03:51,605 [76] DEBUG index - Current user is: admin +01/18/13 11:03:51,605 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:51,605 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:51,605 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:51,607 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:51,607 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:51,609 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:51,610 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:51,611 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:51,612 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:51,612 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:51,612 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:51,613 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:51,613 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:51,613 [76] DEBUG index - skipping headers +01/18/13 11:03:51,613 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:51,614 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:51,616 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:51,616 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:51,616 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:51,616 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,616 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:51,616 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,616 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:51,616 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:51,623 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:51,625 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:51,626 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,626 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:51,630 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:51,630 [76] DEBUG index - Prepared sql query parameters : [114] +01/18/13 11:03:51,641 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:51,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,642 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:51,642 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,642 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:51,642 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:51,644 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:51,644 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:03:51,647 [76] DEBUG index - Entering getColumnFields(Assets) method ... +01/18/13 11:03:51,647 [76] DEBUG index - in getColumnFields Assets +01/18/13 11:03:51,647 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:03:51,647 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,648 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:03:51,648 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,648 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:51,648 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:03:51,657 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:03:51,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,657 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:51,657 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:03:51,657 [76] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/18/13 11:03:51,778 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:51,778 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:51,778 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:51,779 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:51,779 [76] DEBUG index - array ( + 'module' => 'Calendar', + 'action' => 'CalendarAjax', + 'file' => 'ActivityReminderCallbackAjax', + 'ajax' => 'true', +) +01/18/13 11:03:51,779 [76] INFO index - About to take action CalendarAjax +01/18/13 11:03:51,779 [76] DEBUG index - in CalendarAjax +01/18/13 11:03:51,779 [76] INFO index - current page is modules/Calendar/CalendarAjax.php +01/18/13 11:03:51,779 [76] INFO index - current module is Calendar +01/18/13 11:03:51,830 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:51,830 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:51,830 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:51,830 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,831 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,831 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,831 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,831 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:51,831 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:51,839 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:51,840 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:51,840 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:51,840 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:51,840 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:51,841 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:51,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,842 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:51,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,842 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:51,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,843 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:51,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,843 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:51,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,844 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:51,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,844 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:51,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,845 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:51,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,845 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:51,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,846 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:51,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,846 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:51,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,847 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:51,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,848 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:51,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,848 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:51,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,849 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:51,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,849 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:51,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,850 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:51,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,850 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:51,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,851 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:51,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,851 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:51,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,852 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:51,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,852 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:51,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,853 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:51,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,853 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:51,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,853 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:51,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,854 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:51,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,854 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:51,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,855 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:51,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,855 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:51,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,856 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:51,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,856 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:51,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,857 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:51,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,857 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:51,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,858 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:51,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,858 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:51,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,859 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:51,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,859 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:51,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,860 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:51,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,860 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:51,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,861 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:51,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,861 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:51,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,862 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:51,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,862 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:51,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,863 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:51,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,863 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:51,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,864 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:51,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,864 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:51,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:51,865 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:51,865 [76] DEBUG index - Current user is: admin +01/18/13 11:03:51,865 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:51,865 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:51,865 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:51,867 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:51,867 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:51,870 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:51,870 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:51,872 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:51,872 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:03:51,873 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:51,873 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:51,873 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:51,873 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:51,873 [76] DEBUG index - skipping headers +01/18/13 11:03:51,874 [76] DEBUG index - Entering isPermitted(Calendar,ActivityReminderCallbackAjax,) method ... +01/18/13 11:03:51,875 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:51,880 [76] DEBUG Activity_Reminder - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:03:51,880 [76] DEBUG Activity_Reminder - Exiting isPermitted method ... +01/18/13 11:03:51,881 [76] DEBUG Activity_Reminder - Prepared sql query being executed : select * from vtiger_users where id=? +01/18/13 11:03:51,881 [76] DEBUG Activity_Reminder - Prepared sql query parameters : [1] +01/18/13 11:03:51,885 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 and ((DATE_FORMAT(vtiger_activity_reminder_popup.date_start,'%Y-%m-%d') <= '2013-01-18') AND (TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') <= '11:04')) +01/18/13 11:03:51,888 [76] DEBUG Activity_Reminder - query being executed : SELECT * FROM vtiger_activity_reminder_popup inner join vtiger_crmentity where vtiger_activity_reminder_popup.status = 0 and vtiger_activity_reminder_popup.recordid = vtiger_crmentity.crmid and vtiger_crmentity.smownerid = 1 and vtiger_crmentity.deleted = 0 AND vtiger_activity_reminder_popup.reminderid > 0 ORDER BY date_start DESC , TIME_FORMAT(vtiger_activity_reminder_popup.time_start,'%H:%i') DESC LIMIT 1 +01/18/13 11:03:52,700 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:03:52,841 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:03:52,842 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:03:52,842 [76] DEBUG index - ****Starting for new session +01/18/13 11:03:52,842 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:03:52,842 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Projects', + 'relation_id' => '123', + 'actions' => 'ADD,SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:03:52,843 [76] INFO index - About to take action AccountsAjax +01/18/13 11:03:52,843 [76] DEBUG index - in AccountsAjax +01/18/13 11:03:52,843 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:03:52,843 [76] INFO index - current module is Accounts +01/18/13 11:03:52,893 [76] DEBUG user - Entering Users() method ... +01/18/13 11:03:52,893 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:03:52,893 [76] DEBUG index - in getColumnFields Users +01/18/13 11:03:52,894 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:52,894 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,894 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:52,894 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,895 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:52,895 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:03:52,903 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:03:52,903 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,903 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:52,904 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:03:52,904 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:03:52,905 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:03:52,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,905 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:03:52,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,906 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:03:52,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,907 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:03:52,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,907 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:03:52,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,908 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:03:52,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,908 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:03:52,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,909 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:03:52,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,909 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:03:52,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,910 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:03:52,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,910 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:03:52,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,911 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:03:52,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,912 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:03:52,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,912 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:03:52,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,913 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:03:52,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,913 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:03:52,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,914 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:03:52,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,914 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:03:52,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,915 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:03:52,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,915 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:03:52,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,916 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:03:52,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,916 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:03:52,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,917 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:03:52,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,917 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:03:52,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,918 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:03:52,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,918 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:03:52,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,919 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:03:52,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,919 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:03:52,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,920 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:03:52,920 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,920 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:03:52,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,921 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:03:52,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,921 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:03:52,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,922 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:03:52,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,922 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:03:52,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,923 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:03:52,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,924 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:03:52,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,924 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:03:52,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,925 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:03:52,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,925 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:03:52,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,926 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:03:52,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,926 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:03:52,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,927 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:03:52,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,927 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:52,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,928 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:03:52,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,928 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:03:52,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,929 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:03:52,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,929 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:03:52,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,930 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:03:52,934 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:03:52,934 [76] DEBUG index - Prepared sql query parameters : [215,1,Accounts,AccountsAjax,2,2013-01-18 11:03:52] +01/18/13 11:03:52,937 [76] DEBUG index - Current user is: admin +01/18/13 11:03:52,938 [76] DEBUG index - Current theme is: softed +01/18/13 11:03:52,938 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:03:52,938 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:03:52,940 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:03:52,940 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:03:52,942 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:03:52,942 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:03:52,944 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:03:52,944 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:52,945 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:52,945 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:03:52,945 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:03:52,945 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:03:52,946 [76] DEBUG index - skipping headers +01/18/13 11:03:52,946 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:03:52,946 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:52,948 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:52,948 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:52,948 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,949 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,949 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,949 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,949 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:52,949 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:03:52,956 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,956 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,956 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:52,960 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:03:52,961 [76] DEBUG index - Prepared sql query parameters : [123] +01/18/13 11:03:52,963 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:52,963 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,963 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,963 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,964 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:52,964 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:52,965 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:03:52,965 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:03:52,969 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:52,969 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:52,969 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,969 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,969 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:52,970 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:03:52,970 [76] DEBUG index - Prepared sql query parameters : [Accounts,Project] +01/18/13 11:03:52,976 [76] DEBUG index - Entering isPermitted(Project,1,) method ... +01/18/13 11:03:52,977 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:52,977 [76] DEBUG index - Entering getFieldVisibilityPermission(Project,1,linktoaccountscontacts) method ... +01/18/13 11:03:52,977 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,977 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,977 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:03:52,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:03:52,977 [76] DEBUG index - Entering getColumnFields(Project) method ... +01/18/13 11:03:52,977 [76] DEBUG index - in getColumnFields Project +01/18/13 11:03:52,977 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,977 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,978 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,978 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,978 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:03:52,978 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:03:52,983 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,983 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,983 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:52,983 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:03:52,984 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:52,984 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:52,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:52,984 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:03:52,985 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:03:52,985 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:52,985 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:52,985 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:03:52,985 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:03:52,985 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:03:52,987 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Project,Project,SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:03:52,990 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:03:52,991 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:52,991 [76] DEBUG index - Entering function initSortByField (Project) +01/18/13 11:03:52,991 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,991 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,991 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:03:52,991 [76] DEBUG index - Prepared sql query parameters : [48,parent_id,quoteid,vendorid,access_count] +01/18/13 11:03:52,997 [76] DEBUG index - Exiting initSortByField +01/18/13 11:03:52,997 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:03:52,997 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:03:52,997 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:52,997 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,997 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:03:52,998 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,998 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,998 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:03:52,999 [76] DEBUG index - Entering getTableNameForField(Project,projectname) method ... +01/18/13 11:03:52,999 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:52,999 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:52,999 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:03:52,999 [76] DEBUG index - Prepared sql query parameters : [48,%projectname%] +01/18/13 11:03:53,001 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:03:53,002 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:03:53,005 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_project.projectname ASC LIMIT 0, 20 +01/18/13 11:03:53,010 [76] DEBUG index - Entering getListViewHeader(Project,,ASC,projectname,2,) method ... +01/18/13 11:03:53,010 [76] DEBUG index - Entering getURLstring(Project) method ... +01/18/13 11:03:53,011 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:03:53,011 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:53,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:53,011 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:53,011 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:53,012 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:53,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:53,013 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,013 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,013 [76] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/18/13 11:03:53,014 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,014 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,014 [76] DEBUG index - function getTranslatedString(项目名称) - translated to (项目名称) +01/18/13 11:03:53,016 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,016 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,016 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:03:53,016 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,016 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,016 [76] DEBUG index - function getTranslatedString(开始日期) - translated to (开始日期) +01/18/13 11:03:53,018 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,018 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:03:53,018 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,019 [76] DEBUG index - function getTranslatedString(状态) - translated to (状态) +01/18/13 11:03:53,020 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,021 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:03:53,021 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,021 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,021 [76] DEBUG index - function getTranslatedString(类型) - translated to (类型) +01/18/13 11:03:53,023 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,023 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,023 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:03:53,023 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:03:53,023 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:03:53,023 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:03:53,025 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:03:53,026 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:03:53,026 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:03:53,027 [76] DEBUG index - Entering getListViewEntries(Project,Project,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:03:53,027 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:03:53,027 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:03:53,029 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:53,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:53,029 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:03:53,029 [76] DEBUG index - Prepared sql query parameters : [48,projectname,startdate,projectstatus,projecttype,assigned_user_id] +01/18/13 11:03:53,033 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:03:53,033 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=projectname&sorder=ASC,Accounts,,) method ... +01/18/13 11:03:53,033 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:03:53,034 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:53,034 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:03:53,034 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:03:53,034 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:03:53,034 [76] DEBUG index - Prepared sql query parameters : [6,48] +01/18/13 11:03:53,036 [76] INFO index - getNextRow +01/18/13 11:03:53,037 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:03:53,037 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:10,018 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:10,161 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:10,161 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:10,161 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:10,162 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:10,162 [76] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'Delete', + 'record' => '132', + 'return_module' => 'Accounts', + 'return_action' => 'CallRelatedList', + 'return_id' => '2', + 'parenttab' => 'Marketing', + 'return_viewname' => '4', +) +01/18/13 11:04:10,162 [76] INFO index - About to take action Delete +01/18/13 11:04:10,162 [76] DEBUG index - in Delete +01/18/13 11:04:10,162 [76] INFO index - current page is modules/Contacts/Delete.php +01/18/13 11:04:10,162 [76] INFO index - current module is Contacts +01/18/13 11:04:10,213 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:10,213 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:10,213 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:10,213 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,214 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,214 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,214 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,214 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:10,215 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:10,246 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,246 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,247 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:10,247 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:10,247 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:10,248 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:10,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,249 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:10,249 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,249 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:10,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,250 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:10,250 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,250 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:10,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,251 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:10,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,252 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:10,252 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,252 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:10,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,253 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:10,253 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,253 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:10,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,254 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:10,254 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,254 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:10,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,255 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:10,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,255 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:10,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,256 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:10,256 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,256 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:10,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,257 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:10,257 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,257 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:10,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,258 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:10,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,259 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:10,259 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,259 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:10,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,260 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:10,260 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,260 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:10,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,261 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:10,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,261 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:10,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,261 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:10,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,262 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:10,262 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,262 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:10,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,263 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:10,263 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,263 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:10,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,264 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:10,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,265 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:10,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,265 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:10,265 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,266 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:10,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,266 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:10,266 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,267 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:10,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,267 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:10,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,268 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:10,268 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,268 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:10,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,269 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:10,269 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,269 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:10,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,270 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:10,270 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,270 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:10,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,271 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:10,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,271 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:10,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,272 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:10,272 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,272 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:10,273 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,273 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:10,282 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:10,282 [76] DEBUG index - Prepared sql query parameters : [216,1,Contacts,Delete,132,2013-01-18 11:04:10] +01/18/13 11:04:10,287 [76] DEBUG index - Current user is: admin +01/18/13 11:04:10,287 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:10,287 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:10,287 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:10,289 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:10,290 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:10,292 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:10,292 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:10,294 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:10,294 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:10,295 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,295 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:10,295 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:10,295 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:10,295 [76] DEBUG index - skipping headers +01/18/13 11:04:10,295 [76] DEBUG index - Entering isPermitted(Contacts,Delete,132) method ... +01/18/13 11:04:10,296 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,298 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:10,298 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:10,298 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:10,298 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,298 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:10,299 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,299 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:10,299 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:10,312 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:10,312 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,312 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:10,313 [76] DEBUG contact_delete - Entering DeleteEntity method (Contacts, Accounts, 132, 2) +01/18/13 11:04:10,313 [76] DEBUG contact_delete - Prepared sql query being executed : UPDATE vtiger_contactdetails SET accountid = ? WHERE contactid = ? +01/18/13 11:04:10,313 [76] DEBUG contact_delete - Prepared sql query parameters : [,132] +01/18/13 11:04:10,344 [76] DEBUG contact_delete - Prepared sql query being executed : UPDATE vtiger_crmentity SET modifiedtime = ?, modifiedby = ? WHERE crmid = ? +01/18/13 11:04:10,344 [76] DEBUG contact_delete - Prepared sql query parameters : [2013-01-18 11:04:10,1,2] +01/18/13 11:04:10,347 [76] DEBUG contact_delete - Exiting DeleteEntity method ... +01/18/13 11:04:10,348 [76] DEBUG contact_delete - Entering getParentTab() method ... +01/18/13 11:04:10,348 [76] DEBUG contact_delete - Exiting getParentTab method ... +01/18/13 11:04:10,353 [76] DEBUG contact_delete - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:10,353 [76] DEBUG contact_delete - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:10,354 [76] DEBUG contact_delete - Exiting isPermitted method ... +01/18/13 11:04:10,432 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:10,574 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:10,574 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:10,574 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:10,575 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:10,575 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'CallRelatedList', + 'parenttab' => 'Marketing', + 'activity_mode' => '', + 'record' => '2', + 'relmodule' => 'Contacts', +) +01/18/13 11:04:10,575 [76] INFO index - About to take action CallRelatedList +01/18/13 11:04:10,575 [76] DEBUG index - in CallRelatedList +01/18/13 11:04:10,575 [76] INFO index - current page is modules/Accounts/CallRelatedList.php +01/18/13 11:04:10,576 [76] INFO index - current module is Accounts +01/18/13 11:04:10,626 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:10,626 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:10,626 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:10,626 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,627 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,627 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,627 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,627 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:10,627 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:10,639 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:10,639 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,639 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:10,639 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:10,640 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:10,640 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:10,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,641 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:10,641 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,642 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:10,642 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,642 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:10,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,643 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:10,643 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,643 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:10,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,644 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:10,644 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,644 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:10,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,645 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:10,645 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,646 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:10,646 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,646 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:10,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,647 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:10,647 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,647 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:10,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,648 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:10,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,648 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:10,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,649 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:10,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,649 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:10,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,650 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:10,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,650 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:10,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,651 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:10,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,651 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:10,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,652 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:10,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,653 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:10,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,653 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:10,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,653 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:10,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,654 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:10,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,654 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:10,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,655 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:10,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,655 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:10,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,656 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:10,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,656 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:10,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,657 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:10,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,657 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:10,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,658 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:10,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,659 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:10,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,659 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:10,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,660 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:10,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,660 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:10,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,661 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:10,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,661 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:10,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,662 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:10,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,662 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:10,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,663 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:10,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,664 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:10,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,664 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:10,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,665 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:10,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,665 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:10,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,666 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:10,670 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:10,670 [76] DEBUG index - Prepared sql query parameters : [217,1,Accounts,CallRelatedList,2,2013-01-18 11:04:10] +01/18/13 11:04:10,683 [76] DEBUG index - Current user is: admin +01/18/13 11:04:10,683 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:10,683 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:10,683 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:10,686 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:10,686 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:10,688 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:10,688 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:10,690 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:10,690 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,691 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:10,691 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:10,691 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:10,692 [76] DEBUG index - including headers +01/18/13 11:04:10,692 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:10,692 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:10,696 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:10,696 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:10,701 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:04:10,702 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:04:10,703 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,703 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:04:10,703 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,703 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:04:10,704 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,704 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:04:10,704 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,704 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:04:10,705 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,705 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:04:10,705 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,705 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:04:10,705 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,706 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:04:10,706 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:10,706 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:04:10,706 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:04:10,706 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:04:10,715 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,715 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,715 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:10,715 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:10,716 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,716 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:10,717 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,717 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:10,717 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:04:10,717 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,718 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:10,718 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,718 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:10,719 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:10,719 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,719 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:10,721 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,721 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:10,721 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:10,721 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,722 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:10,722 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,722 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:10,722 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:04:10,723 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,723 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:10,724 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,724 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:10,724 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:10,725 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,725 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:10,725 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,725 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:10,726 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:10,726 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,726 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:04:10,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,727 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:10,727 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:04:10,728 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,728 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:10,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,729 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:10,729 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:10,729 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,729 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:10,730 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,730 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:10,730 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:10,731 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,731 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:10,732 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,732 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:10,732 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:10,732 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,732 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:10,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,733 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:10,733 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:04:10,734 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,734 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:10,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,735 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:10,735 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:10,735 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,736 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:10,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,736 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:10,736 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:10,737 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,737 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:10,738 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,738 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:10,738 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:04:10,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,739 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:10,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,739 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:10,739 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:04:10,740 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,740 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:10,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,741 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:10,741 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:10,742 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,742 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:10,743 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,743 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:10,743 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:10,743 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,744 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:10,744 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,744 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:10,744 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:04:10,745 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,745 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:04:10,745 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/18/13 11:04:10,745 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:10,745 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:10) method ... +01/18/13 11:04:10,746 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:10,746 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:10,746 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:10,747 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:04:10,747 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:04:10,748 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:04:10,752 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,752 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,752 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,752 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,753 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,753 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,753 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,753 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,753 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,753 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,753 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,754 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,754 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,754 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,754 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,754 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,754 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,754 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,755 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,755 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,755 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,755 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,755 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,755 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,755 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,756 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,756 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,756 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,756 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,756 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,756 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,757 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,757 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,757 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,757 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,757 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,757 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,757 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,758 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,758 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,758 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,758 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,758 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,758 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,759 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,759 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,760 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,760 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,761 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,761 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,762 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,762 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:04:10,766 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:10,767 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,767 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:10,767 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:10,770 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:10,770 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:10,771 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:10,771 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,771 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:10,772 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,772 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:10,772 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,772 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:10,773 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,773 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,773 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,773 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:10,774 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,774 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:10,774 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,774 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:10,775 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,775 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:10,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,775 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:10,776 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,776 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:10,776 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,776 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:04:10,776 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,777 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:10,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,777 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:10,777 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,777 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:10,777 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,778 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:10,778 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,778 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:10,778 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,778 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:10,779 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,779 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:10,780 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,780 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:04:10,780 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,780 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:04:10,781 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,781 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:04:10,781 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,781 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:10,781 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,782 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:10,782 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,782 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:10,782 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,782 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:04:10,783 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,783 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:10,783 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,783 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:10,784 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,784 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:10,784 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,784 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:10,784 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,785 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:10,785 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:10,785 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:10,789 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:10,790 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,791 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:04:10,791 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,791 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:04:10,792 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,792 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:04:10,793 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,793 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:04:10,794 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,794 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:10,794 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:04:10,798 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:04:10,798 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,798 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:04:10,798 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:04:10,802 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:04:10,810 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,810 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,810 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,811 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:10,811 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,811 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:10,811 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:10,811 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,811 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:10,811 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,811 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,811 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,812 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:10,812 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,812 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:10,812 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:10,812 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,812 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:10,812 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:10,812 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,813 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:10,813 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:10,813 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,813 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:10,813 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:10,814 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,814 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:10,814 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:10,814 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,814 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:10,814 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:04:10,815 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,815 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:04:10,817 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:10,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,818 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:10,818 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:04:10,818 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,818 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:04:10,819 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:04:10,819 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,819 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:04:10,819 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:04:10,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,820 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:04:10,820 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:10,820 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,820 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:10,821 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:10,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,821 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:04:10,821 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:04:10,821 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,821 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:04:10,822 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:04:10,822 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,822 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:04:10,822 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:04:10,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,823 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:04:10,823 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:10,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,823 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:10,823 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:10,823 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,823 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:10,824 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:10,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,824 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:10,824 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:10,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,824 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:10,824 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:10,824 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,824 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:10,824 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:10,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,825 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:10,825 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:10,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,825 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:10,826 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:10,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,826 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:10,826 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:10,826 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,827 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:10,827 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:10,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,827 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:10,827 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:10,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,827 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:10,827 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:10,828 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,828 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:10,828 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:10,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,829 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:10,829 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:10,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,829 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:10,830 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,830 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,830 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:04:10,830 [76] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,2) method ... +01/18/13 11:04:10,831 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,834 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:10,834 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:10,836 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:10,836 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:10,836 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,836 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,836 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,836 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,836 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:10,837 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:10,849 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,849 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,849 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:10,849 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:04:10,849 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,852 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/18/13 11:04:10,852 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,855 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/18/13 11:04:10,855 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,858 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/18/13 11:04:10,858 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,860 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/18/13 11:04:10,860 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,863 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,863 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,864 [76] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/18/13 11:04:10,864 [76] DEBUG index - id is 2 +01/18/13 11:04:10,865 [76] DEBUG index - name is vtiger +01/18/13 11:04:10,865 [76] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/18/13 11:04:10,865 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,865 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,865 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:04:10,866 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:04:10,866 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:10,866 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,866 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:10,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:10,866 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:10,866 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:10,866 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:10,866 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,867 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:10,867 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,867 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:04:10,867 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:04:10,878 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:10,878 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,878 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:10,878 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,878 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:10,879 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:10,879 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:04:10,879 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:10,880 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,880 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:10,880 [76] DEBUG index - Entering updateInfo(2) method ... +01/18/13 11:04:10,880 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:04:10,880 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:10,882 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:04:10,882 [76] INFO index - in getOwnerName 1 +01/18/13 11:04:10,882 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:10,883 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:10,883 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:10,885 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:04:10,885 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:10,888 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/18/13 11:04:10,888 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:10,888 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:04:10,888 [76] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/18/13 11:04:10,889 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,889 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,889 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/18/13 11:04:10,889 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:10,895 [76] DEBUG index - Exiting getRelatedLists method ... +01/18/13 11:04:10,896 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:10,896 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:10,897 [76] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/18/13 11:04:10,897 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:10,901 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:04:10,901 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:10,902 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,902 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:04:10,902 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,902 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:04:10,903 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,903 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:04:10,904 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,904 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:10,904 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,904 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:04:10,905 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,905 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:10,906 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,906 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:04:10,906 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:10,907 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:04:10,908 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,909 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,909 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:10,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,909 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:10,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,910 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,910 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,910 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,910 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,910 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,911 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,911 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,912 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,912 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:10,912 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,912 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:10,915 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:10,915 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,915 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:10,915 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:10,916 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,916 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:10,916 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:10,916 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,916 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:10,916 [76] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/18/13 11:04:10,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,917 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:04:10,917 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:10,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,917 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:10,918 [76] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/18/13 11:04:10,918 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,918 [76] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/18/13 11:04:10,918 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:10,918 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,919 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:10,919 [76] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/18/13 11:04:10,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,919 [76] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/18/13 11:04:10,919 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:10,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,920 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:10,920 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:10,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,920 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:10,920 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:10,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,920 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:10,921 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:10,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,921 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:10,921 [76] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/18/13 11:04:10,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,921 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:10,922 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:10,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,922 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:10,922 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:10,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,922 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:10,922 [76] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/18/13 11:04:10,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:10,923 [76] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/18/13 11:04:10,923 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:10,923 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:10,924 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:11,341 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,433 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,434 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,437 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,437 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,441 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,604 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:11,604 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:11,605 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:11,605 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:11,605 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:11,605 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:11,606 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:11,606 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:11,606 [76] INFO index - current module is Accounts +01/18/13 11:04:11,668 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:11,668 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:11,668 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:11,669 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,669 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,670 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:11,670 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:11,677 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,678 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,678 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,678 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:11,678 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:11,679 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:11,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,680 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:11,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,680 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:11,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,681 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:11,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,681 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:11,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,682 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:11,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,683 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:11,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,683 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:11,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,684 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:11,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,684 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:11,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,685 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:11,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,685 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:11,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,686 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:11,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,686 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:11,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,687 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:11,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,687 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:11,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,688 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:11,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,689 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:11,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,689 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:11,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,690 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:11,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,690 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:11,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,691 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:11,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,691 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:11,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,692 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:11,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,692 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:11,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,693 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:11,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,693 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:11,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,694 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:11,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,694 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:11,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,695 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:11,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,695 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:11,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,696 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:11,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,696 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:11,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,697 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:11,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,698 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:11,698 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,698 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:11,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,699 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:11,699 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,699 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:11,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,700 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:11,700 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,700 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:11,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,701 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:11,701 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,701 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:11,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,702 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:11,702 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,703 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:11,703 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,703 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:11,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,704 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:11,704 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,704 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:11,705 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,705 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:11,708 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:11,709 [76] DEBUG index - Prepared sql query parameters : [218,1,Accounts,AccountsAjax,2,2013-01-18 11:04:11] +01/18/13 11:04:11,733 [76] DEBUG index - Current user is: admin +01/18/13 11:04:11,733 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:11,733 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:11,733 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:11,735 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:11,736 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:11,738 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:11,738 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:11,740 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:11,740 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:11,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,741 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:11,741 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:11,741 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:11,741 [76] DEBUG index - skipping headers +01/18/13 11:04:11,741 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:11,742 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:11,744 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:11,744 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:11,744 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,744 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,744 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,744 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,744 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:11,744 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:11,752 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,752 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,752 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,756 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:11,756 [76] DEBUG index - Prepared sql query parameters : [5] +01/18/13 11:04:11,761 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:11,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,761 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,761 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,761 [76] DEBUG index - Entering get_invoices(2) method ... +01/18/13 11:04:11,761 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:11,761 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:04:11,765 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:04:11,765 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:04:11,766 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:04:11,766 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,766 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,766 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,766 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:11,766 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:04:11,775 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,775 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,775 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:04:11,776 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:11,776 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:11,777 [76] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/18/13 11:04:11,777 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,778 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,778 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:11,778 [76] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/18/13 11:04:11,779 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:11,779 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:11,779 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:11,779 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:11,779 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:11,779 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:11,779 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:11,782 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:11,785 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:11,785 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,785 [76] DEBUG index - Entering function initSortByField (Invoice) +01/18/13 11:04:11,785 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,785 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:11,786 [76] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:11,789 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:11,789 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:04:11,790 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:04:11,790 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:04:11,790 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,790 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,790 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,790 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:04:11,791 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,791 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:11,796 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:04:11,821 [76] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,2,) method ... +01/18/13 11:04:11,821 [76] DEBUG index - Entering getURLstring(Invoice) method ... +01/18/13 11:04:11,821 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:11,822 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,822 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,822 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:11,822 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:11,823 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,823 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,824 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,825 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,825 [76] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/18/13 11:04:11,827 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,827 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,827 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:11,828 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,829 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:04:11,829 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,829 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,829 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:11,831 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,831 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,831 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:11,833 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:11,833 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,833 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:11,835 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:11,835 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:11,835 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:11,837 [76] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:11,837 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:11,837 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:11,838 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,838 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,839 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:11,839 [76] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:11,843 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:11,843 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:11,843 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:11,843 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,843 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,843 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,843 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:11,844 [76] DEBUG index - Prepared sql query parameters : [6,23] +01/18/13 11:04:11,846 [76] INFO index - getNextRow +01/18/13 11:04:11,847 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:11,847 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:11,848 [76] DEBUG index - Exiting get_invoices method ... +01/18/13 11:04:11,852 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:11,853 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:11,853 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:11,853 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:11,854 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:11,854 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:11,854 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:11,854 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:11,854 [76] INFO index - current module is Accounts +01/18/13 11:04:11,908 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:11,909 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:11,909 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:11,909 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,909 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,910 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,910 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:11,910 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:11,918 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:11,919 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,919 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,919 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:11,919 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:11,920 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:11,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,921 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:11,921 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,921 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:11,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,922 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:11,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,923 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:11,923 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:11,923 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,923 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:11,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,924 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:11,924 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,924 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:11,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,925 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:11,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,925 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:11,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,926 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:11,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,927 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:11,927 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,927 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:11,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,928 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:11,928 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,929 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:11,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,929 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:11,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,930 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:11,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,930 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:11,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,931 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:11,931 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,932 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:11,932 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,932 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:11,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,933 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:11,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,933 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:11,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,934 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:11,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,934 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:11,934 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,935 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:11,935 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,935 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:11,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,936 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:11,936 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,936 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:11,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,937 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:11,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,937 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:11,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,938 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:11,938 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,939 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:11,939 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,939 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:11,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,940 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:11,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,940 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:11,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,941 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:11,941 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,941 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:11,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,942 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:11,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,942 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:11,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,943 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:11,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,943 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:11,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,944 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:11,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,945 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:11,945 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,945 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:11,945 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,946 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:11,946 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,946 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:11,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:11,947 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:11,951 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:11,951 [76] DEBUG index - Prepared sql query parameters : [219,1,Accounts,AccountsAjax,2,2013-01-18 11:04:11] +01/18/13 11:04:11,954 [76] DEBUG index - Current user is: admin +01/18/13 11:04:11,954 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:11,955 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:11,955 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:11,957 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:11,957 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:11,959 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:11,959 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:11,961 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:11,961 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:11,962 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:11,962 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:11,962 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:11,962 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:11,962 [76] DEBUG index - skipping headers +01/18/13 11:04:11,962 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:11,963 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:11,965 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:11,965 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:11,965 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,965 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,966 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:11,966 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:11,993 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:11,993 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:11,993 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:11,997 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:11,998 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:12,000 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:12,000 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,000 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,001 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,001 [76] DEBUG index - Entering get_activities(2) method ... +01/18/13 11:04:12,001 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:12,001 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:12,003 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:12,003 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:12,003 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,003 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,004 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,004 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,004 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:04:12,004 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:04:12,012 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,013 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:12,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,013 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,014 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,014 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,015 [76] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/18/13 11:04:12,016 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,016 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:04:12,016 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,016 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,017 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:12,017 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:12,017 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,018 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:12,018 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,018 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,018 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,018 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:12,018 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:04:12,018 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:12,019 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,019 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:12,019 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:12,019 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,019 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,019 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:12,019 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,020 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,020 [76] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/18/13 11:04:12,020 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:12,020 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:12,022 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:12,025 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,026 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,026 [76] DEBUG index - Entering function initSortByField (Calendar) +01/18/13 11:04:12,026 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,026 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,026 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:12,026 [76] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:12,031 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:12,031 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:12,031 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:12,031 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,031 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,031 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:12,031 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,032 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,032 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,033 [76] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/18/13 11:04:12,033 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,033 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:12,033 [76] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/18/13 11:04:12,037 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:12,038 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 2 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/18/13 11:04:12,043 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/18/13 11:04:12,049 [76] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,2,) method ... +01/18/13 11:04:12,050 [76] DEBUG index - Entering getURLstring(Activity) method ... +01/18/13 11:04:12,050 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:12,050 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,050 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,050 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,050 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,052 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,052 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,052 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,052 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,052 [76] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/18/13 11:04:12,054 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,054 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,055 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:12,056 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,057 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:12,058 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,059 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,059 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:12,059 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,059 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,059 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:04:12,061 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,061 [76] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/18/13 11:04:12,061 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,062 [76] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/18/13 11:04:12,064 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,064 [76] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/18/13 11:04:12,066 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,066 [76] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/18/13 11:04:12,066 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,066 [76] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/18/13 11:04:12,068 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,068 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,068 [76] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/18/13 11:04:12,070 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,070 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,070 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:12,072 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:12,072 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,072 [76] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/18/13 11:04:12,074 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:12,075 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,075 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:12,076 [76] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:12,076 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,076 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,078 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,078 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,079 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/18/13 11:04:12,079 [76] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/18/13 11:04:12,084 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:12,084 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:12,084 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:12,084 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,084 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,084 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,084 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:12,084 [76] DEBUG index - Prepared sql query parameters : [6,9] +01/18/13 11:04:12,087 [76] INFO index - getNextRow +01/18/13 11:04:12,088 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:12,088 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:12,088 [76] DEBUG index - Exiting get_activities method ... +01/18/13 11:04:12,094 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:12,094 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:12,094 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:12,095 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:12,095 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:12,095 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:12,095 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:12,095 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:12,095 [76] INFO index - current module is Accounts +01/18/13 11:04:12,148 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:12,148 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:12,149 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:12,149 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,149 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,149 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,150 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,150 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,150 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:12,158 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,158 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,158 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,159 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:12,159 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:12,160 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:12,160 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,160 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:12,161 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,161 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:12,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,162 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:12,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,162 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:12,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,163 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:12,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,163 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:12,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,164 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:12,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,164 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:12,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,165 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:12,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,166 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:12,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,166 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:12,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,167 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:12,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,167 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:12,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,168 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:12,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,168 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:12,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,169 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:12,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,169 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:12,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,170 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:12,170 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:12,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,170 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:12,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,171 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:12,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,171 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:12,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,172 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:12,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,173 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:12,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,173 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:12,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,173 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:12,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,174 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:12,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,175 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:12,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,175 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:12,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,176 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:12,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,176 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:12,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,177 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:12,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,177 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:12,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,178 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:12,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,178 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:12,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,179 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:12,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,180 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:12,180 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,180 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:12,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,181 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:12,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,181 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:12,182 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,182 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:12,182 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,182 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:12,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,183 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:12,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,184 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:12,184 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,184 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:12,185 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,185 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:12,185 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,185 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:12,186 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,186 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:12,190 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:12,190 [76] DEBUG index - Prepared sql query parameters : [220,1,Accounts,AccountsAjax,2,2013-01-18 11:04:12] +01/18/13 11:04:12,208 [76] DEBUG index - Current user is: admin +01/18/13 11:04:12,208 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:12,208 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:12,208 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:12,210 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:12,210 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:12,213 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:12,213 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:12,214 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:12,215 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,215 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,215 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:12,216 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:12,216 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:12,216 [76] DEBUG index - skipping headers +01/18/13 11:04:12,216 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:12,217 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,219 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,219 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,219 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,219 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,219 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,219 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,219 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,219 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:12,227 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,227 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,227 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,231 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:12,231 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:12,235 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:12,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,235 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,235 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,235 [76] DEBUG index - Entering get_contacts(2) method ... +01/18/13 11:04:12,235 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:12,235 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:12,238 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:12,238 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:12,238 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,238 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,238 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,238 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,238 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,238 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:12,247 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,247 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,247 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,248 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,248 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,249 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/18/13 11:04:12,249 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,249 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,250 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:12,250 [76] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/18/13 11:04:12,251 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,251 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,251 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:12,251 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,251 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:12,251 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:12,251 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:12,254 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:12,257 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,257 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,257 [76] DEBUG index - Entering function initSortByField (Contacts) +01/18/13 11:04:12,257 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,258 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,258 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:12,258 [76] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:12,262 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:12,262 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:12,262 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:12,262 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,262 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,262 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,263 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,263 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,263 [76] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/18/13 11:04:12,263 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,264 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,264 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:12,264 [76] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/18/13 11:04:12,267 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:12,267 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 2 +01/18/13 11:04:12,272 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/18/13 11:04:12,278 [76] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,2,) method ... +01/18/13 11:04:12,278 [76] DEBUG index - Entering getURLstring(Contacts) method ... +01/18/13 11:04:12,278 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:12,279 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,279 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,279 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,279 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,280 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,281 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,282 [76] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/18/13 11:04:12,284 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,284 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,284 [76] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/18/13 11:04:12,286 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,286 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,286 [76] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/18/13 11:04:12,288 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,288 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,288 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:12,289 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,289 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,289 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:04:12,291 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,291 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,291 [76] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/18/13 11:04:12,293 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,293 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,293 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:12,295 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:12,295 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,296 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:12,297 [76] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +130,CON11,2,,Jennifer,Davis,jennifer_davis@company.com,(508) 156-2360,(858) 849-6114,IT Developer,,,0,,,,,,0,0,,0,0,130,1,vtiger,Administrator +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:12,297 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,297 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,298 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,298 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,299 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:04:12,299 [76] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/18/13 11:04:12,303 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,lastname,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,304 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,304 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,306 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,306 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,306 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,306 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,306 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,307 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,title,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,307 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,307 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,309 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,309 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,309 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,309 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,309 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,310 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,email,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,310 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,311 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,312 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,312 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,312 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,312 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,312 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,312 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,313 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,313 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,phone,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,314 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,314 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,315 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,315 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,315 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,315 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,316 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,317 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,assigned_user_id,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,317 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,317 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,318 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,319 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,319 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:12,319 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,319 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,319 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:12,320 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,320 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,320 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,321 [76] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/18/13 11:04:12,322 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,322 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,322 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,328 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,328 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,328 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,328 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,329 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,330 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:12,330 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:12,332 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:12,332 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:12,332 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:12,332 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,333 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,333 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,333 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:12,333 [76] DEBUG index - Prepared sql query parameters : [6,4] +01/18/13 11:04:12,337 [76] INFO index - getNextRow +01/18/13 11:04:12,338 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:12,338 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:12,338 [76] DEBUG index - Exiting get_contacts method ... +01/18/13 11:04:12,343 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:12,343 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:12,343 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:12,344 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:12,344 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:12,344 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:12,344 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:12,344 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:12,344 [76] INFO index - current module is Accounts +01/18/13 11:04:12,388 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:12,388 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:12,388 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:12,388 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,389 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,389 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,389 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,389 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,389 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:12,398 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,398 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,398 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,398 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:12,399 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:12,399 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:12,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,400 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:12,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,401 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:12,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,401 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:12,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,402 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:12,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,402 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:12,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,403 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:12,403 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,403 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:12,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,404 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:12,404 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,404 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:12,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,405 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:12,405 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,405 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:12,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,406 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:12,406 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,406 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:12,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,407 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:12,407 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,407 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:12,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,408 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:12,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,408 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:12,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,409 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:12,409 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,409 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:12,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,410 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:12,410 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,410 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:12,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,411 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:12,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,411 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:12,411 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,412 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:12,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,412 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:12,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,413 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:12,413 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,413 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:12,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,414 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:12,414 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,414 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:12,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,415 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:12,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,415 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:12,415 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:12,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,416 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:12,416 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,416 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:12,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,417 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:12,417 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,417 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:12,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,418 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:12,418 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,418 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:12,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,419 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:12,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,419 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:12,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,420 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:12,420 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,420 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:12,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,421 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:12,421 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,421 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:12,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,422 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:12,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,422 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:12,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,423 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:12,423 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,423 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:12,428 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:12,428 [76] DEBUG index - Prepared sql query parameters : [221,1,Accounts,AccountsAjax,2,2013-01-18 11:04:12] +01/18/13 11:04:12,432 [76] DEBUG index - Current user is: admin +01/18/13 11:04:12,432 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:12,432 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:12,432 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:12,434 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:12,434 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:12,437 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:12,437 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:12,438 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:12,439 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,439 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,440 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:12,440 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:12,440 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:12,440 [76] DEBUG index - skipping headers +01/18/13 11:04:12,440 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:12,441 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,443 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,443 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,443 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,443 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,443 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,443 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,443 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,443 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:12,452 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,453 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,457 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:12,457 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:12,459 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:12,460 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,460 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,460 [76] DEBUG index - Entering get_salesorder(2) method ... +01/18/13 11:04:12,460 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:12,460 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:04:12,464 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:04:12,464 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:04:12,464 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,464 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,464 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,464 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,465 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,465 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:04:12,473 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,473 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,474 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,474 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,475 [76] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/18/13 11:04:12,475 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,476 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:12,476 [76] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/18/13 11:04:12,476 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,477 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,477 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:12,477 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,477 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:12,477 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:12,477 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:12,480 [76] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:12,483 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,483 [76] DEBUG index - Entering function initSortByField (SalesOrder) +01/18/13 11:04:12,483 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,483 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,483 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:12,484 [76] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:12,492 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:12,492 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:04:12,492 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:04:12,492 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,492 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,492 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,493 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,493 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,493 [76] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/18/13 11:04:12,493 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,493 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,493 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:12,494 [76] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/18/13 11:04:12,496 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:12,496 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 2 +01/18/13 11:04:12,499 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/18/13 11:04:12,504 [76] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,2,) method ... +01/18/13 11:04:12,504 [76] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/18/13 11:04:12,504 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:12,504 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,504 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,504 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,505 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,506 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,506 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,507 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,507 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,507 [76] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/18/13 11:04:12,508 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,508 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,508 [76] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/18/13 11:04:12,510 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,510 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:12,512 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,512 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:12,512 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,513 [76] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/18/13 11:04:12,513 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,513 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,513 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:12,515 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:12,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,515 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:12,517 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:12,518 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,518 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:12,519 [76] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,SalesOrderEditView,DeleteSalesOrder,) method ... +01/18/13 11:04:12,519 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,519 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,521 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,521 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,522 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:12,522 [76] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:12,525 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:12,526 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:12,526 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:12,526 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,526 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,526 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,526 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:12,526 [76] DEBUG index - Prepared sql query parameters : [6,22] +01/18/13 11:04:12,529 [76] INFO index - getNextRow +01/18/13 11:04:12,530 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:12,530 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:12,530 [76] DEBUG index - Exiting get_salesorder method ... +01/18/13 11:04:12,535 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:12,535 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:12,535 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:12,536 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:12,536 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:12,536 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:12,536 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:12,537 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:12,537 [76] INFO index - current module is Accounts +01/18/13 11:04:12,586 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:12,586 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:12,586 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:12,587 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,587 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,587 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,587 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,587 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,588 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:12,599 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,599 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,599 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,600 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:12,600 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:12,601 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:12,601 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,602 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:12,602 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,602 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:12,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,603 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:12,603 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,603 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:12,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,604 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:12,604 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,605 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:12,605 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,605 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:12,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,606 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:12,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,607 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:12,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,607 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:12,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,608 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:12,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,609 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:12,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,609 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:12,609 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:12,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,610 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:12,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,610 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:12,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,611 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:12,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,611 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:12,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,612 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:12,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,613 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:12,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,613 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:12,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,614 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:12,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,614 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:12,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,615 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:12,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,615 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:12,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,616 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:12,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,616 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:12,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,617 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:12,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,617 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:12,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,618 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:12,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,619 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:12,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,619 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:12,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,620 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:12,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,620 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:12,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,621 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:12,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,621 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:12,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,622 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:12,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,622 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:12,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,623 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:12,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,624 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:12,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,624 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:12,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,625 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:12,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,625 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:12,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,626 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:12,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,626 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:12,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,627 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:12,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,627 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:12,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,628 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:12,632 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:12,632 [76] DEBUG index - Prepared sql query parameters : [222,1,Accounts,AccountsAjax,2,2013-01-18 11:04:12] +01/18/13 11:04:12,635 [76] DEBUG index - Current user is: admin +01/18/13 11:04:12,635 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:12,636 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:12,636 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:12,638 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:12,638 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:12,640 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:12,640 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:12,642 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:12,643 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,643 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,643 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:12,643 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:12,644 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:12,644 [76] DEBUG index - skipping headers +01/18/13 11:04:12,644 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:12,645 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,647 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,647 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,647 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,647 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,647 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,647 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,647 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,647 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:12,656 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,657 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,661 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:12,661 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:12,664 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:12,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,664 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,664 [76] DEBUG index - Entering get_quotes(2) method ... +01/18/13 11:04:12,664 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:12,664 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:12,670 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:04:12,670 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:04:12,670 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,670 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,671 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,671 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,671 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,671 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:12,678 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,678 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,678 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,679 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,679 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,680 [76] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/18/13 11:04:12,680 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,681 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:12,681 [76] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/18/13 11:04:12,682 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,682 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,682 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:04:12,682 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,682 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:04:12,682 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:12,682 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:12,685 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:12,688 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,688 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,689 [76] DEBUG index - Entering function initSortByField (Quotes) +01/18/13 11:04:12,689 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,689 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,689 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:12,689 [76] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:12,701 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:12,701 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:04:12,701 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:04:12,701 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,701 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,702 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,702 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,702 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,703 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:12,706 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:04:12,746 [76] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,2,) method ... +01/18/13 11:04:12,747 [76] DEBUG index - Entering getURLstring(Quotes) method ... +01/18/13 11:04:12,747 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:12,747 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,747 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,747 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,747 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,749 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,749 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,749 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,750 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,750 [76] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/18/13 11:04:12,752 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,752 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,752 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:12,754 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,754 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,754 [76] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/18/13 11:04:12,756 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,756 [76] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/18/13 11:04:12,756 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,757 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:12,757 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,757 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,757 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:12,759 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,759 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:12,761 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:12,761 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,762 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:12,763 [76] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +Administrator,75,1,1,1,Quotes,,2012-12-06 03:40:56,2012-12-06 03:40:56,,,0,1,0,75,Cont_Quote,3,Accepted,2007-10-29,26,QUO2,110.000,UPS,,0,,10.000,160.000,individual,0.000,10.000,50.000,2,,1,1.000,vtiger - 1000 units,vtiger +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:12,763 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,763 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,765 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,765 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,765 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:04:12,765 [76] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:12,769 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quote_no,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,770 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,770 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,771 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,771 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,772 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,772 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,773 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,subject,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,773 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,773 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,775 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,775 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,775 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,776 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quotestage,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,776 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,776 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,778 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,778 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,778 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,778 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,779 [76] DEBUG index - Entering getPotentialName(3) method ... +01/18/13 11:04:12,779 [76] INFO index - in getPotentialName 3 +01/18/13 11:04:12,779 [76] DEBUG index - Prepared sql query being executed : select potentialname from vtiger_potential where potentialid=? +01/18/13 11:04:12,779 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:12,782 [76] DEBUG index - Exiting getPotentialName method ... +01/18/13 11:04:12,783 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,hdnGrandTotal,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,783 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,784 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,785 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,785 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,785 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,785 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,786 [76] DEBUG index - Entering into function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:04:12,786 [76] DEBUG index - Prepared sql query being executed : select currency_id, vtiger_quotes.conversion_rate as conv_rate, vtiger_currency_info.* from vtiger_quotes + inner join vtiger_currency_info on vtiger_quotes.currency_id = vtiger_currency_info.id + where quoteid=? +01/18/13 11:04:12,786 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:04:12,789 [76] DEBUG index - Exit from function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:04:12,789 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:04:12,789 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:04:12,789 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:04:12,790 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:12,792 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:04:12,792 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:04:12,792 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,793 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,assigned_user_id,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:12,793 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,794 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,795 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,795 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,795 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:12,795 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,795 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:12,796 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:12,796 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,796 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,796 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,798 [76] DEBUG index - Entering isPermitted(Quotes,Delete,) method ... +01/18/13 11:04:12,799 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,799 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,799 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,804 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,804 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,805 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,805 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,805 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,806 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:12,806 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:04:12,808 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:12,808 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:12,808 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:12,808 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,809 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,809 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,809 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:12,809 [76] DEBUG index - Prepared sql query parameters : [6,20] +01/18/13 11:04:12,812 [76] INFO index - getNextRow +01/18/13 11:04:12,813 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:12,813 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:12,813 [76] DEBUG index - Exiting get_quotes method ... +01/18/13 11:04:12,818 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:12,818 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:12,818 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:12,819 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:12,819 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:12,819 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:12,819 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:12,820 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:12,820 [76] INFO index - current module is Accounts +01/18/13 11:04:12,874 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:12,874 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:12,874 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:12,874 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,875 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,875 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,875 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,875 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,875 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:12,884 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:12,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,884 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,884 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:12,885 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:12,885 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:12,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,886 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:12,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,886 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:12,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,887 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:12,887 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,887 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:12,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,888 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:12,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,888 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:12,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,889 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:12,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,889 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:12,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,890 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:12,890 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,890 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:12,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,891 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:12,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,892 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:12,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,892 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:12,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,893 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:12,893 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,893 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:12,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,894 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:12,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,894 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:12,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,895 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:12,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,895 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:12,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,896 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:12,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,896 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:12,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,897 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:12,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,897 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:12,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,897 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:12,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,898 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:12,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,898 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:12,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,899 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:12,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,899 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:12,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,900 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:12,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,900 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:12,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,901 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:12,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,901 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:12,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,902 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:12,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,902 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:12,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,903 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:12,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,903 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:12,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,904 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:12,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,904 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:12,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,905 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:12,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,906 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:12,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,906 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:12,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,907 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:12,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,907 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:12,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,908 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:12,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,908 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:12,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,909 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:12,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,909 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:12,914 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:12,914 [76] DEBUG index - Prepared sql query parameters : [223,1,Accounts,AccountsAjax,2,2013-01-18 11:04:12] +01/18/13 11:04:12,915 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:12,917 [76] DEBUG index - Current user is: admin +01/18/13 11:04:12,917 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:12,917 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:12,917 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:12,919 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:12,919 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:12,922 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:12,922 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:12,924 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:12,924 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,924 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,925 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:12,925 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:12,925 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:12,925 [76] DEBUG index - skipping headers +01/18/13 11:04:12,925 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:12,926 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,927 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:12,928 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:12,928 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,928 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,928 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,928 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:12,935 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,936 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,936 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,940 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:12,940 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:12,942 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:12,942 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:12,943 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:12,943 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,943 [76] DEBUG index - Entering get_opportunities(2) method ... +01/18/13 11:04:12,943 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:12,943 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:12,945 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:04:12,945 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:04:12,945 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,946 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,946 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:12,946 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:12,951 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,951 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,951 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,951 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,952 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,953 [76] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/18/13 11:04:12,954 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,954 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:12,954 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:12,954 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:12,954 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:12,954 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:12,954 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:12,959 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:12,962 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:12,962 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,963 [76] DEBUG index - Entering function initSortByField (Potentials) +01/18/13 11:04:12,963 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,963 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,963 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:12,963 [76] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:12,966 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:12,966 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:04:12,967 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:04:12,967 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,967 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,967 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:12,967 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,968 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,968 [76] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/18/13 11:04:12,968 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,968 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,968 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:12,968 [76] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/18/13 11:04:12,970 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:12,971 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 2 +01/18/13 11:04:12,974 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/18/13 11:04:12,978 [76] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,2,) method ... +01/18/13 11:04:12,978 [76] DEBUG index - Entering getURLstring(Potentials) method ... +01/18/13 11:04:12,979 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:12,979 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,979 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,979 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,979 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,980 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,981 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,981 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,982 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,982 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:12,984 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,984 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,984 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:12,986 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,986 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,986 [76] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/18/13 11:04:12,988 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,988 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,988 [76] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/18/13 11:04:12,990 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,990 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,990 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/18/13 11:04:12,992 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,992 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,992 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:12,992 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:12,992 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:12,993 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:04:12,994 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:12,995 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:12,995 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:12,996 [76] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +3,2,vtiger - 1000 units,Qualification,Existing Business,75000.00,2006-07-15,Existing Business,vtiger,Administrator,3,1 +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:12,996 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:12,996 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:12,997 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:12,998 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:12,998 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:12,998 [76] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/18/13 11:04:13,001 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,potentialname,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,002 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,002 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,003 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,003 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,004 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,004 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,004 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,004 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,related_to,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,005 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,005 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,006 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,006 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,006 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,007 [76] DEBUG index - Entering getSalesEntityType(2) method ... +01/18/13 11:04:13,007 [76] INFO index - in getSalesEntityType 2 +01/18/13 11:04:13,007 [76] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/18/13 11:04:13,007 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:13,009 [76] DEBUG index - Exiting getSalesEntityType method ... +01/18/13 11:04:13,009 [76] DEBUG index - Entering getEntityName(Accounts) method ... +01/18/13 11:04:13,009 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:13,010 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:13,012 [76] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/18/13 11:04:13,012 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:13,014 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,015 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,sales_stage,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,015 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,016 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,017 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,017 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,017 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,017 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,018 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,018 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,amount,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,018 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,019 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,020 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,020 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,020 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,021 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:04:13,021 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:04:13,021 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:04:13,021 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:13,023 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:04:13,023 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:04:13,024 [76] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/18/13 11:04:13,024 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:04:13,024 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,024 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,closingdate,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,025 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,025 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,026 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,026 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,026 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,026 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,027 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,027 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,assigned_user_id,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:13,027 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,028 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,029 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,029 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,029 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:13,029 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,029 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:13,030 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:13,030 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,030 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,030 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,032 [76] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/18/13 11:04:13,032 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,032 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,032 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,038 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,038 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,039 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,039 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,039 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,040 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:13,040 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:13,042 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:13,043 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:13,043 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:13,043 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,043 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,043 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,043 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:13,043 [76] DEBUG index - Prepared sql query parameters : [6,2] +01/18/13 11:04:13,046 [76] INFO index - getNextRow +01/18/13 11:04:13,047 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:13,047 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:13,047 [76] DEBUG index - Exiting get_opportunities method ... +01/18/13 11:04:13,051 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:13,051 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:13,052 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:13,052 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:13,053 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:13,053 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:13,053 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:13,053 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:13,053 [76] INFO index - current module is Accounts +01/18/13 11:04:13,094 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:13,094 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:13,094 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:13,094 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,095 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,095 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,095 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,095 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,095 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:13,106 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,106 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,106 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,107 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:13,107 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:13,108 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:13,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,108 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:13,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,109 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:13,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,109 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:13,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,110 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:13,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,111 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:13,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,111 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,112 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,112 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,113 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,113 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,114 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:13,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,114 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:13,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,115 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:13,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,116 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:13,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,116 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:13,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,117 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:13,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,117 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:13,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,118 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:13,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,118 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:13,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,119 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:13,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,119 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:13,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,120 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:13,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,120 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:13,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,121 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:13,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,121 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:13,121 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:13,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,122 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:13,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,122 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:13,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,123 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:13,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,123 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:13,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,124 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:13,124 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,124 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:13,125 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,125 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:13,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,126 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:13,126 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,126 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:13,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,127 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:13,127 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,127 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:13,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,128 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:13,128 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,129 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:13,129 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,129 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:13,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,130 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:13,130 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,130 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:13,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,131 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:13,131 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,131 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:13,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,132 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:13,132 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,133 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:13,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,133 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:13,134 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,134 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:13,139 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:13,139 [76] DEBUG index - Prepared sql query parameters : [224,1,Accounts,AccountsAjax,2,2013-01-18 11:04:13] +01/18/13 11:04:13,142 [76] DEBUG index - Current user is: admin +01/18/13 11:04:13,142 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:13,142 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:13,142 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:13,144 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:13,145 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:13,147 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:13,147 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:13,149 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:13,149 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,149 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,150 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:13,150 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:13,150 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:13,150 [76] DEBUG index - skipping headers +01/18/13 11:04:13,150 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:13,151 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,152 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,152 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,153 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,153 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,153 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,153 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,153 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,153 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:13,161 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,161 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,161 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,165 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:13,166 [76] DEBUG index - Prepared sql query parameters : [7] +01/18/13 11:04:13,169 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,170 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,170 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,170 [76] DEBUG index - Entering get_emails(2) method ... +01/18/13 11:04:13,170 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:13,170 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:13,172 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:04:13,173 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:04:13,173 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:04:13,173 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,173 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,173 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,173 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,173 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,173 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:13,178 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,179 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,179 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,179 [76] DEBUG email - Exiting Email method ... +01/18/13 11:04:13,179 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,179 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,181 [76] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/18/13 11:04:13,181 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,181 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,182 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:13,182 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,182 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:13,182 [76] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/18/13 11:04:13,182 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:13,187 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:13,187 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:13,191 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (2,130) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 2 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:13,194 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,195 [76] DEBUG index - Entering function initSortByField (Emails) +01/18/13 11:04:13,195 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,195 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,195 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:13,195 [76] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:13,198 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:13,198 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:04:13,198 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:04:13,198 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:04:13,198 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,199 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,199 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,199 [76] DEBUG email - Exiting Email method ... +01/18/13 11:04:13,199 [76] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/18/13 11:04:13,199 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,199 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,199 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:13,199 [76] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/18/13 11:04:13,204 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:13,204 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/18/13 11:04:13,207 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/18/13 11:04:13,211 [76] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,2,) method ... +01/18/13 11:04:13,212 [76] DEBUG index - Entering getURLstring(Emails) method ... +01/18/13 11:04:13,212 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:13,212 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,212 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,212 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,212 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,214 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,214 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,214 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,215 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,215 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:13,217 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,217 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,217 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:13,217 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,218 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,218 [76] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/18/13 11:04:13,219 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,220 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,220 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:13,220 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,220 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,220 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:04:13,222 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,222 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,222 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:04:13,222 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:13,222 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,222 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:04:13,223 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:13,223 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,223 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:13,224 [76] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:13,224 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,224 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,226 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,226 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,226 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:13,226 [76] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/18/13 11:04:13,229 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:13,229 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:13,229 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:13,230 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,230 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,230 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,230 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:13,230 [76] DEBUG index - Prepared sql query parameters : [6,10] +01/18/13 11:04:13,232 [76] INFO index - getNextRow +01/18/13 11:04:13,233 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:13,233 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:13,233 [76] DEBUG index - Exiting get_emails method ... +01/18/13 11:04:13,254 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:13,254 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:13,254 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:13,255 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:13,255 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:13,255 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:13,255 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:13,256 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:13,256 [76] INFO index - current module is Accounts +01/18/13 11:04:13,307 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:13,307 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:13,307 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:13,307 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,308 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,308 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,308 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,308 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,308 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:13,309 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:13,317 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,317 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,317 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,317 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:13,318 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:13,319 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:13,319 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,319 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:13,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,320 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:13,320 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,320 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:13,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,321 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:13,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,321 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:13,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,322 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,322 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,323 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,323 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,323 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,324 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,324 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,325 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:13,325 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,325 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:13,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,326 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:13,326 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,326 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:13,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,327 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:13,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,328 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:13,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,328 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:13,328 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,329 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:13,329 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,329 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:13,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,330 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:13,330 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,330 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:13,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,331 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:13,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,331 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:13,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,331 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:13,332 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,332 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:13,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,333 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:13,333 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,333 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:13,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,334 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:13,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,334 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:13,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,335 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:13,335 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,335 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:13,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,336 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:13,336 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,337 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:13,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,337 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:13,337 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,338 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:13,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,338 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:13,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,339 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:13,339 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,339 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:13,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,340 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:13,340 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,340 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:13,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,341 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:13,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,341 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:13,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,342 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:13,342 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,342 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:13,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,343 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:13,343 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,343 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:13,344 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,344 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:13,348 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:13,349 [76] DEBUG index - Prepared sql query parameters : [225,1,Accounts,AccountsAjax,2,2013-01-18 11:04:13] +01/18/13 11:04:13,352 [76] DEBUG index - Current user is: admin +01/18/13 11:04:13,352 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:13,352 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:13,353 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:13,354 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:13,355 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:13,357 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:13,357 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:13,359 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:13,359 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,360 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,360 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:13,360 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:13,360 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:13,360 [76] DEBUG index - skipping headers +01/18/13 11:04:13,360 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:13,361 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,363 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,363 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,363 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,363 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,363 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,363 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,363 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,363 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:13,372 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,373 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,373 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,377 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:13,377 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:13,379 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,380 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,380 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,380 [76] DEBUG index - Entering get_history(2) method ... +01/18/13 11:04:13,380 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:13,380 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:13,383 [76] DEBUG index - Exiting get_history method ... +01/18/13 11:04:13,383 [76] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0,2) method ... +01/18/13 11:04:13,384 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:13,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,385 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:13,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,386 [76] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/18/13 11:04:13,416 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:13,417 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:13,417 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:13,417 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:13,418 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:13,418 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:13,418 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:13,418 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:13,418 [76] INFO index - current module is Accounts +01/18/13 11:04:13,472 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:13,472 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:13,472 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:13,472 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,473 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,473 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,473 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:13,481 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,481 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,481 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,481 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:13,482 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:13,483 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:13,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,483 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:13,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,484 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:13,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,485 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:13,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,485 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:13,486 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:13,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,486 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:13,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,486 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,487 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,487 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,488 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,488 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,489 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:13,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,489 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:13,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,490 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:13,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,491 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:13,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,491 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:13,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,492 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:13,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,492 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:13,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,493 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:13,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,493 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:13,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,494 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:13,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,495 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:13,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,495 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:13,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,496 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:13,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,496 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:13,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,496 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:13,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,497 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:13,497 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,497 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:13,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,498 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:13,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,499 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:13,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,499 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:13,499 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,500 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:13,500 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,500 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:13,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,501 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:13,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,501 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:13,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,502 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:13,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,502 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:13,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,503 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:13,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,503 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:13,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,504 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:13,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,505 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:13,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,505 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:13,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,506 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:13,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,506 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:13,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,507 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:13,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,507 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:13,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,508 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:13,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,508 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:13,514 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:13,515 [76] DEBUG index - Prepared sql query parameters : [226,1,Accounts,AccountsAjax,2,2013-01-18 11:04:13] +01/18/13 11:04:13,517 [76] DEBUG index - Current user is: admin +01/18/13 11:04:13,517 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:13,518 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:13,518 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:13,520 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:13,520 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:13,522 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:13,522 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:13,524 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:13,524 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,525 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:13,525 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:13,525 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:13,525 [76] DEBUG index - skipping headers +01/18/13 11:04:13,525 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:13,526 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,528 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,528 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,528 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,528 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,529 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,529 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:13,536 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,536 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,537 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,541 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:13,541 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:13,543 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,543 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,544 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,544 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,544 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,545 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:13,545 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:13,548 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:04:13,548 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:04:13,548 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:04:13,548 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,548 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,548 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,548 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,549 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,549 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:13,553 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,553 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,553 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,553 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:04:13,553 [76] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/18/13 11:04:13,554 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,554 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:13,554 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:13,554 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:13,554 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:13,555 [76] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/18/13 11:04:13,555 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,555 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,555 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:04:13,556 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,556 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:04:13,556 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:13,556 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:13,558 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:13,561 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,561 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,562 [76] DEBUG index - Entering function initSortByField (Documents) +01/18/13 11:04:13,562 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,562 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,562 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:13,562 [76] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:13,566 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:13,566 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:04:13,566 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:04:13,566 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:04:13,567 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,567 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,567 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,567 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:04:13,567 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,568 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,568 [76] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/18/13 11:04:13,568 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,568 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,568 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:13,568 [76] DEBUG index - Prepared sql query parameters : [8,%title%] +01/18/13 11:04:13,571 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:13,571 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=2 +01/18/13 11:04:13,577 [76] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/18/13 11:04:13,583 [76] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,2,) method ... +01/18/13 11:04:13,583 [76] DEBUG index - Entering getURLstring(Documents) method ... +01/18/13 11:04:13,583 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:13,583 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,583 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,583 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,583 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,585 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,585 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,586 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:13,586 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,586 [76] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/18/13 11:04:13,588 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:13,589 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,589 [76] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/18/13 11:04:13,590 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:13,591 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,591 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:04:13,592 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:13,593 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,593 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:13,595 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:13,595 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,595 [76] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/18/13 11:04:13,595 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:13,595 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,596 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:13,597 [76] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:13,597 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,597 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,598 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,598 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,599 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:13,599 [76] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/18/13 11:04:13,603 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:13,603 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:13,603 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:13,603 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,603 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,604 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,604 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:13,604 [76] DEBUG index - Prepared sql query parameters : [6,8] +01/18/13 11:04:13,607 [76] INFO index - getNextRow +01/18/13 11:04:13,607 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:13,608 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:13,612 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:13,612 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:13,612 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:13,613 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:13,613 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:13,613 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:13,613 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:13,614 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:13,614 [76] INFO index - current module is Accounts +01/18/13 11:04:13,654 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:13,655 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:13,655 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:13,655 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,655 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,655 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,655 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,656 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,656 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:13,664 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,664 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,664 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:13,665 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:13,665 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:13,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,666 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:13,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,667 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:13,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,667 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:13,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,668 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:13,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,668 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:13,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,669 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,669 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,670 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,670 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,671 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,671 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:13,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,672 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:13,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,672 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:13,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,673 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:13,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,674 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:13,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,674 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:13,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,675 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:13,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,675 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:13,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,676 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:13,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,676 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:13,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,677 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:13,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,677 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:13,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,678 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:13,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,678 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:13,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,678 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:13,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,679 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:13,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,679 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:13,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,680 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:13,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,680 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:13,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,681 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:13,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,681 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:13,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,682 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:13,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,682 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:13,683 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:13,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,683 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:13,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,683 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:13,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,684 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:13,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,685 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:13,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,685 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:13,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,686 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:13,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,686 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:13,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,687 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:13,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,687 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:13,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,688 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:13,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,688 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:13,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,689 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:13,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,689 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:13,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,690 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:13,693 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:13,693 [76] DEBUG index - Prepared sql query parameters : [227,1,Accounts,AccountsAjax,2,2013-01-18 11:04:13] +01/18/13 11:04:13,697 [76] DEBUG index - Current user is: admin +01/18/13 11:04:13,697 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:13,697 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:13,697 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:13,699 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:13,699 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:13,702 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:13,702 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:13,704 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:13,704 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,704 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,705 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:13,705 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:13,705 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:13,705 [76] DEBUG index - skipping headers +01/18/13 11:04:13,705 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:13,706 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,707 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,708 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,708 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,708 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,708 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,708 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,708 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,708 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:13,715 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,715 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,716 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,720 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:13,720 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:13,722 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,722 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,722 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,723 [76] DEBUG index - Entering get_tickets(2) method ... +01/18/13 11:04:13,723 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:13,723 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:04:13,725 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:04:13,725 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:04:13,725 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:04:13,726 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,726 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,726 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,726 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:04:13,731 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,731 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,732 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,732 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:04:13,732 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,732 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,733 [76] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/18/13 11:04:13,734 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,734 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,734 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:13,734 [76] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/18/13 11:04:13,735 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,735 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,735 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:13,735 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:13,735 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:13,735 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:13,735 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:13,738 [76] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:13,741 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,741 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,741 [76] DEBUG index - Entering function initSortByField (HelpDesk) +01/18/13 11:04:13,741 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,741 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,742 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:13,742 [76] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:13,745 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:13,745 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:04:13,745 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:04:13,745 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:04:13,745 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,745 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,745 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,746 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:04:13,746 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,746 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,746 [76] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/18/13 11:04:13,746 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,746 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,747 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:13,747 [76] DEBUG index - Prepared sql query parameters : [13,%title%] +01/18/13 11:04:13,749 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:13,750 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 +01/18/13 11:04:13,753 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/18/13 11:04:13,758 [76] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,2,) method ... +01/18/13 11:04:13,758 [76] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/18/13 11:04:13,758 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:13,758 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,758 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,758 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,758 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,760 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,760 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,760 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,761 [76] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/18/13 11:04:13,763 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,763 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:13,765 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,765 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:13,766 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,766 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:13,768 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,768 [76] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/18/13 11:04:13,770 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,770 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:13,770 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:13,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,770 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:13,772 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:13,772 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,773 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:13,773 [76] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:13,774 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,774 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,775 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,776 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:13,776 [76] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/18/13 11:04:13,782 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:13,782 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/18/13 11:04:13,782 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:13,782 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,783 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,783 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,783 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:13,783 [76] DEBUG index - Prepared sql query parameters : [6,13] +01/18/13 11:04:13,788 [76] INFO index - getNextRow +01/18/13 11:04:13,789 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:13,789 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:13,789 [76] DEBUG index - Exiting get_tickets method ... +01/18/13 11:04:13,793 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:13,793 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:13,793 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:13,794 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:13,794 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:13,794 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:13,794 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:13,795 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:13,795 [76] INFO index - current module is Accounts +01/18/13 11:04:13,844 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:13,844 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:13,844 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:13,844 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,845 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,845 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,845 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,845 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,845 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:13,853 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:13,853 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,854 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,854 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:13,854 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:13,855 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:13,855 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,856 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:13,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,856 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:13,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,857 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:13,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,857 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:13,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,858 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:13,858 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,859 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:13,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,859 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:13,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,860 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:13,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,860 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:13,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,861 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,861 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,861 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:13,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,862 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:13,863 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:13,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,863 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:13,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,863 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:13,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,864 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:13,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,864 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:13,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,865 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:13,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,865 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:13,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,866 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:13,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,866 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:13,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,867 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:13,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,868 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:13,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,868 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:13,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,868 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:13,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,869 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:13,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,869 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:13,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,870 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:13,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,871 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:13,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,871 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:13,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,872 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:13,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,872 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:13,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,873 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:13,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,873 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:13,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,874 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:13,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,874 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:13,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,875 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:13,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,875 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:13,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,876 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:13,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,877 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:13,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,877 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:13,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,878 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:13,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,878 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:13,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,879 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:13,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,879 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:13,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,880 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:13,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,881 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:13,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,881 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:13,892 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:13,892 [76] DEBUG index - Prepared sql query parameters : [228,1,Accounts,AccountsAjax,2,2013-01-18 11:04:13] +01/18/13 11:04:13,896 [76] DEBUG index - Current user is: admin +01/18/13 11:04:13,896 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:13,896 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:13,896 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:13,898 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:13,898 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:13,900 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:13,901 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:13,902 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:13,903 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,903 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:13,904 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:13,904 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:13,904 [76] DEBUG index - skipping headers +01/18/13 11:04:13,904 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:13,905 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,907 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:13,907 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:13,907 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,907 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,907 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,907 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,907 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,907 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:13,915 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,915 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,915 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,919 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:13,919 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:13,924 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:13,925 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:13,925 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,925 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,925 [76] DEBUG index - Entering get_products(2) method ... +01/18/13 11:04:13,925 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:13,925 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:04:13,929 [76] DEBUG product - Entering Products() method ... +01/18/13 11:04:13,929 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:04:13,929 [76] DEBUG index - in getColumnFields Products +01/18/13 11:04:13,929 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,929 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,929 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,929 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,929 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:13,930 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:04:13,936 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,936 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,937 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,937 [76] DEBUG product - Exiting Product method ... +01/18/13 11:04:13,937 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,937 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,938 [76] DEBUG index - Entering isPermitted(Products,4,) method ... +01/18/13 11:04:13,939 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,939 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:13,939 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:13,940 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:13,940 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:13,940 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:13,943 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:13,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,943 [76] DEBUG index - Entering function initSortByField (Products) +01/18/13 11:04:13,943 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,944 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,944 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:13,944 [76] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:13,948 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:13,948 [76] DEBUG product - Entering Products() method ... +01/18/13 11:04:13,948 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:04:13,948 [76] DEBUG index - in getColumnFields Products +01/18/13 11:04:13,949 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,949 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,949 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:13,949 [76] DEBUG product - Exiting Product method ... +01/18/13 11:04:13,949 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,950 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,950 [76] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/18/13 11:04:13,950 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,950 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,950 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:13,950 [76] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/18/13 11:04:13,954 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:13,954 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:13,958 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/18/13 11:04:13,964 [76] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,2,) method ... +01/18/13 11:04:13,964 [76] DEBUG index - Entering getURLstring(Products) method ... +01/18/13 11:04:13,965 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:13,965 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,965 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,965 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,965 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,966 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,966 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,967 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:13,968 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,968 [76] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/18/13 11:04:13,970 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:13,970 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,970 [76] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/18/13 11:04:13,972 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:13,972 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,972 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/18/13 11:04:13,974 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:13,974 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,974 [76] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/18/13 11:04:13,976 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:13,976 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:13,976 [76] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/18/13 11:04:13,978 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:13,979 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:13,979 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:13,980 [76] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:13,980 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:13,980 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:13,982 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,982 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,982 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:13,982 [76] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/18/13 11:04:13,987 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:13,988 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:13,988 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:13,988 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,988 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:13,988 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:13,988 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:13,988 [76] DEBUG index - Prepared sql query parameters : [6,14] +01/18/13 11:04:14,015 [76] INFO index - getNextRow +01/18/13 11:04:14,017 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:14,017 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:14,017 [76] DEBUG index - Exiting get_products method ... +01/18/13 11:04:14,022 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:14,022 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:14,022 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:14,024 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:14,024 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:14,024 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:14,024 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:14,024 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:14,024 [76] INFO index - current module is Accounts +01/18/13 11:04:14,077 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:14,077 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:14,077 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:14,077 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,078 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,078 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,078 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,078 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,078 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:14,089 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,089 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,090 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,090 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:14,090 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:14,091 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:14,091 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,091 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:14,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,092 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:14,092 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,093 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:14,093 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,093 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:14,094 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,094 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:14,094 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,094 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:14,095 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,095 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:14,095 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,095 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:14,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,096 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:14,096 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,096 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:14,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,097 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:14,097 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,097 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:14,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,098 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:14,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,098 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:14,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,099 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:14,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,099 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:14,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,100 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:14,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,100 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:14,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,101 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:14,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,101 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,102 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:14,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,102 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:14,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,103 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:14,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,103 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:14,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,103 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:14,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,104 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:14,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,104 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:14,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,105 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:14,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,105 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:14,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,106 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:14,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,106 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,107 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,107 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:14,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,108 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:14,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,108 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,109 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:14,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,109 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:14,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,110 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:14,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,111 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:14,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,111 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:14,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,112 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:14,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,112 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,113 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:14,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,113 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:14,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,114 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:14,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,114 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:14,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,115 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:14,119 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:14,119 [76] DEBUG index - Prepared sql query parameters : [229,1,Accounts,AccountsAjax,2,2013-01-18 11:04:14] +01/18/13 11:04:14,125 [76] DEBUG index - Current user is: admin +01/18/13 11:04:14,125 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:14,125 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:14,125 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:14,127 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:14,127 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:14,130 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:14,130 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:14,132 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:14,132 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,133 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,133 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:14,133 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:14,133 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:14,133 [76] DEBUG index - skipping headers +01/18/13 11:04:14,133 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:14,134 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,136 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,136 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,136 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,136 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,136 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,136 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,136 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,136 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:14,145 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,145 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,145 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,149 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:14,149 [76] DEBUG index - Prepared sql query parameters : [87] +01/18/13 11:04:14,152 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,152 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,152 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,152 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,152 [76] DEBUG index - Entering get_campaigns(2) method ... +01/18/13 11:04:14,152 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:14,152 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:04:14,155 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:04:14,155 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:04:14,155 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,155 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,155 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,155 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,155 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,156 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:04:14,165 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,165 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,165 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,165 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,165 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,167 [76] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/18/13 11:04:14,167 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,167 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:14,168 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:14,168 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:14,168 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:14,168 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:14,168 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:14,171 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:14,174 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,174 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,175 [76] DEBUG index - Entering function initSortByField (Campaigns) +01/18/13 11:04:14,175 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,175 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,175 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:14,175 [76] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:14,180 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:14,181 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:04:14,181 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:04:14,181 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,181 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,181 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,182 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,182 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,182 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 +01/18/13 11:04:14,188 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/18/13 11:04:14,193 [76] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,2,) method ... +01/18/13 11:04:14,193 [76] DEBUG index - Entering getURLstring(Campaigns) method ... +01/18/13 11:04:14,193 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:14,194 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,194 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,194 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,194 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,195 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,196 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,196 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,197 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,198 [76] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/18/13 11:04:14,199 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,200 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,200 [76] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/18/13 11:04:14,201 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,202 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,202 [76] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/18/13 11:04:14,203 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,204 [76] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/18/13 11:04:14,205 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,206 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,206 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/18/13 11:04:14,207 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:14,208 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,208 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:14,209 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:14,210 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,210 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:14,211 [76] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:14,211 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,211 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,213 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,213 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,213 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:14,213 [76] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/18/13 11:04:14,218 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:14,218 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/18/13 11:04:14,218 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:14,218 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,218 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,219 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,219 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:14,219 [76] DEBUG index - Prepared sql query parameters : [6,26] +01/18/13 11:04:14,222 [76] INFO index - getNextRow +01/18/13 11:04:14,223 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:14,223 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:14,223 [76] DEBUG index - Exiting get_campaigns method ... +01/18/13 11:04:14,228 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:14,228 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:14,228 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:14,229 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:14,229 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:14,229 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:14,229 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:14,229 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:14,229 [76] INFO index - current module is Accounts +01/18/13 11:04:14,269 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:14,270 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:14,270 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:14,270 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,271 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,271 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,271 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,271 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,271 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:14,281 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,281 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,282 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,282 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:14,282 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:14,283 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:14,284 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,284 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:14,284 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,284 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:14,285 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,285 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:14,285 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,285 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:14,286 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,286 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:14,286 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,287 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:14,287 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,287 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:14,287 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,288 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:14,288 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,288 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:14,289 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,289 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:14,289 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,289 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:14,290 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,290 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:14,290 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,290 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:14,291 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,291 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:14,291 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,291 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:14,292 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,292 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:14,292 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,292 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:14,293 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,293 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:14,293 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,293 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:14,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,294 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,294 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:14,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,295 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:14,295 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,296 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:14,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,296 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:14,296 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,296 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:14,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,297 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:14,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,297 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:14,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,298 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:14,298 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,298 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:14,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,299 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:14,299 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,299 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,300 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,300 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,300 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:14,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,301 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:14,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,302 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,302 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:14,302 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,303 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:14,303 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,303 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:14,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,304 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:14,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,304 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:14,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,305 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:14,305 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,305 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,306 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:14,306 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,306 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:14,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,307 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:14,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,307 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:14,308 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,308 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:14,312 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:14,312 [76] DEBUG index - Prepared sql query parameters : [230,1,Accounts,AccountsAjax,2,2013-01-18 11:04:14] +01/18/13 11:04:14,317 [76] DEBUG index - Current user is: admin +01/18/13 11:04:14,317 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:14,317 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:14,317 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:14,319 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:14,320 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:14,322 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:14,322 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:14,324 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:14,324 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,325 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:14,325 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:14,325 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:14,325 [76] DEBUG index - skipping headers +01/18/13 11:04:14,325 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:14,326 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,327 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,327 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,328 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,328 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,328 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,328 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,328 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,328 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:14,344 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,344 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,345 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,349 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:14,349 [76] DEBUG index - Prepared sql query parameters : [92] +01/18/13 11:04:14,351 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,352 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,352 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,352 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,352 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,353 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:14,354 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:04:14,357 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:04:14,357 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:04:14,357 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,357 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,358 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,358 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:04:14,362 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,362 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,362 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,362 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:14,363 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:14,363 [76] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/18/13 11:04:14,370 [76] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/18/13 11:04:14,371 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,371 [76] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/18/13 11:04:14,371 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,371 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,371 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:14,371 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:14,372 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,373 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,373 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:14,373 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:14,373 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,373 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,373 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:14,374 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:14,374 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:14,376 [76] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:14,379 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,379 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,380 [76] DEBUG index - Entering function initSortByField (ServiceContracts) +01/18/13 11:04:14,380 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,380 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,380 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:14,380 [76] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:14,383 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:14,383 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:04:14,383 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:04:14,383 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,384 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,384 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,384 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:14,385 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,385 [76] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/18/13 11:04:14,385 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,385 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:14,385 [76] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/18/13 11:04:14,393 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:14,393 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:14,400 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/18/13 11:04:14,404 [76] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,2,) method ... +01/18/13 11:04:14,405 [76] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/18/13 11:04:14,405 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:14,405 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,405 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,405 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,405 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,407 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,407 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,407 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,407 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,407 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:14,408 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,408 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,408 [76] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/18/13 11:04:14,410 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,410 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:14,410 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,410 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,411 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:14,412 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,412 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,413 [76] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/18/13 11:04:14,413 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,413 [76] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/18/13 11:04:14,413 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,413 [76] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/18/13 11:04:14,413 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,413 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,413 [76] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/18/13 11:04:14,415 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,415 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,415 [76] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/18/13 11:04:14,416 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:14,416 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,416 [76] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/18/13 11:04:14,417 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:14,418 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,418 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:14,419 [76] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:14,419 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,420 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,421 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,421 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:14,422 [76] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/18/13 11:04:14,424 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:14,424 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:14,425 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:14,425 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,425 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,425 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,425 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:14,425 [76] DEBUG index - Prepared sql query parameters : [6,37] +01/18/13 11:04:14,427 [76] INFO index - getNextRow +01/18/13 11:04:14,428 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:14,429 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:14,434 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:14,434 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:14,435 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:14,435 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:14,435 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:14,435 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:14,436 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:14,436 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:14,436 [76] INFO index - current module is Accounts +01/18/13 11:04:14,488 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:14,488 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:14,488 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:14,488 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,489 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,489 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,489 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,490 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:14,498 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,499 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,499 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,499 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:14,500 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:14,500 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:14,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,501 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:14,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,501 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:14,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,502 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:14,502 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,503 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:14,503 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,503 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:14,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,504 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:14,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,504 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:14,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,505 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:14,505 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,505 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:14,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,506 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:14,506 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,506 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:14,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,507 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:14,507 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,507 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:14,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,508 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:14,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,508 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:14,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,509 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:14,509 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,509 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:14,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,510 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:14,510 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,511 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:14,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,511 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,512 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:14,512 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,512 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:14,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,513 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:14,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,513 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:14,513 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,513 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:14,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,514 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:14,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,514 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:14,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,515 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:14,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,515 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:14,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,516 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:14,516 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,516 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,517 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,517 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:14,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,518 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:14,518 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,518 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,519 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:14,519 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,520 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:14,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,520 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:14,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,521 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:14,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,521 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:14,521 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,522 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:14,522 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,522 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,523 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:14,523 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,523 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:14,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,524 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:14,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,524 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:14,525 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,525 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:14,529 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:14,529 [76] DEBUG index - Prepared sql query parameters : [231,1,Accounts,AccountsAjax,2,2013-01-18 11:04:14] +01/18/13 11:04:14,535 [76] DEBUG index - Current user is: admin +01/18/13 11:04:14,535 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:14,535 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:14,535 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:14,537 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:14,538 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:14,540 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:14,540 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:14,542 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:14,542 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,543 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,543 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:14,543 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:14,543 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:14,543 [76] DEBUG index - skipping headers +01/18/13 11:04:14,543 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:14,544 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,546 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,546 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,546 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,546 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,546 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,546 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,546 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,546 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:14,554 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,554 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,554 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,558 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:14,558 [76] DEBUG index - Prepared sql query parameters : [108] +01/18/13 11:04:14,561 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,561 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,561 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,561 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,561 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,561 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,563 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:14,563 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:04:14,568 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:04:14,568 [76] DEBUG index - in getColumnFields Services +01/18/13 11:04:14,568 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,568 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,568 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,568 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,568 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,568 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:04:14,574 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,574 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,575 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,575 [76] DEBUG index - Entering isPermitted(Services,4,) method ... +01/18/13 11:04:14,575 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,576 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:14,576 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:14,576 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:14,576 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,576 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,577 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:14,577 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:14,577 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:14,579 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2), ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:14,582 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,583 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,583 [76] DEBUG index - Entering function initSortByField (Services) +01/18/13 11:04:14,583 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,583 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,583 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:14,583 [76] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:14,586 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:14,586 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:04:14,587 [76] DEBUG index - in getColumnFields Services +01/18/13 11:04:14,587 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,587 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,587 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,588 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,588 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,588 [76] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/18/13 11:04:14,588 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,588 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,588 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:14,588 [76] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/18/13 11:04:14,592 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:14,592 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) +01/18/13 11:04:14,597 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/18/13 11:04:14,624 [76] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,2,) method ... +01/18/13 11:04:14,624 [76] DEBUG index - Entering getURLstring(Services) method ... +01/18/13 11:04:14,624 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:14,624 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,624 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,624 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,624 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,626 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,626 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,626 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,627 [76] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/18/13 11:04:14,627 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,627 [76] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/18/13 11:04:14,629 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,629 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/18/13 11:04:14,631 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,631 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,631 [76] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/18/13 11:04:14,633 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:14,633 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,633 [76] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/18/13 11:04:14,635 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:14,636 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,636 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:14,637 [76] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:14,637 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,637 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,638 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,639 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:14,639 [76] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/18/13 11:04:14,642 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:14,642 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:14,642 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:14,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,643 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,643 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,643 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:14,643 [76] DEBUG index - Prepared sql query parameters : [6,38] +01/18/13 11:04:14,646 [76] INFO index - getNextRow +01/18/13 11:04:14,647 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:14,647 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:14,652 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:14,652 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:14,653 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:14,653 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:14,653 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:14,653 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:14,654 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:14,654 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:14,654 [76] INFO index - current module is Accounts +01/18/13 11:04:14,707 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:14,708 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:14,708 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:14,708 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,709 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,709 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,709 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,709 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,709 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:14,718 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,718 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,719 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,719 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:14,719 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:14,720 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:14,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,721 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:14,721 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,721 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:14,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,722 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:14,722 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,722 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:14,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,723 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:14,723 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,724 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:14,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,724 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:14,724 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,725 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:14,725 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,725 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:14,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,726 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:14,726 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,726 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:14,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,727 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:14,727 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,727 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:14,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,728 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:14,728 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,728 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:14,729 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,729 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:14,729 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,729 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:14,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,730 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:14,730 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,730 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:14,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,731 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,731 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:14,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,732 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:14,732 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,733 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:14,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,733 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:14,733 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,733 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:14,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,734 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:14,734 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,734 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:14,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,735 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:14,735 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,735 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:14,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,736 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:14,736 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,736 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,737 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,737 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,737 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:14,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,738 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:14,738 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,738 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,739 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:14,739 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,739 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:14,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,740 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:14,740 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,741 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:14,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,741 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:14,741 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,742 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:14,742 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,742 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,743 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:14,743 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,743 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:14,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,744 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:14,744 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,744 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:14,745 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,745 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:14,750 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:14,750 [76] DEBUG index - Prepared sql query parameters : [232,1,Accounts,AccountsAjax,2,2013-01-18 11:04:14] +01/18/13 11:04:14,753 [76] DEBUG index - Current user is: admin +01/18/13 11:04:14,753 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:14,754 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:14,754 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:14,756 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:14,756 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:14,758 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:14,758 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:14,760 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:14,760 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,761 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,761 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:14,761 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:14,761 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:14,762 [76] DEBUG index - skipping headers +01/18/13 11:04:14,762 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:14,762 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,764 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,764 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,764 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,764 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,765 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,765 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,765 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,765 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:14,772 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,772 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,773 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,777 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:14,777 [76] DEBUG index - Prepared sql query parameters : [114] +01/18/13 11:04:14,780 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,780 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,780 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,780 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,780 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,782 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:14,782 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:04:14,785 [76] DEBUG index - Entering getColumnFields(Assets) method ... +01/18/13 11:04:14,786 [76] DEBUG index - in getColumnFields Assets +01/18/13 11:04:14,786 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:14,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,786 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:14,786 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,786 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,786 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:04:14,790 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:14,791 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,791 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,791 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:14,791 [76] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/18/13 11:04:14,809 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:14,809 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:14,809 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:14,810 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:14,810 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Projects', + 'relation_id' => '123', + 'actions' => 'ADD,SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:14,810 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:14,810 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:14,811 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:14,811 [76] INFO index - current module is Accounts +01/18/13 11:04:14,851 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:14,852 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:14,852 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:14,852 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,852 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,852 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,853 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,853 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,853 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:14,860 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:14,861 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,861 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,861 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:14,861 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:14,862 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:14,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,863 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:14,863 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,863 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:14,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,864 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:14,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,864 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:14,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,865 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:14,865 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,865 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:14,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,866 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:14,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,866 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:14,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,867 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:14,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,867 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:14,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,868 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:14,868 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,868 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:14,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,869 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:14,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,869 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:14,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,870 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:14,870 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,870 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:14,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,871 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:14,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,871 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:14,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,872 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:14,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,872 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:14,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,873 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:14,873 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,873 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:14,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,874 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:14,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,874 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:14,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,875 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:14,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,875 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:14,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,876 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:14,876 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,876 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:14,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,877 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:14,877 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,877 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:14,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,878 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:14,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,878 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:14,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,879 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:14,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,879 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:14,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,880 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:14,880 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,880 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:14,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,881 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:14,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,881 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:14,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,882 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:14,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,882 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:14,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,883 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:14,883 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,883 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,884 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:14,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,884 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:14,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,885 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:14,885 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,885 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:14,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,886 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:14,889 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:14,890 [76] DEBUG index - Prepared sql query parameters : [233,1,Accounts,AccountsAjax,2,2013-01-18 11:04:14] +01/18/13 11:04:14,893 [76] DEBUG index - Current user is: admin +01/18/13 11:04:14,893 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:14,893 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:14,894 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:14,896 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:14,896 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:14,898 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:14,898 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:14,900 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:14,900 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,901 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,901 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:14,901 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:14,901 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:14,901 [76] DEBUG index - skipping headers +01/18/13 11:04:14,901 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:14,902 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,904 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,904 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,904 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,904 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,904 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,904 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,904 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,904 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:14,912 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,912 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,912 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,916 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:14,917 [76] DEBUG index - Prepared sql query parameters : [123] +01/18/13 11:04:14,919 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,919 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,919 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,919 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,919 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,921 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:14,921 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:04:14,925 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,925 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,925 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,925 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,925 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,926 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:14,926 [76] DEBUG index - Prepared sql query parameters : [Accounts,Project] +01/18/13 11:04:14,932 [76] DEBUG index - Entering isPermitted(Project,1,) method ... +01/18/13 11:04:14,933 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,933 [76] DEBUG index - Entering getFieldVisibilityPermission(Project,1,linktoaccountscontacts) method ... +01/18/13 11:04:14,933 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,933 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,933 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:14,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:14,933 [76] DEBUG index - Entering getColumnFields(Project) method ... +01/18/13 11:04:14,934 [76] DEBUG index - in getColumnFields Project +01/18/13 11:04:14,934 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,934 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,934 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,934 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,934 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:14,934 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:04:14,940 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,941 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,941 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,941 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:14,941 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:14,941 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,942 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:14,942 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:14,942 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,943 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:14,943 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:14,943 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:14,950 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Project,Project,SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:14,953 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:14,953 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,953 [76] DEBUG index - Entering function initSortByField (Project) +01/18/13 11:04:14,953 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,953 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,953 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:14,954 [76] DEBUG index - Prepared sql query parameters : [48,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:14,957 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:14,957 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:14,957 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:14,957 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,957 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,957 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:14,958 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,958 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,958 [76] DEBUG index - Entering getTableNameForField(Project,projectname) method ... +01/18/13 11:04:14,958 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,958 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,958 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:14,959 [76] DEBUG index - Prepared sql query parameters : [48,%projectname%] +01/18/13 11:04:14,961 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:14,961 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:14,964 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_project.projectname ASC LIMIT 0, 20 +01/18/13 11:04:14,968 [76] DEBUG index - Entering getListViewHeader(Project,,ASC,projectname,2,) method ... +01/18/13 11:04:14,969 [76] DEBUG index - Entering getURLstring(Project) method ... +01/18/13 11:04:14,969 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:14,969 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,969 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,969 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,969 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,971 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,971 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,971 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,971 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,971 [76] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/18/13 11:04:14,972 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,972 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,972 [76] DEBUG index - function getTranslatedString(项目名称) - translated to (项目名称) +01/18/13 11:04:14,974 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,974 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,974 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:04:14,974 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,974 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,974 [76] DEBUG index - function getTranslatedString(开始日期) - translated to (开始日期) +01/18/13 11:04:14,976 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,976 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,976 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:14,976 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,977 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,977 [76] DEBUG index - function getTranslatedString(状态) - translated to (状态) +01/18/13 11:04:14,978 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,978 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,979 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:14,979 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,979 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,979 [76] DEBUG index - function getTranslatedString(类型) - translated to (类型) +01/18/13 11:04:14,981 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,981 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,981 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:14,981 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:14,981 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:14,981 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:14,983 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:14,983 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:14,984 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:14,985 [76] DEBUG index - Entering getListViewEntries(Project,Project,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:14,985 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:14,985 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:14,986 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,986 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,987 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:14,987 [76] DEBUG index - Prepared sql query parameters : [48,projectname,startdate,projectstatus,projecttype,assigned_user_id] +01/18/13 11:04:14,991 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:14,991 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=projectname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:14,992 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:14,992 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,992 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:14,992 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:14,992 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:14,992 [76] DEBUG index - Prepared sql query parameters : [6,48] +01/18/13 11:04:15,025 [76] INFO index - getNextRow +01/18/13 11:04:15,026 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:15,026 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:16,260 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:16,408 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:16,408 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:16,408 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:16,409 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:16,409 [76] DEBUG index - array ( + 'module' => 'Tooltip', + 'action' => 'TooltipAjax', + 'file' => 'ComputeTooltip', + 'fieldname' => 'lastname', + 'id' => '130', + 'modname' => 'Contacts', + 'ajax' => 'true', + 'submode' => 'getTooltip', +) +01/18/13 11:04:16,409 [76] INFO index - About to take action TooltipAjax +01/18/13 11:04:16,409 [76] DEBUG index - in TooltipAjax +01/18/13 11:04:16,410 [76] INFO index - current page is modules/Tooltip/TooltipAjax.php +01/18/13 11:04:16,410 [76] INFO index - current module is Tooltip +01/18/13 11:04:16,459 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:16,459 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:16,459 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:16,460 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:16,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:16,460 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:16,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:16,461 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:16,461 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:16,469 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:16,469 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:16,469 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:16,469 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:16,470 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:16,470 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:16,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,471 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:16,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,472 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:16,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,472 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:16,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,473 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:16,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,473 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:16,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,474 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:16,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,475 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:16,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,475 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:16,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,476 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:16,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,476 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:16,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,477 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:16,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,477 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:16,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,478 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:16,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,478 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:16,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,479 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:16,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,479 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:16,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,480 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:16,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,480 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:16,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,481 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:16,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,481 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:16,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,482 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:16,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,482 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:16,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,483 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:16,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,483 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:16,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,484 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:16,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,484 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:16,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,485 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:16,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,485 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:16,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,486 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:16,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,486 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:16,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,487 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:16,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,487 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:16,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,488 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:16,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,488 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:16,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,489 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:16,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,489 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:16,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,490 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:16,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,490 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:16,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,491 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:16,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,491 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:16,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,492 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:16,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,492 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:16,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,493 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:16,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,494 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:16,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,494 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:16,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,495 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:16,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:16,495 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:16,500 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:16,500 [76] DEBUG index - Prepared sql query parameters : [234,1,Tooltip,TooltipAjax,,2013-01-18 11:04:16] +01/18/13 11:04:16,503 [76] DEBUG index - Current user is: admin +01/18/13 11:04:16,503 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:16,504 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:16,504 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:16,506 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:16,506 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:16,508 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:16,508 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:16,510 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:16,510 [76] DEBUG index - Entering return_module_language(zh_cn,Tooltip) method ... +01/18/13 11:04:16,511 [76] WARN index - Unable to find the module language file for language: zh_cn and module: Tooltip +01/18/13 11:04:16,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:16,512 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:16,512 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:16,512 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:16,512 [76] DEBUG index - skipping headers +01/18/13 11:04:16,513 [76] DEBUG index - Entering isPermitted(Tooltip,ComputeTooltip,) method ... +01/18/13 11:04:16,514 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:16,521 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:16,521 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:16,521 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_field where tabid = ? and fieldname = ? and vtiger_field.presence in (0,2) +01/18/13 11:04:16,521 [76] DEBUG index - Prepared sql query parameters : [4,lastname] +01/18/13 11:04:16,524 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_quickview where fieldid = ? +01/18/13 11:04:16,524 [76] DEBUG index - Prepared sql query parameters : [70] +01/18/13 11:04:21,402 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:21,540 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:21,540 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:21,540 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:21,541 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:21,541 [76] DEBUG index - array ( + 'module' => 'Contacts', + 'action' => 'EditView', + 'record' => '130', + 'return_module' => 'Accounts', + 'return_action' => 'CallRelatedList', + 'return_id' => '2', + 'parenttab' => 'Marketing', + 'return_viewname' => '', +) +01/18/13 11:04:21,541 [76] INFO index - About to take action EditView +01/18/13 11:04:21,541 [76] DEBUG index - in EditView +01/18/13 11:04:21,541 [76] INFO index - current page is modules/Contacts/EditView.php +01/18/13 11:04:21,542 [76] INFO index - current module is Contacts +01/18/13 11:04:21,592 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:21,592 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:21,592 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:21,592 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:21,593 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,593 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:21,593 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,593 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:21,593 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:21,604 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:21,604 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,605 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:21,605 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:21,605 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:21,606 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:21,606 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,607 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:21,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,607 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:21,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,608 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:21,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,608 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:21,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,609 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:21,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,609 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:21,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,610 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:21,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,610 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:21,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,611 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:21,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,612 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:21,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,612 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:21,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,613 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:21,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,613 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:21,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,614 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:21,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,614 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:21,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,615 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:21,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,615 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:21,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,616 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:21,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,616 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:21,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,617 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:21,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,617 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:21,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,618 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:21,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,618 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:21,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,618 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:21,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,619 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:21,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,619 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:21,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,620 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:21,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,621 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:21,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,621 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:21,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,622 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:21,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,622 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:21,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,623 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:21,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,623 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:21,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,624 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:21,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,624 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:21,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,625 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:21,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,625 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:21,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,626 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:21,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,626 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:21,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,627 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:21,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,627 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:21,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,628 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:21,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,628 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:21,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,629 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:21,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,629 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:21,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,630 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:21,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:21,630 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:21,635 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:21,635 [76] DEBUG index - Prepared sql query parameters : [235,1,Contacts,EditView,130,2013-01-18 11:04:21] +01/18/13 11:04:21,638 [76] DEBUG index - Current user is: admin +01/18/13 11:04:21,638 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:21,638 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:21,639 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:21,641 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:21,641 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:21,643 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:21,643 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:21,645 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:21,645 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,646 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,646 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:21,646 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:21,646 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:21,647 [76] DEBUG index - including headers +01/18/13 11:04:21,647 [76] DEBUG index - Entering getParentTabFromModule(Contacts) method ... +01/18/13 11:04:21,647 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:21,651 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:21,651 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:21,655 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:04:21,656 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:04:21,657 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,657 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:04:21,657 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,658 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:04:21,658 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,658 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:04:21,659 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,659 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:04:21,659 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,659 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:04:21,660 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,660 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:04:21,660 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,660 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:04:21,661 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:21,661 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:04:21,661 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:04:21,661 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:04:21,670 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:21,671 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,671 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:21,672 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:21,672 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,672 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:21,673 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,673 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:21,673 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:04:21,674 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,674 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:21,675 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,675 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:21,675 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:21,676 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,676 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:21,677 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,678 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:21,678 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:21,678 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,679 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:21,679 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,679 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:21,679 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:04:21,680 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,680 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,680 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:21,680 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:21,681 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,681 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:21,682 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,682 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:21,682 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:21,682 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,683 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:04:21,683 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,683 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:21,683 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:04:21,684 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,684 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:21,685 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,685 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:21,685 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:21,685 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,685 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:21,686 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,686 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:21,686 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:21,687 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,687 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:21,687 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,688 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:21,688 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:21,688 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,688 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:21,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,689 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:21,689 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:04:21,690 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,690 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:21,691 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,691 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:21,691 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:21,691 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,692 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:21,692 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,692 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:21,692 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:21,693 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,693 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:21,694 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,694 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:21,694 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:04:21,694 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,695 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:21,695 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,695 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:21,695 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:04:21,696 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,696 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:21,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,697 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:21,698 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:21,698 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,698 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:21,699 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,699 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:21,699 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:21,699 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,700 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:21,700 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,700 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:21,700 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:04:21,701 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,701 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:04:21,701 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:21) method ... +01/18/13 11:04:21,701 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:21,701 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:21) method ... +01/18/13 11:04:21,702 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:21,702 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:21,702 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:21,703 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:04:21,703 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:04:21,703 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:04:21,707 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,707 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,708 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,708 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,709 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,709 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,710 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,710 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,710 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,710 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,710 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,710 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,710 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,711 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,711 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,711 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,711 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,711 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,711 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,712 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,712 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,712 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,712 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,712 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,712 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,712 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,712 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,713 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,713 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,713 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,713 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,713 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,713 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,714 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,714 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,714 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,714 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,714 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,714 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,714 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,714 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,715 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,715 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,715 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,715 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,715 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,715 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,716 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,716 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,716 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,716 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,716 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,716 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,716 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,717 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,717 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,717 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,717 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:04:21,721 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:21,722 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,722 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:21,722 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:21,724 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:21,724 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:21,725 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,725 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,726 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:21,726 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,726 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:21,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,727 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:21,727 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,727 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:21,727 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,727 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:21,728 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,728 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:21,728 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,728 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:21,729 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,729 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:21,729 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,729 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:21,730 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,730 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:21,730 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,730 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:04:21,731 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,731 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:21,731 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,731 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:21,732 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,732 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:21,732 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,732 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:21,732 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,732 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:21,733 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,733 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:21,733 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,733 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:21,734 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,734 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:04:21,734 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,735 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:04:21,735 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,735 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:04:21,736 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,736 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:21,736 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,736 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:21,736 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,736 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:21,737 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,737 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:04:21,737 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,737 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:21,737 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,738 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:21,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,738 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:21,738 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,738 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:21,739 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,739 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:21,739 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:21,739 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:21,743 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:21,744 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,744 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:04:21,744 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,745 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:04:21,745 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,746 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:04:21,746 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,746 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:04:21,747 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,747 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:21,747 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:04:21,750 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:04:21,750 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,750 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:04:21,750 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:04:21,753 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:04:21,762 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,762 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,762 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:21,762 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:21,762 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,763 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:21,763 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:21,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,763 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:21,763 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:21,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,763 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:21,763 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,764 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:21,764 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:21,764 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,764 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:21,764 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:21,764 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,764 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:21,764 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:21,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,765 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:21,765 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:21,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,766 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:21,766 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:21,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,766 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:21,766 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:04:21,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,766 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:04:21,769 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:21,769 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,769 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:21,769 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:04:21,770 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,770 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:04:21,770 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:04:21,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,771 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:04:21,771 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:04:21,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,771 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:04:21,772 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:21,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,772 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:21,772 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:21,772 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,772 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:04:21,772 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:04:21,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,773 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:04:21,773 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:04:21,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,774 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:04:21,774 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:04:21,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,774 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:04:21,774 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:21,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,775 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:21,775 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:21,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,775 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:21,775 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:21,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,775 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:21,775 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:21,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,776 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:21,776 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:21,776 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,776 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:21,776 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:21,776 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,777 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:21,777 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:21,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,777 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:21,777 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:21,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,777 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:21,777 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:21,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,778 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:21,778 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:21,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,778 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:21,778 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:21,778 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,778 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:21,779 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:21,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,779 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:21,779 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:21,780 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,780 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:21,780 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:21,781 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,781 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:21,781 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,781 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,781 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:04:21,782 [76] DEBUG index - Entering isPermitted(Contacts,EditView,130) method ... +01/18/13 11:04:21,782 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:21,801 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:21,802 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:21,802 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,802 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,802 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:21,802 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:21,817 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,818 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,818 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:21,818 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:04:21,818 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,821 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_contactdetails where contactid=? +01/18/13 11:04:21,821 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,824 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_contactaddress where contactaddressid=? +01/18/13 11:04:21,824 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,827 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_contactsubdetails where contactsubscriptionid=? +01/18/13 11:04:21,827 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,830 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_contactscf where contactid=? +01/18/13 11:04:21,830 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,832 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_customerdetails where customerid=? +01/18/13 11:04:21,832 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:21,835 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,835 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,837 [76] INFO VT - PearDatabase ->There is no entry for this entity 130 (Contacts) in the table vtiger_campaignrelstatus +01/18/13 11:04:21,837 [76] INFO index - Entity info successfully retrieved for EditView. +01/18/13 11:04:21,837 [76] DEBUG index - Entering getView(edit) method ... +01/18/13 11:04:21,837 [76] DEBUG index - Exiting getView method ... +01/18/13 11:04:21,838 [76] DEBUG index - Entering getBlocks(Contacts,edit_view,,Array,) method ... +01/18/13 11:04:21,838 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,838 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,838 [76] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and edit_view=0 and visible = 0 order by sequence +01/18/13 11:04:21,838 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:21,841 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,841 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,841 [76] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/18/13 11:04:21,842 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,842 [76] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (自定义信息) +01/18/13 11:04:21,842 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,842 [76] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/18/13 11:04:21,842 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,843 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:21,843 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,843 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,843 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/18/13 11:04:21,843 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,843 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,843 [76] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/18/13 11:04:21,844 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.* FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?,?,?) AND vtiger_field.displaytype in (1,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/18/13 11:04:21,844 [76] DEBUG index - Prepared sql query parameters : [4,4,5,6,7,8,73] +01/18/13 11:04:21,856 [76] DEBUG index - Entering getBlockInformation(Contacts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo +4,67,firstname,vtiger_contactdetails,1,55,firstname,First Name,1,0,,100,2,4,1,V~O,2,1,BAS,1, +4,68,contact_no,vtiger_contactdetails,1,4,contact_no,Contact Id,1,0,,100,3,4,1,V~O,3,,BAS,0, +4,70,lastname,vtiger_contactdetails,1,255,lastname,Last Name,1,0,,100,4,4,1,V~M,0,2,BAS,1, +4,69,phone,vtiger_contactdetails,1,11,phone,Office Phone,1,2,,100,5,4,1,V~O,2,4,BAS,1, +4,72,accountid,vtiger_contactdetails,1,51,account_id,Account Name,1,0,,100,6,4,1,I~O,2,3,BAS,1, +4,71,mobile,vtiger_contactdetails,1,11,mobile,Mobile,1,2,,100,7,4,1,V~O,1,,BAS,1, +4,74,leadsource,vtiger_contactsubdetails,1,15,leadsource,Lead Source,1,2,,100,8,4,1,V~O,1,,BAS,1, +4,73,homephone,vtiger_contactsubdetails,1,11,homephone,Home Phone,1,2,,100,9,4,1,V~O,1,,ADV,1, +4,76,title,vtiger_contactdetails,1,1,title,Title,1,2,,100,10,4,1,V~O,1,,BAS,1, +4,75,otherphone,vtiger_contactsubdetails,1,11,otherphone,Other Phone,1,2,,100,11,4,1,V~O,1,,ADV,1, +4,78,department,vtiger_contactdetails,1,1,department,Department,1,2,,100,12,4,1,V~O,1,,ADV,1, +4,77,fax,vtiger_contactdetails,1,11,fax,Fax,1,2,,100,13,4,1,V~O,1,,BAS,1, +4,80,email,vtiger_contactdetails,1,13,email,Email,1,2,,100,15,4,1,E~O,2,5,BAS,1, +4,79,birthday,vtiger_contactsubdetails,1,5,birthday,Birthdate,1,2,,100,16,4,1,D~O,1,,ADV,1, +4,82,assistant,vtiger_contactsubdetails,1,1,assistant,Assistant,1,2,,100,17,4,1,V~O,1,,ADV,1, +4,81,reportsto,vtiger_contactdetails,1,57,contact_id,Reports To,1,2,,100,18,4,1,V~O,1,,ADV,0, +4,84,assistantphone,vtiger_contactsubdetails,1,11,assistantphone,Assistant Phone,1,2,,100,19,4,1,V~O,1,,ADV,1, +4,83,secondaryemail,vtiger_contactdetails,1,13,secondaryemail,Secondary Email,1,2,,100,20,4,1,E~O,1,,ADV,1, +4,86,emailoptout,vtiger_contactdetails,1,56,emailoptout,Email Opt Out,1,2,,100,21,4,1,C~O,1,,ADV,1, +4,85,donotcall,vtiger_contactdetails,1,56,donotcall,Do Not Call,1,2,,100,22,4,1,C~O,1,,ADV,1, +4,88,reference,vtiger_contactdetails,1,56,reference,Reference,1,2,,10,23,4,1,C~O,1,,ADV,1, +4,87,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,24,4,1,V~M,0,6,BAS,1, +4,89,notify_owner,vtiger_contactdetails,1,56,notify_owner,Notify Owner,1,2,,10,26,4,1,C~O,1,,ADV,1, +4,93,portal,vtiger_customerdetails,1,56,portal,Portal User,1,2,,100,1,6,1,C~O,1,,ADV,0, +4,94,support_start_date,vtiger_customerdetails,1,5,support_start_date,Support Start Date,1,2,,100,2,6,1,D~O,1,,ADV,1, +4,95,support_end_date,vtiger_customerdetails,1,5,support_end_date,Support End Date,1,2,,100,3,6,1,D~O~OTH~GE~support_start_date~Support Start Date,1,,ADV,1, +4,96,mailingstreet,vtiger_contactaddress,1,21,mailingstreet,Mailing Street,1,2,,100,1,7,1,V~O,1,,BAS,1, +4,97,otherstreet,vtiger_contactaddress,1,21,otherstreet,Other Street,1,2,,100,2,7,1,V~O,1,,BAS,1, +4,106,mailingpobox,vtiger_contactaddress,1,1,mailingpobox,Mailing Po Box,1,2,,100,3,7,1,V~O,1,,BAS,1, +4,107,otherpobox,vtiger_contactaddress,1,1,otherpobox,Other Po Box,1,2,,100,4,7,1,V~O,1,,BAS,1, +4,98,mailingcity,vtiger_contactaddress,1,1,mailingcity,Mailing City,1,2,,100,5,7,1,V~O,1,,BAS,1, +4,99,othercity,vtiger_contactaddress,1,1,othercity,Other City,1,2,,100,6,7,1,V~O,1,,BAS,1, +4,100,mailingstate,vtiger_contactaddress,1,1,mailingstate,Mailing State,1,2,,100,7,7,1,V~O,1,,BAS,1, +4,101,otherstate,vtiger_contactaddress,1,1,otherstate,Other State,1,2,,100,8,7,1,V~O,1,,BAS,1, +4,102,mailingzip,vtiger_contactaddress,1,1,mailingzip,Mailing Zip,1,2,,100,9,7,1,V~O,1,,BAS,1, +4,103,otherzip,vtiger_contactaddress,1,1,otherzip,Other Zip,1,2,,100,10,7,1,V~O,1,,BAS,1, +4,104,mailingcountry,vtiger_contactaddress,1,1,mailingcountry,Mailing Country,1,2,,100,11,7,1,V~O,1,,BAS,1, +4,105,othercountry,vtiger_contactaddress,1,1,othercountry,Other Country,1,2,,100,12,7,1,V~O,1,,BAS,1, +4,109,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,8,1,V~O,1,,BAS,1, +4,108,imagename,vtiger_contactdetails,1,69,imagename,Contact Image,1,2,,100,1,73,1,V~O,3,,ADV,0, +,Array,4,Array) method ... +01/18/13 11:04:21,856 [76] DEBUG index - Entering getOutputHtml(55,firstname,First Name,100,Array,1,Contacts) method ... +01/18/13 11:04:21,857 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,salutationtype) method ... +01/18/13 11:04:21,857 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,857 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,858 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:21,858 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:04:21,858 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:04:21,858 [76] DEBUG index - Entering getRoleInformation(H2) method ... +01/18/13 11:04:21,858 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/18/13 11:04:21,858 [76] DEBUG index - Prepared sql query parameters : [H2] +01/18/13 11:04:21,862 [76] DEBUG index - Exiting getRoleInformation method ... +01/18/13 11:04:21,862 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/18/13 11:04:21,862 [76] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/18/13 11:04:21,865 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:04:21,865 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:04:21,865 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,865 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:04:21,872 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 235 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #476 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #476 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:04:21,873 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:21,873 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:21,875 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,875 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:04:21,875 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,876 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:04:21,879 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,879 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:04:21,879 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,880 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:04:21,883 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,883 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:04:21,883 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:04:21,884 [76] DEBUG index - Prepared sql query parameters : [salutationtype] +01/18/13 11:04:21,886 [76] DEBUG index - Prepared sql query being executed : SELECT distinct salutationtype FROM vtiger_salutationtype inner join vtiger_role2picklist on vtiger_salutationtype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:04:21,886 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:04:21,937 [76] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/18/13 11:04:21,937 [76] DEBUG index - function getTranslatedString(Mr.) - translated to (先生) +01/18/13 11:04:21,937 [76] DEBUG index - function getTranslatedString(Ms.) - translated to (小姐) +01/18/13 11:04:21,938 [76] DEBUG index - function getTranslatedString(Mrs.) - translated to (女士) +01/18/13 11:04:21,938 [76] DEBUG index - function getTranslatedString(Dr.) - translated to (博士) +01/18/13 11:04:21,938 [76] DEBUG index - function getTranslatedString(Prof.) - translated to (专家) +01/18/13 11:04:21,938 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,938 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,938 [76] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/18/13 11:04:21,938 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,939 [76] DEBUG index - Entering getOutputHtml(4,contact_no,Contact Id,100,Array,1,Contacts) method ... +01/18/13 11:04:21,940 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,940 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,940 [76] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/18/13 11:04:21,940 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,940 [76] DEBUG index - Entering getOutputHtml(255,lastname,Last Name,100,Array,1,Contacts) method ... +01/18/13 11:04:21,941 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/18/13 11:04:21,941 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:21,941 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:21,942 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:21,942 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,942 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,942 [76] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/18/13 11:04:21,942 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,943 [76] DEBUG index - Entering getOutputHtml(11,phone,Office Phone,100,Array,1,Contacts) method ... +01/18/13 11:04:21,944 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,944 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,944 [76] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/18/13 11:04:21,944 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,944 [76] DEBUG index - Entering getOutputHtml(51,account_id,Account Name,100,Array,1,Contacts) method ... +01/18/13 11:04:21,945 [76] DEBUG index - Entering getAccountName(2) method ... +01/18/13 11:04:21,945 [76] INFO index - in getAccountName 2 +01/18/13 11:04:21,945 [76] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/18/13 11:04:21,945 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:21,948 [76] DEBUG index - Exiting getAccountName method ... +01/18/13 11:04:21,948 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,948 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,948 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:21,948 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,949 [76] DEBUG index - Entering getOutputHtml(11,mobile,Mobile,100,Array,1,Contacts) method ... +01/18/13 11:04:21,950 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:21,950 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:21,950 [76] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/18/13 11:04:21,950 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:21,950 [76] DEBUG index - Entering getOutputHtml(15,leadsource,Lead Source,100,Array,1,Contacts) method ... +01/18/13 11:04:21,951 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:04:21,951 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:04:21,951 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:04:21,952 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:04:21,952 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,952 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:04:21,956 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 235 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #496 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #496 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:04:21,957 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:21,957 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:21,976 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,976 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:04:21,976 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,976 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:04:21,980 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,980 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:04:21,980 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:21,981 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:04:21,984 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:21,984 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:04:21,984 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:04:21,984 [76] DEBUG index - Prepared sql query parameters : [leadsource] +01/18/13 11:04:21,986 [76] DEBUG index - Prepared sql query being executed : SELECT distinct leadsource FROM vtiger_leadsource inner join vtiger_role2picklist on vtiger_leadsource.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:04:21,987 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:04:22,051 [76] DEBUG index - function getTranslatedString(--None--) - translated to (-- 无 --) +01/18/13 11:04:22,051 [76] DEBUG index - function getTranslatedString(Cold Call) - translated to (陌生拜访) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Existing Customer) - translated to (老客户) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Self Generated) - translated to (自动产生) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Employee) - translated to (员工) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Partner) - translated to (合作伙伴) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Public Relations) - translated to (公共关系) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Direct Mail) - translated to (邮件营销) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Conference) - translated to (研讨会) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Trade Show) - translated to (贸易展览) +01/18/13 11:04:22,052 [76] DEBUG index - function getTranslatedString(Web Site) - translated to (网站) +01/18/13 11:04:22,053 [76] DEBUG index - function getTranslatedString(Word of mouth) - translated to (口碑) +01/18/13 11:04:22,053 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:04:22,053 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,053 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,053 [76] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/18/13 11:04:22,053 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,054 [76] DEBUG index - Entering getOutputHtml(11,homephone,Home Phone,100,Array,1,Contacts) method ... +01/18/13 11:04:22,054 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,055 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,055 [76] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/18/13 11:04:22,055 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,055 [76] DEBUG index - Entering getOutputHtml(1,title,Title,100,Array,1,Contacts) method ... +01/18/13 11:04:22,056 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,056 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,056 [76] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/18/13 11:04:22,056 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,057 [76] DEBUG index - Entering getOutputHtml(11,otherphone,Other Phone,100,Array,1,Contacts) method ... +01/18/13 11:04:22,058 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,058 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,058 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/18/13 11:04:22,058 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,058 [76] DEBUG index - Entering getOutputHtml(1,department,Department,100,Array,1,Contacts) method ... +01/18/13 11:04:22,059 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,059 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,059 [76] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/18/13 11:04:22,059 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,060 [76] DEBUG index - Entering getOutputHtml(11,fax,Fax,100,Array,1,Contacts) method ... +01/18/13 11:04:22,061 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,061 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:22,061 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,061 [76] DEBUG index - Entering getOutputHtml(13,email,Email,100,Array,1,Contacts) method ... +01/18/13 11:04:22,062 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,062 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,062 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:04:22,062 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,063 [76] DEBUG index - Entering getOutputHtml(5,birthday,Birthdate,100,Array,1,Contacts) method ... +01/18/13 11:04:22,064 [76] INFO index - uitype is 5 +01/18/13 11:04:22,064 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,064 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,064 [76] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/18/13 11:04:22,064 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:04:22,064 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:04:22,064 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,065 [76] DEBUG index - Entering getOutputHtml(1,assistant,Assistant,100,Array,1,Contacts) method ... +01/18/13 11:04:22,065 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,065 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,065 [76] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/18/13 11:04:22,066 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,066 [76] DEBUG index - Entering getOutputHtml(57,contact_id,Reports To,100,Array,1,Contacts) method ... +01/18/13 11:04:22,067 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,067 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,067 [76] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/18/13 11:04:22,067 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,068 [76] DEBUG index - Entering getOutputHtml(11,assistantphone,Assistant Phone,100,Array,1,Contacts) method ... +01/18/13 11:04:22,068 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,068 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,069 [76] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/18/13 11:04:22,069 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,069 [76] DEBUG index - Entering getOutputHtml(13,secondaryemail,Secondary Email,100,Array,1,Contacts) method ... +01/18/13 11:04:22,070 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,070 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,070 [76] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/18/13 11:04:22,070 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,071 [76] DEBUG index - Entering getOutputHtml(56,emailoptout,Email Opt Out,100,Array,1,Contacts) method ... +01/18/13 11:04:22,071 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,071 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,071 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/18/13 11:04:22,072 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,072 [76] DEBUG index - Entering getOutputHtml(56,donotcall,Do Not Call,100,Array,1,Contacts) method ... +01/18/13 11:04:22,073 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,073 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,073 [76] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/18/13 11:04:22,073 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,073 [76] DEBUG index - Entering getOutputHtml(56,reference,Reference,10,Array,1,Contacts) method ... +01/18/13 11:04:22,074 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,074 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,074 [76] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/18/13 11:04:22,074 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,075 [76] DEBUG index - Entering getOutputHtml(53,assigned_user_id,Assigned To,100,Array,1,Contacts) method ... +01/18/13 11:04:22,076 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,076 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,076 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:22,076 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:04:22,076 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:04:22,078 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:04:22,078 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:22,079 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:22,079 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:04:22,079 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:04:22,083 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:22,083 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:22,086 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:22,086 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:22,088 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:22,089 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:22,089 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:22,089 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:22,089 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:22,089 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:22,089 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:22,090 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:22,090 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:04:22,092 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:22,092 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:22,093 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:22,093 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:22,093 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:22,093 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:22,093 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,093 [76] DEBUG index - Entering getOutputHtml(56,notify_owner,Notify Owner,10,Array,1,Contacts) method ... +01/18/13 11:04:22,094 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,094 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,094 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:22,095 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,095 [76] DEBUG index - Entering getOutputHtml(56,portal,Portal User,100,Array,1,Contacts) method ... +01/18/13 11:04:22,096 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,096 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,096 [76] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/18/13 11:04:22,096 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,097 [76] DEBUG index - Entering getOutputHtml(5,support_start_date,Support Start Date,100,Array,1,Contacts) method ... +01/18/13 11:04:22,098 [76] INFO index - uitype is 5 +01/18/13 11:04:22,098 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,098 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,098 [76] DEBUG index - Entering getNewDisplayDate() method ... +01/18/13 11:04:22,098 [76] INFO index - in getNewDisplayDate +01/18/13 11:04:22,098 [76] DEBUG index - Exiting getNewDisplayDate method ... +01/18/13 11:04:22,098 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:22) method ... +01/18/13 11:04:22,099 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:22,099 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,099 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,099 [76] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/18/13 11:04:22,099 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:04:22,099 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:04:22,099 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,100 [76] DEBUG index - Entering getOutputHtml(5,support_end_date,Support End Date,100,Array,1,Contacts) method ... +01/18/13 11:04:22,100 [76] INFO index - uitype is 5 +01/18/13 11:04:22,101 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,101 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,101 [76] DEBUG index - Entering getNewDisplayDate() method ... +01/18/13 11:04:22,101 [76] INFO index - in getNewDisplayDate +01/18/13 11:04:22,101 [76] DEBUG index - Exiting getNewDisplayDate method ... +01/18/13 11:04:22,101 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:22) method ... +01/18/13 11:04:22,101 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:22,101 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,102 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,102 [76] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/18/13 11:04:22,102 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:04:22,102 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:04:22,102 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,102 [76] DEBUG index - Entering getOutputHtml(21,mailingstreet,Mailing Street,100,Array,1,Contacts) method ... +01/18/13 11:04:22,103 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,103 [76] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/18/13 11:04:22,103 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,104 [76] DEBUG index - Entering getOutputHtml(21,otherstreet,Other Street,100,Array,1,Contacts) method ... +01/18/13 11:04:22,105 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,105 [76] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/18/13 11:04:22,105 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,105 [76] DEBUG index - Entering getOutputHtml(1,mailingpobox,Mailing Po Box,100,Array,1,Contacts) method ... +01/18/13 11:04:22,106 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,106 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,106 [76] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/18/13 11:04:22,106 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,107 [76] DEBUG index - Entering getOutputHtml(1,otherpobox,Other Po Box,100,Array,1,Contacts) method ... +01/18/13 11:04:22,107 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,108 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,108 [76] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/18/13 11:04:22,108 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,108 [76] DEBUG index - Entering getOutputHtml(1,mailingcity,Mailing City,100,Array,1,Contacts) method ... +01/18/13 11:04:22,109 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,109 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,109 [76] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/18/13 11:04:22,109 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,110 [76] DEBUG index - Entering getOutputHtml(1,othercity,Other City,100,Array,1,Contacts) method ... +01/18/13 11:04:22,110 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,111 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,111 [76] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/18/13 11:04:22,111 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,111 [76] DEBUG index - Entering getOutputHtml(1,mailingstate,Mailing State,100,Array,1,Contacts) method ... +01/18/13 11:04:22,112 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,112 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,112 [76] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/18/13 11:04:22,112 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,113 [76] DEBUG index - Entering getOutputHtml(1,otherstate,Other State,100,Array,1,Contacts) method ... +01/18/13 11:04:22,113 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,113 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,114 [76] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/18/13 11:04:22,114 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,114 [76] DEBUG index - Entering getOutputHtml(1,mailingzip,Mailing Zip,100,Array,1,Contacts) method ... +01/18/13 11:04:22,115 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,115 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,115 [76] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/18/13 11:04:22,115 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,116 [76] DEBUG index - Entering getOutputHtml(1,otherzip,Other Zip,100,Array,1,Contacts) method ... +01/18/13 11:04:22,116 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,116 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,116 [76] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/18/13 11:04:22,117 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,117 [76] DEBUG index - Entering getOutputHtml(1,mailingcountry,Mailing Country,100,Array,1,Contacts) method ... +01/18/13 11:04:22,118 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,118 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,118 [76] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/18/13 11:04:22,118 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,118 [76] DEBUG index - Entering getOutputHtml(1,othercountry,Other Country,100,Array,1,Contacts) method ... +01/18/13 11:04:22,119 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,119 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,119 [76] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/18/13 11:04:22,119 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,120 [76] DEBUG index - Entering getOutputHtml(19,description,Description,100,Array,1,Contacts) method ... +01/18/13 11:04:22,120 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,121 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,121 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:22,121 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,121 [76] DEBUG index - Entering getOutputHtml(69,imagename,Contact Image,100,Array,1,Contacts) method ... +01/18/13 11:04:22,122 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,122 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,122 [76] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/18/13 11:04:22,122 [76] DEBUG index - Prepared sql query being executed : select vtiger_attachments.*,vtiger_crmentity.setype from vtiger_attachments inner join vtiger_seattachmentsrel on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_attachments.attachmentsid where vtiger_crmentity.setype='Contacts Image' and vtiger_seattachmentsrel.crmid=? +01/18/13 11:04:22,122 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:22,125 [76] DEBUG index - Exiting getOutputHtml method ... +01/18/13 11:04:22,125 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,126 [76] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/18/13 11:04:22,126 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,126 [76] DEBUG index - function getTranslatedString(LBL_CONTACT_INFORMATION) - translated to (联系人信息) +01/18/13 11:04:22,126 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,126 [76] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/18/13 11:04:22,126 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,126 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,127 [76] DEBUG index - function getTranslatedString(LBL_CUSTOMER_PORTAL_INFORMATION) - translated to (客户Portal信息) +01/18/13 11:04:22,127 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,127 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,127 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:22,127 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,127 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,127 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:22,127 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,127 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,127 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/18/13 11:04:22,127 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,128 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,128 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (详细信息) +01/18/13 11:04:22,128 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,128 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,128 [76] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/18/13 11:04:22,128 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,128 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,128 [76] DEBUG index - function getTranslatedString(LBL_IMAGE_INFORMATION) - translated to (联系人照片) +01/18/13 11:04:22,128 [76] DEBUG index - Exiting getBlockInformation method ... +01/18/13 11:04:22,128 [76] DEBUG index - Exiting getBlocks method ... +01/18/13 11:04:22,129 [76] INFO index - Contact detail view +01/18/13 11:04:22,129 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,firstname) method ... +01/18/13 11:04:22,129 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,129 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,129 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:22,130 [76] DEBUG index - Entering updateInfo(130) method ... +01/18/13 11:04:22,130 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:04:22,130 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:22,132 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:04:22,133 [76] INFO index - in getOwnerName 1 +01/18/13 11:04:22,133 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:22,133 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:22,133 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:22,135 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:04:22,135 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:22,137 [76] DEBUG index - Entering getDisplayDate(2012-12-12 04:09:20) method ... +01/18/13 11:04:22,138 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:22,138 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:04:22,139 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:04:22,139 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:04:22,142 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,142 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,142 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:22,143 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:22,143 [76] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/18/13 11:04:22,143 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:22,148 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,148 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,148 [76] DEBUG index - function getTranslatedString(Salutation) - translated to (称谓) +01/18/13 11:04:22,148 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,148 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,148 [76] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/18/13 11:04:22,149 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,149 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,149 [76] DEBUG index - function getTranslatedString(Contact Id) - translated to (编号) +01/18/13 11:04:22,149 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,149 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,149 [76] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/18/13 11:04:22,150 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,150 [76] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/18/13 11:04:22,150 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,150 [76] DEBUG index - function getTranslatedString(Mobile) - translated to (手机) +01/18/13 11:04:22,150 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,150 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:22,151 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,151 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,151 [76] DEBUG index - function getTranslatedString(Home Phone) - translated to (家庭电话) +01/18/13 11:04:22,151 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,151 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,151 [76] DEBUG index - function getTranslatedString(Lead Source) - translated to (潜在客户来源) +01/18/13 11:04:22,151 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,151 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,151 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其他电话) +01/18/13 11:04:22,152 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,152 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,152 [76] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/18/13 11:04:22,152 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,152 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,152 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:22,152 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,152 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,152 [76] DEBUG index - function getTranslatedString(Department) - translated to (部门) +01/18/13 11:04:22,153 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,153 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,153 [76] DEBUG index - function getTranslatedString(Birthdate) - translated to (生日) +01/18/13 11:04:22,153 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,153 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,153 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:04:22,153 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,153 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,153 [76] DEBUG index - function getTranslatedString(Reports To) - translated to (经理) +01/18/13 11:04:22,154 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,154 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,154 [76] DEBUG index - function getTranslatedString(Assistant) - translated to (助理) +01/18/13 11:04:22,154 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,154 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,154 [76] DEBUG index - function getTranslatedString(Secondary Email) - translated to (Secondary Email) +01/18/13 11:04:22,154 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,154 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,154 [76] DEBUG index - function getTranslatedString(Assistant Phone) - translated to (助理电话) +01/18/13 11:04:22,155 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,155 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,155 [76] DEBUG index - function getTranslatedString(Do Not Call) - translated to (拒绝电话打扰) +01/18/13 11:04:22,155 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,155 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,155 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝邮件打扰) +01/18/13 11:04:22,155 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,155 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,155 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:22,156 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,156 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,156 [76] DEBUG index - function getTranslatedString(Reference) - translated to (推荐) +01/18/13 11:04:22,156 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,156 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,156 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:22,156 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,156 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,156 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:04:22,157 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,157 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,157 [76] DEBUG index - function getTranslatedString(Portal User) - translated to (Portal用户) +01/18/13 11:04:22,157 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,157 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,157 [76] DEBUG index - function getTranslatedString(Support Start Date) - translated to (售后服务开始日期) +01/18/13 11:04:22,157 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,157 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,158 [76] DEBUG index - function getTranslatedString(Support End Date) - translated to (售后服务结束日期) +01/18/13 11:04:22,158 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,158 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,158 [76] DEBUG index - function getTranslatedString(Mailing Street) - translated to (邮寄地址) +01/18/13 11:04:22,158 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,158 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,158 [76] DEBUG index - function getTranslatedString(Other Street) - translated to (其它邮寄地址) +01/18/13 11:04:22,158 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,158 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,159 [76] DEBUG index - function getTranslatedString(Mailing City) - translated to (城市) +01/18/13 11:04:22,159 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,159 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,159 [76] DEBUG index - function getTranslatedString(Other City) - translated to (其它城市) +01/18/13 11:04:22,159 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,159 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,159 [76] DEBUG index - function getTranslatedString(Mailing State) - translated to (省份) +01/18/13 11:04:22,159 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,159 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,160 [76] DEBUG index - function getTranslatedString(Other State) - translated to (其它省份) +01/18/13 11:04:22,160 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,160 [76] DEBUG index - function getTranslatedString(Mailing Zip) - translated to (邮政编码) +01/18/13 11:04:22,160 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,160 [76] DEBUG index - function getTranslatedString(Other Zip) - translated to (其它邮政编码) +01/18/13 11:04:22,160 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,160 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,161 [76] DEBUG index - function getTranslatedString(Mailing Country) - translated to (国家) +01/18/13 11:04:22,161 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,161 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,161 [76] DEBUG index - function getTranslatedString(Other Country) - translated to (其它国家) +01/18/13 11:04:22,161 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,161 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,161 [76] DEBUG index - function getTranslatedString(Mailing Po Box) - translated to (邮政信箱) +01/18/13 11:04:22,161 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,161 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,162 [76] DEBUG index - function getTranslatedString(Other Po Box) - translated to (其它邮政信箱) +01/18/13 11:04:22,162 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,162 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,162 [76] DEBUG index - function getTranslatedString(Contact Image) - translated to (照片) +01/18/13 11:04:22,162 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,162 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,162 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:22,162 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,162 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,163 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:22,163 [76] DEBUG index - Entering split_validationdataArray(Array) method ... +01/18/13 11:04:22,163 [76] DEBUG index - Exiting split_validationdataArray method ... +01/18/13 11:04:22,163 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:22,163 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:22,164 [76] DEBUG index - Entering Button_Check(Contacts) method ... +01/18/13 11:04:22,165 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:22,165 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,165 [76] DEBUG index - Entering isPermitted(Contacts,index,) method ... +01/18/13 11:04:22,166 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,166 [76] DEBUG index - Entering isPermitted(Contacts,Import,) method ... +01/18/13 11:04:22,167 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,167 [76] DEBUG index - Entering isPermitted(Contacts,Export,) method ... +01/18/13 11:04:22,167 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,167 [76] DEBUG index - Entering isPermitted(Contacts,Merge,) method ... +01/18/13 11:04:22,168 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,168 [76] DEBUG index - Entering isPermitted(Contacts,DuplicatesHandling,) method ... +01/18/13 11:04:22,169 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,169 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:22,169 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,169 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:04:22,170 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:22,170 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:04:22,171 [76] DEBUG index - Entering function getModuleSequenceFieldName (Contacts)... +01/18/13 11:04:22,171 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,171 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,171 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:04:22,172 [76] INFO VT - PearDatabase ->ADODB getColumnNames table=vtiger_field +01/18/13 11:04:22,208 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,208 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,208 [76] DEBUG index - Prepared sql query being executed : SELECT fieldname,helpinfo FROM vtiger_field WHERE tabid=? +01/18/13 11:04:22,209 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:22,213 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:22,213 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:22,214 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_picklist_dependency WHERE tabid=? +01/18/13 11:04:22,214 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:22,223 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,223 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,224 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,224 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,224 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,224 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:22,224 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,224 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,224 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:22,225 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,225 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,225 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,225 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,225 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,225 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,225 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,226 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,226 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,226 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,226 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,226 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,226 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,226 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,227 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,227 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,227 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,227 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:22,227 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,227 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,227 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:22,229 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:22,229 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:22,229 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:22,446 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:22,447 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:22,448 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,113 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:33,282 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:33,282 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:33,282 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:33,283 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:33,283 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'index', +) +01/18/13 11:04:33,283 [76] INFO index - About to take action index +01/18/13 11:04:33,283 [76] DEBUG index - in index +01/18/13 11:04:33,283 [76] INFO index - current page is modules/Accounts/index.php +01/18/13 11:04:33,283 [76] INFO index - current module is Accounts +01/18/13 11:04:33,333 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:33,333 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:33,333 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:33,333 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:33,334 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,334 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:33,334 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,334 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:33,334 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:33,347 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:33,347 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,347 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:33,348 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:33,348 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:33,349 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:33,349 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,349 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:33,350 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,350 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:33,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,351 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:33,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,351 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:33,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,352 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:33,352 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,352 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:33,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,353 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:33,353 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,353 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:33,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,354 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:33,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,355 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:33,355 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,355 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:33,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,356 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:33,356 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,356 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:33,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,357 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:33,357 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,357 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:33,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,358 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:33,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,358 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:33,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,359 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:33,359 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,359 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:33,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,360 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:33,360 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,360 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:33,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,361 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:33,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,361 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:33,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,362 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:33,362 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,362 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:33,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,363 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:33,363 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,363 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:33,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,364 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:33,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,364 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:33,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,365 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:33,365 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,366 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:33,366 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,366 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:33,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,367 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:33,367 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,367 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:33,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,368 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:33,368 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,368 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:33,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,369 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:33,369 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,369 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:33,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,370 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:33,370 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,370 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:33,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,371 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:33,371 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,371 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:33,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,372 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:33,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,373 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:33,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,373 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:33,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,374 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:33,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,374 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:33,380 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:33,380 [76] DEBUG index - Prepared sql query parameters : [236,1,Accounts,index,,2013-01-18 11:04:33] +01/18/13 11:04:33,384 [76] DEBUG index - Current user is: admin +01/18/13 11:04:33,384 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:33,384 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:33,384 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:33,386 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:33,387 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:33,389 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:33,389 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:33,391 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:33,391 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,392 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,392 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:33,392 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:33,392 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:33,392 [76] DEBUG index - including headers +01/18/13 11:04:33,392 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:33,393 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:33,397 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:33,397 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:33,400 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:04:33,401 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:04:33,401 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,401 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:04:33,402 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,402 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:04:33,402 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,402 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:04:33,403 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,403 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:04:33,403 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,403 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:04:33,404 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,404 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:04:33,404 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,404 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:04:33,404 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:33,405 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:04:33,405 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:04:33,405 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:04:33,413 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,414 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,414 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:33,414 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:33,415 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,415 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:33,415 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,415 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:33,415 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:04:33,416 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,416 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,417 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,417 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:33,417 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:33,418 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,418 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:33,419 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,419 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:33,420 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:33,420 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,420 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:33,421 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,421 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:33,421 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:04:33,422 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,422 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:33,422 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,423 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:33,423 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:33,423 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,423 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:33,424 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,424 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:33,424 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:33,425 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,425 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:04:33,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,425 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:33,426 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:04:33,426 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,426 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:33,427 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,427 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:33,427 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:33,428 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,428 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:33,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,429 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:33,429 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:33,429 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,429 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:33,430 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,430 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:33,430 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:33,431 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,431 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:33,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,431 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:33,432 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:04:33,432 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,432 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:33,433 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,433 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:33,433 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:33,434 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,434 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:33,434 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,434 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:33,435 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:33,435 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,435 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:33,436 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,436 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:33,436 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:04:33,436 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,437 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:33,437 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,437 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:33,437 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:04:33,438 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,438 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:33,439 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,439 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:33,439 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:33,440 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,440 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:33,441 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,441 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:33,441 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:33,442 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,442 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:33,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,442 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:33,443 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:04:33,443 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,443 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:04:33,443 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:33) method ... +01/18/13 11:04:33,444 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:33,444 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:33) method ... +01/18/13 11:04:33,444 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:33,444 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:33,444 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:33,444 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:33,445 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:33,445 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:04:33,445 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:04:33,446 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:04:33,449 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,449 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,450 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,450 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,450 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,450 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,450 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,450 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,451 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,451 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,451 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,451 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,451 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,451 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,452 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,452 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,452 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,452 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,452 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,452 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,452 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,452 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,453 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,453 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,454 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,454 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,455 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,455 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,456 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,456 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,457 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,457 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,458 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,458 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,459 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,459 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,459 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,459 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:04:33,463 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:33,464 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,464 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:33,464 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:33,469 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,470 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,470 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:33,471 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,471 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:33,471 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,471 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:33,472 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,472 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:33,472 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,472 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,473 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:33,473 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,473 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:33,473 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,473 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:33,474 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,474 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:33,474 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,474 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:33,475 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,475 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:33,475 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,475 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:04:33,476 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,476 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:33,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,476 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:33,477 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,477 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:33,477 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,477 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:33,477 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,477 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:33,478 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,478 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:33,478 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,478 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:33,479 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,479 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:04:33,479 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,479 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:04:33,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,480 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:04:33,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,481 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:33,481 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,481 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:33,481 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,481 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:33,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,482 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:04:33,482 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,482 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:33,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,482 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:33,483 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,483 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:33,483 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,483 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:33,484 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,484 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:33,484 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:33,484 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:33,488 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:33,489 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,489 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:04:33,490 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,490 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:04:33,491 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,491 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:04:33,492 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,492 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:04:33,493 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,493 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:33,493 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:04:33,496 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:04:33,496 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,496 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:04:33,496 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:04:33,499 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:04:33,506 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,506 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,506 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:33,507 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,507 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,507 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:33,507 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:33,507 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,507 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:33,507 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,508 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,508 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:33,508 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:33,508 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,508 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:33,508 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:33,508 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,508 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:33,509 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:33,509 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,509 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:33,509 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:33,509 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,509 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:33,509 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:33,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,510 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:33,510 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:33,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,510 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:33,511 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:04:33,511 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,511 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:04:33,513 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:33,514 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,514 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:33,514 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:04:33,514 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,515 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:04:33,515 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:04:33,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,515 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:04:33,515 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:04:33,516 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,516 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:04:33,516 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:33,517 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,517 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:33,517 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:33,517 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,517 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:04:33,517 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:04:33,517 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,518 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:04:33,518 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:04:33,518 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,518 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:04:33,518 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:04:33,519 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,519 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:04:33,519 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:33,520 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,520 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:33,520 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:33,520 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,520 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:33,520 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:33,520 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,520 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:33,521 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:33,521 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,521 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:33,521 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:33,521 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,521 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:33,521 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:33,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,522 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:33,522 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:33,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,522 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:33,522 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:33,522 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,522 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:33,522 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:33,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,523 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:33,523 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:33,523 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,524 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:33,524 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:33,524 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,524 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:33,524 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:33,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,525 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:33,525 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:33,525 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,525 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:33,526 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:33,526 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,526 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:33,527 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,527 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,527 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:04:33,527 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:04:33,528 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,532 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:33,532 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:33,533 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:33,533 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:33,534 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:04:33,534 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:33,534 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,534 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:04:33,535 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,535 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:04:33,536 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,536 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:04:33,536 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,536 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:33,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,537 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:04:33,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,538 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:33,538 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,538 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:04:33,539 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,539 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:04:33,539 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:33,539 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:33,539 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,540 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,540 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,540 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,540 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:33,540 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:33,550 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,551 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,551 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:33,551 [76] DEBUG index - Entering function initSortByField (Accounts) +01/18/13 11:04:33,551 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,551 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,551 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:33,551 [76] DEBUG index - Prepared sql query parameters : [6,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:33,556 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:33,556 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:33,557 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,557 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:33,558 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,558 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:33,558 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,558 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:04:33,559 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:33,559 [76] DEBUG index - Entering getSortOrder() method ... +01/18/13 11:04:33,559 [76] DEBUG index - Exiting getSortOrder() method ... +01/18/13 11:04:33,559 [76] DEBUG index - Entering getOrderBy() method ... +01/18/13 11:04:33,559 [76] DEBUG index - Exiting getOrderBy method ... +01/18/13 11:04:33,560 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:33,560 [76] DEBUG index - Entering getUserslist() method ... +01/18/13 11:04:33,561 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:33,561 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:33,561 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:04:33,561 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:04:33,564 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:33,564 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:33,566 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:33,566 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:33,570 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:33,570 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:33,570 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:33,571 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:33,571 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:33,571 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:33,571 [76] DEBUG index - Exiting getUserslist method ... +01/18/13 11:04:33,571 [76] DEBUG index - Entering getGroupslist() method ... +01/18/13 11:04:33,572 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:04:33,572 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:04:33,574 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:04:33,574 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:33,575 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:33,575 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:04:33,579 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:33,579 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:33,579 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:33,579 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:33,579 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:33,579 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:33,579 [76] DEBUG index - Exiting getGroupslist method ... +01/18/13 11:04:33,579 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:33,579 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:33,587 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:33,587 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:33,588 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,588 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,588 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:33,588 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,588 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,589 [76] DEBUG index - Entering isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:04:33,590 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:04:33,590 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:33,593 [76] DEBUG index - Entering when status=0 +01/18/13 11:04:33,593 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:04:33,593 [76] DEBUG index - Exiting isPermittedCustomView(4,index,Accounts) method.... +01/18/13 11:04:33,593 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,593 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,594 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.*, vtiger_users.first_name,vtiger_users.last_name from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype + left join vtiger_users on vtiger_customview.userid = vtiger_users.id where vtiger_tab.tabid=? ORDER BY viewname +01/18/13 11:04:33,594 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:33,597 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,597 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,598 [76] DEBUG index - Prepared sql query being executed : select vtiger_customview.* from vtiger_customview inner join vtiger_tab on vtiger_tab.name = vtiger_customview.entitytype where vtiger_customview.cvid=? +01/18/13 11:04:33,598 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:33,601 [76] DEBUG index - Prepared sql query being executed : select default_cvid from vtiger_user_module_preferences where userid = ? and tabid = ? +01/18/13 11:04:33,601 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:04:33,604 [76] DEBUG index - Entering return_module_language(zh_cn,CustomView) method ... +01/18/13 11:04:33,605 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,605 [76] DEBUG index - Entering isPermittedChangeStatus(0) method.............. +01/18/13 11:04:33,605 [76] DEBUG index - Exiting isPermittedChangeStatus(0) method.............. +01/18/13 11:04:33,605 [76] DEBUG index - Entering isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:04:33,606 [76] DEBUG index - Entering when status=0 +01/18/13 11:04:33,606 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:04:33,606 [76] DEBUG index - Exiting isPermittedCustomView(4,EditView,Accounts) method.... +01/18/13 11:04:33,606 [76] DEBUG index - Entering isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:04:33,606 [76] DEBUG index - Entering when status=0 +01/18/13 11:04:33,607 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : no +01/18/13 11:04:33,607 [76] DEBUG index - Exiting isPermittedCustomView(4,Delete,Accounts) method.... +01/18/13 11:04:33,607 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,607 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,607 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:04:33,607 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:33,609 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:33,609 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,609 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:04:33,609 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:33,613 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,613 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:33,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,613 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:33,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,613 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:33,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,613 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:33,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,614 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:33,614 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,614 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:33,614 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,614 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:33,614 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,614 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:33,614 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:33,614 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:04:33,614 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:33,620 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:04:33,620 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:04:33,638 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_fieldtype +01/18/13 11:04:33,644 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:04:33,644 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:04:33,647 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:33,648 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:33,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,648 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:33,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,648 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:33,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,648 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:33,648 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:33,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:33,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:33,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:33,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:33,649 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,649 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:33,650 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,650 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:33,651 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,651 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,652 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,652 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,652 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,652 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,652 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:33,652 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,653 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:33,653 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,654 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:33,654 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,655 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:33,655 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,656 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:33,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,656 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:33,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:33,656 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:33,656 [76] DEBUG index - Prepared sql query being executed : select name,id,ismodule from vtiger_ws_entity +01/18/13 11:04:33,660 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:33,660 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:33,660 [76] DEBUG index - Prepared sql query parameters : [Groups] +01/18/13 11:04:33,665 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:04:33,665 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:33,714 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,714 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupid] +01/18/13 11:04:33,716 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,717 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,groupname] +01/18/13 11:04:33,719 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,719 [76] DEBUG index - Prepared sql query parameters : [vtiger_groups,description] +01/18/13 11:04:33,721 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:33,721 [76] DEBUG index - Prepared sql query parameters : [Currency] +01/18/13 11:04:33,723 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:04:33,723 [76] DEBUG index - Prepared sql query parameters : [21] +01/18/13 11:04:33,769 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,770 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,id] +01/18/13 11:04:33,771 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,772 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_name] +01/18/13 11:04:33,776 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,776 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_code] +01/18/13 11:04:33,778 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,778 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_symbol] +01/18/13 11:04:33,780 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,780 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,conversion_rate] +01/18/13 11:04:33,782 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,782 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,currency_status] +01/18/13 11:04:33,787 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,787 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,defaultid] +01/18/13 11:04:33,789 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,789 [76] DEBUG index - Prepared sql query parameters : [vtiger_currency_info,deleted] +01/18/13 11:04:33,791 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:33,791 [76] DEBUG index - Prepared sql query parameters : [DocumentFolders] +01/18/13 11:04:33,793 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:04:33,793 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:04:33,828 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,828 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,folderid] +01/18/13 11:04:33,830 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,830 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,foldername] +01/18/13 11:04:33,832 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,832 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,description] +01/18/13 11:04:33,834 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,834 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,createdby] +01/18/13 11:04:33,836 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_referencetype where fieldtypeid=? +01/18/13 11:04:33,837 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:33,839 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,839 [76] DEBUG index - Prepared sql query parameters : [vtiger_attachmentsfolder,sequence] +01/18/13 11:04:33,843 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:33,844 [76] DEBUG index - Prepared sql query parameters : [CompanyDetails] +01/18/13 11:04:33,848 [76] DEBUG index - Prepared sql query being executed : select table_name from vtiger_ws_entity_tables where webservice_entity_id=? +01/18/13 11:04:33,848 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:04:33,886 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,886 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organization_id] +01/18/13 11:04:33,891 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,891 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,organizationname] +01/18/13 11:04:33,893 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,893 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,address] +01/18/13 11:04:33,895 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,895 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,city] +01/18/13 11:04:33,897 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,897 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,state] +01/18/13 11:04:33,899 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,899 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,country] +01/18/13 11:04:33,901 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,901 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,code] +01/18/13 11:04:33,903 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,903 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,phone] +01/18/13 11:04:33,905 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,905 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,fax] +01/18/13 11:04:33,907 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,907 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,website] +01/18/13 11:04:33,909 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,909 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logoname] +01/18/13 11:04:33,911 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity_fieldtype where table_name=? and field_name=?; +01/18/13 11:04:33,911 [76] DEBUG index - Prepared sql query parameters : [vtiger_organizationdetails,logo] +01/18/13 11:04:33,913 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:33,916 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:33,916 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:33,918 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:33,919 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:33,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,919 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:33,919 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:33,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,919 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:33,920 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:33,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,920 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:33,920 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:33,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,920 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:33,920 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:33,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,920 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:33,920 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:33,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,921 [76] DEBUG index - function getTranslatedString(SINGLE_Faq) - translated to (常见问答) +01/18/13 11:04:33,921 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:33,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,921 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:33,921 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:33,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,921 [76] DEBUG index - function getTranslatedString(SINGLE_Quotes) - translated to (报价单) +01/18/13 11:04:33,921 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:33,921 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,921 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:33,921 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:33,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,922 [76] DEBUG index - function getTranslatedString(SINGLE_PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:33,922 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:33,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,922 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:33,922 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:33,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,922 [76] DEBUG index - function getTranslatedString(SINGLE_SalesOrder) - translated to (销售订单) +01/18/13 11:04:33,922 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:33,922 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,922 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:33,923 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:33,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,923 [76] DEBUG index - function getTranslatedString(SINGLE_Invoice) - translated to (发货单) +01/18/13 11:04:33,923 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:33,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,923 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:33,923 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:33,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,923 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:33,923 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,924 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:33,924 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,924 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,924 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:33,924 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:33,924 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,924 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:33,924 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:33,924 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,924 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:33,925 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,925 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,925 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:33,925 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:33,925 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,925 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:33,925 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:33,925 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,925 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:33,925 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:33,925 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,926 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:33,926 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:33,926 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,926 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:33,926 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:33,926 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,926 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:33,926 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:33,926 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,926 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:33,926 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:33,927 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,927 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:33,927 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:33,927 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,927 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:33,927 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:33,927 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,927 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:33,927 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:33,927 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,927 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:33,928 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:33,928 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,928 [76] DEBUG index - function getTranslatedString(SINGLE_Emails) - translated to (Email) +01/18/13 11:04:33,928 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:33,928 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,928 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:33,928 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:33,928 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,928 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:33,928 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,929 [76] DEBUG index - function getTranslatedString(Events) - translated to (事件) +01/18/13 11:04:33,929 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:33,929 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,929 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:33,929 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:04:33,930 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,931 [76] DEBUG index - function getTranslatedString(Users) - translated to (用户) +01/18/13 11:04:33,931 [76] DEBUG index - Entering return_module_language(zh_cn,Users) method ... +01/18/13 11:04:33,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,931 [76] DEBUG index - function getTranslatedString(SINGLE_Users) - translated to (用户) +01/18/13 11:04:33,931 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:33,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,931 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:33,931 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:33,931 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,931 [76] DEBUG index - function getTranslatedString(SINGLE_PBXManager) - translated to (SINGLE_PBXManager) +01/18/13 11:04:33,932 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:33,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,932 [76] DEBUG index - function getTranslatedString(ServiceContracts) - translated to (服务合同) +01/18/13 11:04:33,932 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:33,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,932 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:33,932 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:33,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,932 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:33,932 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:33,932 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,933 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:33,933 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:33,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,933 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:33,933 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:33,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,933 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:33,933 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:33,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,933 [76] DEBUG index - function getTranslatedString(ModComments) - translated to (评论) +01/18/13 11:04:33,933 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:33,933 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,934 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:33,934 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:33,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,934 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:33,934 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:33,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,934 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:33,934 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:33,934 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,934 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:33,934 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:33,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,935 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:33,935 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:33,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,935 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:33,935 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:33,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,935 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:33,935 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:33,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,935 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:33,935 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:33,936 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:33,936 [76] DEBUG index - function getTranslatedString(SINGLE_SMSNotifier) - translated to (短息信息) +01/18/13 11:04:33,936 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,936 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,984 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_referencetype where fieldtypeid=? +01/18/13 11:04:33,984 [76] DEBUG index - Prepared sql query parameters : [31] +01/18/13 11:04:33,987 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:33,987 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:33,988 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvcolumnlist.* from vtiger_cvcolumnlist inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvcolumnlist.cvid where vtiger_customview.cvid =? order by vtiger_cvcolumnlist.columnindex +01/18/13 11:04:33,988 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:33,992 [76] DEBUG index - Prepared sql query being executed : select vtiger_cvstdfilter.* from vtiger_cvstdfilter inner join vtiger_customview on vtiger_customview.cvid = vtiger_cvstdfilter.cvid where vtiger_cvstdfilter.cvid=? +01/18/13 11:04:33,993 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:34,002 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_cvadvfilter_grouping WHERE cvid = ? ORDER BY groupid +01/18/13 11:04:34,003 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:34,007 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:34,007 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:34,009 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:34,009 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:34,010 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:34,010 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:34,010 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,010 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,010 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:34,010 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:34,010 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,010 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:34,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,011 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where tabid = ? +01/18/13 11:04:34,011 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:34,013 [76] DEBUG index - Prepared sql query being executed : select name_fields from vtiger_ws_entity_name where entity_id = ? +01/18/13 11:04:34,013 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:34,017 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,018 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,018 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,018 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,018 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,018 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,018 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,018 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,018 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,019 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,019 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,019 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,019 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,019 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,019 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,019 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,019 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,019 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,020 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,020 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,020 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,020 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,020 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,020 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,021 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,021 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,021 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,021 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,021 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,021 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,021 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,021 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,022 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,023 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,023 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,023 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 +01/18/13 11:04:34,026 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_account.account_no, vtiger_account.accountname, vtiger_accountbillads.bill_city, vtiger_account.website, vtiger_account.phone, vtiger_crmentity.smownerid, vtiger_account.accountid FROM vtiger_account INNER JOIN vtiger_crmentity ON vtiger_account.accountid = vtiger_crmentity.crmid INNER JOIN vtiger_accountbillads ON vtiger_account.accountid = vtiger_accountbillads.accountaddressid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_crmentity.smownerid = vtiger_groups.groupid WHERE vtiger_crmentity.deleted=0 AND vtiger_account.accountid > 0 LIMIT 0, 20 +01/18/13 11:04:34,030 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,031 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,031 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,032 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,032 [76] DEBUG index - Entering getURLstring(Accounts) method ... +01/18/13 11:04:34,032 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:34,033 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,033 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,033 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,033 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,034 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,034 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,034 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,035 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:04:34,035 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,035 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,035 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:34,035 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,035 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,035 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:34,035 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,035 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,036 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:34,036 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,036 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,036 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:34,036 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,036 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,036 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:34,036 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,037 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,037 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,037 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,037 [76] DEBUG index - function getTranslatedString(LBL_ACTION) - translated to (操作) +01/18/13 11:04:34,038 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:34,038 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:34,038 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:34,041 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?,?,?,?,?,?,?,?,?,?) +01/18/13 11:04:34,041 [76] DEBUG index - Prepared sql query parameters : [1,1,1,1,1,1,1,1,1,1] +01/18/13 11:04:34,045 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:34,046 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,046 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:34,046 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:34,049 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,049 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,049 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,050 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,050 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,051 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,051 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,052 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,052 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,052 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,052 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,052 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,052 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,052 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,053 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,054 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,054 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,054 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,055 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,055 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,055 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,055 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,056 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,056 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,056 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,056 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,057 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,057 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,058 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,058 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,058 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,058 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,059 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,059 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,059 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,060 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,060 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,060 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,060 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,060 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,061 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,061 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,065 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,065 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,065 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,066 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,066 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,066 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,066 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,066 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,066 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,066 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:34,069 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,069 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,069 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,070 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,070 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,070 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,070 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,071 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,071 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,071 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,072 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,072 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,072 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,072 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,073 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,073 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,073 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,073 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,074 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,074 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,074 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,075 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,075 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,076 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,076 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,076 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,077 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,077 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,077 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,077 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,078 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,078 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,078 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,079 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,079 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,079 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,079 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,079 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,080 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,080 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,080 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,080 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,085 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,085 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,085 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,085 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,085 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,085 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,085 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,085 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,086 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,086 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:34,088 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,088 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,089 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,090 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,090 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,090 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,090 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,091 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,091 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,091 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,091 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,092 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,092 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,092 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,093 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,093 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,093 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,093 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,094 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,094 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,094 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,094 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,095 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,095 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,096 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,096 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,097 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,097 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,097 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,097 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,097 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,098 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,098 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,099 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,099 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,099 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,099 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,099 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,099 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,100 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,100 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,100 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,104 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,105 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,105 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,105 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,105 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,105 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,105 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,105 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,105 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:34,109 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,109 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,109 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,110 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,110 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,110 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,110 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,111 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,111 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,112 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,112 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,112 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,112 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,112 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,113 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,113 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,113 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,113 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,114 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,115 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,115 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,115 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,116 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,116 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,116 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,116 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,117 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,117 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,117 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,118 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,118 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,118 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,119 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,119 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,119 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,119 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,119 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,120 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,120 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,120 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,120 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,121 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,124 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,125 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,125 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,125 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,125 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,125 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,125 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,125 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,125 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,125 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:34,133 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,133 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,133 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,134 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,135 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,135 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,135 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,136 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,136 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,136 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,136 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,136 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,136 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,137 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,137 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,138 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,138 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,138 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,139 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,139 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,139 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,139 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,140 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,140 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,140 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,141 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,141 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,141 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,142 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,142 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,142 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,142 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,143 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,143 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,143 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,144 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,144 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,144 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,144 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,144 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,145 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,145 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,149 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,149 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,149 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,150 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,150 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,150 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,150 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,150 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,150 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:34,155 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,155 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,155 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,156 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,157 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,157 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,157 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,158 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,158 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,158 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,158 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,158 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,158 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,158 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,159 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,160 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,160 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,160 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,161 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,161 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,161 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,161 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,162 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,162 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,162 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,162 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,163 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,163 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,164 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,164 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,164 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,164 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,165 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,165 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,165 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,165 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,166 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,166 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,166 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,166 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,166 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,167 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,171 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,171 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,171 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,171 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,172 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,172 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,172 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,172 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,172 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,172 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:04:34,175 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,176 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,176 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,177 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,177 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,177 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,177 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,178 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,178 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,178 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,179 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,179 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,179 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,179 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,180 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,180 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,180 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,180 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,181 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,181 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,182 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,182 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,183 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,183 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,183 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,183 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,184 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,184 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,185 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,185 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,185 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,185 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,186 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,186 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,186 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,186 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,186 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,187 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,187 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,187 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,187 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,188 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,192 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,192 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,192 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,192 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,192 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,193 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,193 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,193 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:04:34,201 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,201 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,201 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,202 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,203 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,203 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,203 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,204 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,204 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,204 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,204 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,204 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,204 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,205 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,205 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,206 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,206 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,206 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,207 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,207 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,207 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,207 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,208 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,208 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,209 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,209 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,209 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,210 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,210 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,210 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,210 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,210 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,211 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,211 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,212 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,212 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,212 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,212 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,212 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,213 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,213 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,213 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,217 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,217 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,218 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,218 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,218 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,218 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,218 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,218 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,218 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,218 [76] DEBUG index - Prepared sql query parameters : [16] +01/18/13 11:04:34,222 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,222 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,222 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,223 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,223 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,224 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,224 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,225 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,225 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,225 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,225 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,225 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,225 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,225 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,226 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,227 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,227 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,227 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,228 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,228 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,228 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,228 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,229 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,229 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,229 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,229 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,230 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,230 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,231 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,231 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,231 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,231 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,232 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,232 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,232 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,232 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,233 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,233 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,233 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,233 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,233 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,234 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,238 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,238 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,238 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,238 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,239 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,239 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,239 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,239 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,239 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,239 [76] DEBUG index - Prepared sql query parameters : [18] +01/18/13 11:04:34,242 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,242 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,242 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,243 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,244 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,244 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,244 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,245 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,245 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,245 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,245 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,245 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,246 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,246 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,247 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,247 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,247 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,247 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,248 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,248 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,248 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,248 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,249 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,249 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,250 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,250 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,250 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,251 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:34,251 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,251 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,252 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,252 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,253 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,253 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,253 [76] DEBUG index - function getTranslatedString(LNK_EDIT) - translated to (编辑) +01/18/13 11:04:34,253 [76] DEBUG index - Entering isPermitted(Accounts,Delete,) method ... +01/18/13 11:04:34,254 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,254 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:34,254 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:34,254 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:34,255 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:34,259 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:34,259 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:34,259 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,259 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,260 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:34,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,260 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,260 [76] DEBUG index - function getTranslatedString(LNK_DELETE) - translated to (刪除) +01/18/13 11:04:34,260 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:34,260 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:34,263 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,263 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,263 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:04:34,263 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,263 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,263 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:34,263 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,263 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,263 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:34,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,264 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:34,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,264 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:34,264 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,264 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:34,264 [76] DEBUG index - Entering AlphabeticalSearch(Accounts,index,accountname,true,basic,,,,,4,) method ... +01/18/13 11:04:34,265 [76] DEBUG index - Exiting AlphabeticalSearch method ... +01/18/13 11:04:34,265 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,265 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,265 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:34,265 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,265 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,267 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,267 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,267 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,268 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,268 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,268 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:04:34,268 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,268 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,270 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,270 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,270 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,271 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,271 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,271 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:34,271 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,271 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,273 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,273 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,273 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,273 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,273 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,273 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:34,274 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,274 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,275 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,276 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,276 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,276 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,276 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,276 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:34,276 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,276 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,278 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,279 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,279 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,279 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,279 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,279 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:04:34,279 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,279 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,281 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,281 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,281 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,281 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,282 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:04:34,282 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,282 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,284 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,284 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,284 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,284 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,284 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,284 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:04:34,284 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,285 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,288 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,288 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,288 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,288 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,289 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,289 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:34,289 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,289 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,291 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,291 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,291 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,291 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,291 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,291 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:04:34,292 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,292 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,293 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,294 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,294 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,294 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,294 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,294 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:04:34,294 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,294 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,299 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,299 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,299 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,299 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:04:34,299 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,299 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,301 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,302 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,302 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,302 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,302 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,302 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:04:34,302 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,302 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,304 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,305 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,305 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,305 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,305 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,305 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:04:34,305 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,305 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,307 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,307 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,307 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,308 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,308 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,308 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:04:34,308 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,308 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,310 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,310 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,310 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,310 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,310 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,310 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:34,311 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,311 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,312 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,313 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,313 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,313 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,313 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,313 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:04:34,313 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,313 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,315 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,315 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,315 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,316 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,316 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,316 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:04:34,316 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,316 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,318 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,318 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,318 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,318 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,318 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,318 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:34,319 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,319 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,320 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,320 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,321 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,321 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,321 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,321 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:34,321 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,321 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,323 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,323 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,323 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,323 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,323 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,323 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:04:34,323 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,324 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,325 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,325 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,325 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,326 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,326 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,326 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:04:34,326 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,326 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,327 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,328 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,328 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,328 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,328 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,328 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:04:34,328 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,328 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:34,330 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,330 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,330 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:34,330 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,330 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,330 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:04:34,330 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,330 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,334 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,334 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,334 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,334 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,335 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,335 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:04:34,335 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,335 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,337 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,337 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,337 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,338 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:34,338 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,338 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,339 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,339 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,340 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,340 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,340 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,340 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:04:34,340 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,340 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,342 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,342 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,342 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,342 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,342 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,342 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:04:34,342 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,342 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,344 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,344 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,344 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,344 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,344 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,344 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:04:34,344 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,344 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,346 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,346 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,346 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,346 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,346 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:04:34,346 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,347 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,348 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,348 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,348 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,349 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,349 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,349 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:04:34,349 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,349 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,351 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,351 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,351 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,351 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,351 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,351 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:04:34,352 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,352 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,355 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,355 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,355 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,355 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,355 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,356 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:04:34,356 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,356 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,357 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,357 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,358 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,358 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,358 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,358 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:04:34,358 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,358 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,362 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,362 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,362 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,362 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,362 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,362 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:04:34,363 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,363 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:34,365 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,365 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,365 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:34,365 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,366 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,366 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:34,366 [76] DEBUG index - Prepared sql query being executed : SELECT blocklabel FROM vtiger_blocks WHERE blockid = ? +01/18/13 11:04:34,366 [76] DEBUG index - Prepared sql query parameters : [12] +01/18/13 11:04:34,368 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,368 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,368 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:04:34,368 [76] DEBUG index - Entering getcriteria_options() method ... +01/18/13 11:04:34,369 [76] DEBUG index - Exiting getcriteria_options method ... +01/18/13 11:04:34,369 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,369 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,369 [76] DEBUG index - Entering getFieldsResultForMerge(6) method ... +01/18/13 11:04:34,369 [76] DEBUG index - Prepared sql query being executed : SELECT fieldid,typeofdata FROM vtiger_field WHERE tabid = ? and vtiger_field.presence in (0,2) AND block IS NOT NULL AND displaytype NOT IN (?) AND uitype NOT IN ( ?,?,?) +01/18/13 11:04:34,369 [76] DEBUG index - Prepared sql query parameters : [6,4,70,69,4] +01/18/13 11:04:34,372 [76] DEBUG index - Exiting getFieldsResultForMerge method ... +01/18/13 11:04:34,372 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:04:34,372 [76] DEBUG index - Prepared sql query being executed : SELECT profileid FROM vtiger_role2profile WHERE roleid=(SELECT roleid FROM vtiger_user2role WHERE userid=?) +01/18/13 11:04:34,372 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:34,375 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:04:34,375 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:04:34,375 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:04:34,375 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,375 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,375 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_profile2field.visible, vtiger_profile2field.readonly, vtiger_field.fieldlabel, vtiger_field.uitype, + vtiger_field.fieldid, vtiger_field.displaytype, vtiger_field.typeofdata + FROM vtiger_profile2field INNER JOIN vtiger_field ON vtiger_field.fieldid=vtiger_profile2field.fieldid + WHERE vtiger_profile2field.profileid=? and vtiger_profile2field.tabid=? and vtiger_field.presence in (0,2) +01/18/13 11:04:34,375 [76] DEBUG index - Prepared sql query parameters : [1,6] +01/18/13 11:04:34,386 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:04:34,386 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:04:34,386 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:34,392 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,393 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:34,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,393 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:34,393 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,393 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,393 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:34,394 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,394 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:34,394 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,394 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:04:34,394 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,394 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,394 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:04:34,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,395 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:04:34,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,395 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:34,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,395 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,395 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:04:34,395 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,396 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:04:34,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,396 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:04:34,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,396 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,396 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:04:34,396 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,397 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:04:34,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,397 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:04:34,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,397 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,397 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:34,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,398 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:04:34,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,398 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:04:34,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,398 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:34,398 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,398 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,399 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:34,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,399 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:04:34,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,399 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:04:34,399 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,400 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:04:34,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,400 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:34,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,400 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:04:34,400 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,400 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,400 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:04:34,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,401 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:04:34,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,401 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:04:34,401 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,401 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,401 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:04:34,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,402 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:04:34,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,402 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:04:34,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,402 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,402 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:04:34,402 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,403 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:04:34,403 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,403 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,403 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:34,403 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,403 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,403 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_user2mergefields where tabid=? and userid=? and visible=1 +01/18/13 11:04:34,403 [76] DEBUG index - Prepared sql query parameters : [6,1] +01/18/13 11:04:34,406 [76] DEBUG index - Entering fetchUserProfileId(1) method ... +01/18/13 11:04:34,406 [76] DEBUG index - Exiting fetchUserProfileId method ... +01/18/13 11:04:34,406 [76] DEBUG index - Entering getProfile2FieldPermissionList(Accounts,1) method ... +01/18/13 11:04:34,406 [76] INFO index - in getProfile2FieldList Accounts vtiger_profile id is 1 +01/18/13 11:04:34,406 [76] DEBUG index - Exiting getProfile2FieldPermissionList method ... +01/18/13 11:04:34,406 [76] DEBUG index - Prepared sql query being executed : select fieldid from vtiger_def_org_field where tabid=? and visible=0 +01/18/13 11:04:34,406 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:34,413 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:34,413 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:34,413 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?) +01/18/13 11:04:34,413 [76] DEBUG index - Prepared sql query parameters : [6,LISTVIEWBASIC,LISTVIEW] +01/18/13 11:04:34,416 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:34,417 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:34,418 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:04:34,418 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:04:34,418 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:34,420 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:04:34,420 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:34,420 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:34,424 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,424 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,424 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,424 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,424 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,424 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:34,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,425 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:34,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,425 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,425 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,425 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,425 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,426 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,426 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,426 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,426 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,426 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,427 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,427 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,427 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,427 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,428 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,428 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,428 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,430 [76] DEBUG index - Entering parse_calendardate((yyyy-mm-dd)) method ... +01/18/13 11:04:34,430 [76] DEBUG index - Exiting parse_calendardate method ... +01/18/13 11:04:34,430 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,431 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:04:34,431 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,431 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:04:34,431 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,431 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,431 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:04:34,432 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,432 [76] DEBUG index - function getTranslatedString(LBL_NONE) - translated to (-- 无 --) +01/18/13 11:04:34,432 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,432 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_AND) - translated to (and) +01/18/13 11:04:34,432 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,432 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,432 [76] DEBUG index - function getTranslatedString(LBL_CRITERIA_OR) - translated to (or) +01/18/13 11:04:34,432 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,433 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,433 [76] DEBUG index - function getTranslatedString(LBL_ADVANCED_FILTER) - translated to (高级搜索) +01/18/13 11:04:34,433 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,433 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,433 [76] DEBUG index - function getTranslatedString(LBL_NEW_GROUP) - translated to (新组合) +01/18/13 11:04:34,436 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:34,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:34,436 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,436 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,436 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:04:34,436 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,437 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,437 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,437 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,437 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,437 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:34,437 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:34,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:34,437 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,438 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,438 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:04:34,438 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:34,438 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:34,438 [76] DEBUG index - function getTranslatedString(LBL_CREATE_MERGE_TEMPLATE) - translated to (创建邮件合并样板) +01/18/13 11:04:34,439 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:34,439 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:34,439 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,445 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:36,588 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:36,588 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:36,588 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:36,589 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:36,589 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'parenttab' => 'Marketing', + 'action' => 'DetailView', + 'record' => '2', +) +01/18/13 11:04:36,589 [76] INFO index - About to take action DetailView +01/18/13 11:04:36,589 [76] DEBUG index - in DetailView +01/18/13 11:04:36,589 [76] INFO index - current page is modules/Accounts/DetailView.php +01/18/13 11:04:36,589 [76] INFO index - current module is Accounts +01/18/13 11:04:36,640 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:36,640 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:36,641 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:36,641 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:36,641 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,641 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:36,641 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,642 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:36,642 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:36,653 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:36,653 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,654 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:36,654 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:36,654 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:36,655 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:36,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,656 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:36,656 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,656 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:36,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,657 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:36,657 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,658 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:36,658 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,658 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:36,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,659 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:36,659 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,659 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:36,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,660 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:36,660 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,661 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:36,661 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,661 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:36,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,662 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:36,662 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,662 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:36,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,663 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:36,663 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,663 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:36,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,664 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:36,664 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,664 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:36,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,665 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:36,665 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,665 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:36,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,666 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:36,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,666 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:36,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,667 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:36,667 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,668 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:36,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,668 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:36,668 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,668 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:36,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,669 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:36,669 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,669 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:36,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,670 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:36,670 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,670 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:36,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,671 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:36,671 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,672 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:36,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,672 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:36,672 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,673 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:36,673 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,673 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:36,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,674 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:36,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,674 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:36,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,675 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:36,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,675 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:36,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,676 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:36,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,676 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:36,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,677 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:36,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,677 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:36,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,678 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:36,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,678 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:36,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,679 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:36,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,679 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:36,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,680 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:36,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:36,680 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:36,684 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:36,685 [76] DEBUG index - Prepared sql query parameters : [237,1,Accounts,DetailView,2,2013-01-18 11:04:36] +01/18/13 11:04:36,689 [76] DEBUG index - Current user is: admin +01/18/13 11:04:36,689 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:36,689 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:36,689 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:36,691 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:36,692 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:36,694 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:36,694 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:36,696 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:36,696 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,697 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,697 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:36,697 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:36,697 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,697 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,698 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,698 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,698 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:36,698 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:36,706 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,706 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,707 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:36,707 [76] DEBUG account - About to call vtiger_tracker (user_id, module_name, item_id)(1, Accounts, ) +01/18/13 11:04:36,707 [76] DEBUG index - Prepared sql query being executed : DELETE from vtiger_tracker WHERE user_id=? and item_id=? +01/18/13 11:04:36,707 [76] DEBUG index - Prepared sql query parameters : [1,2] +01/18/13 11:04:36,711 [76] INFO index - in track view method Accounts +01/18/13 11:04:36,712 [76] DEBUG index - Prepared sql query being executed : select fieldname,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:36,712 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:36,714 [76] DEBUG index - Prepared sql query being executed : select accountname as entityname from vtiger_account where accountid = ? +01/18/13 11:04:36,714 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,717 [76] INFO Tracker - Track Item View: INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/18/13 11:04:36,717 [76] DEBUG index - Prepared sql query being executed : INSERT into vtiger_tracker (user_id, module_name, item_id, item_summary) values (?,?,?,?) +01/18/13 11:04:36,717 [76] DEBUG index - Prepared sql query parameters : [1,Accounts,2,vtiger] +01/18/13 11:04:36,720 [76] DEBUG Tracker - About to verify history size: SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/18/13 11:04:36,720 [76] INFO VT - PearDatabase ->ADODB getOne sql=SELECT count(*) from vtiger_tracker WHERE user_id='1' +01/18/13 11:04:36,723 [76] DEBUG Tracker - history size: (current, max)(5, 5) +01/18/13 11:04:36,723 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:36,723 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:36,723 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:36,723 [76] DEBUG index - including headers +01/18/13 11:04:36,723 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:36,724 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:36,728 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:36,728 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:36,730 [76] DEBUG index - Entering in function getTagCloudView(1) +01/18/13 11:04:36,730 [76] DEBUG index - Prepared sql query being executed : select visible from vtiger_homestuff where userid=? and stufftype='Tag Cloud' +01/18/13 11:04:36,730 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:36,733 [76] DEBUG index - Exiting from function getTagCloudView(1) +01/18/13 11:04:36,733 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:04:36,734 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:04:36,735 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,735 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:04:36,735 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,735 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:04:36,736 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,736 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:04:36,736 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,736 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:04:36,737 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,737 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:04:36,737 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,737 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:04:36,738 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,738 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:04:36,738 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:36,738 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:04:36,738 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:04:36,738 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:04:36,744 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,745 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,745 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:36,745 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:36,746 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,746 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:36,746 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,746 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:36,747 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:04:36,747 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,747 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:36,748 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,748 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:36,748 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:36,749 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,749 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:36,751 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,751 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:36,751 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:36,751 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,752 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:36,752 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,752 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:36,752 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:04:36,753 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,753 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:36,754 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,754 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:36,754 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:36,755 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,755 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:36,756 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,756 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:36,756 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:36,756 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,757 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:04:36,757 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,757 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:36,757 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:04:36,758 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,758 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:36,759 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,759 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:36,759 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:36,759 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,760 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:36,760 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,760 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:36,760 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:36,761 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,761 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:36,762 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,762 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:36,762 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:36,762 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,763 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:36,763 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,763 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:36,763 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:04:36,764 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,764 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:36,765 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,765 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:36,765 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:36,765 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,765 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:36,766 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,766 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:36,766 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:36,767 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,767 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:36,767 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,768 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:36,768 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:04:36,768 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,768 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:36,769 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,769 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:36,769 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:04:36,770 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,770 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:36,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,771 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:36,771 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:36,772 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,772 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:36,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,773 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:36,773 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:36,774 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,774 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:36,774 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,774 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:36,774 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:04:36,775 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,775 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:04:36,775 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:36) method ... +01/18/13 11:04:36,776 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:36,776 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:36) method ... +01/18/13 11:04:36,776 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:36,776 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:36,776 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:36,777 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:04:36,778 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:04:36,778 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:04:36,782 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,782 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,782 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,782 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,782 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,783 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,783 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,783 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,783 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,783 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,783 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,783 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,784 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,784 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,784 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,784 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,784 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,784 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,785 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,785 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,785 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,785 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,785 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,785 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,785 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,786 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,786 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,786 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,786 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,786 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,786 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,786 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,787 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,787 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,787 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,787 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,787 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,787 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,787 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,788 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,788 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,788 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,788 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,788 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,788 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,788 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,789 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,789 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,789 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,789 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,790 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,790 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,791 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,791 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,792 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:04:36,796 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:36,796 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,796 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:36,797 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:36,799 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,799 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,800 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:36,800 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,800 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:36,800 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,801 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:36,801 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,801 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:36,801 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,802 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,802 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:36,802 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,802 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:36,802 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,803 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:36,803 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,803 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:36,803 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,803 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:36,804 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,804 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:36,804 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,804 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:04:36,805 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,805 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:36,805 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,805 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:36,806 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,806 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:36,806 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,806 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:36,806 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,807 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:36,807 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,807 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:36,807 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,807 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:36,808 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,808 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:04:36,809 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,809 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:04:36,809 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,809 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:04:36,810 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,810 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:36,810 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,810 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:36,811 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,811 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:36,811 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,811 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:04:36,811 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,811 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:36,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,812 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:36,812 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,812 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:36,812 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,812 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:36,813 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,813 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:36,813 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:36,813 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:36,819 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:36,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,820 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:04:36,821 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,821 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:04:36,822 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,822 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:04:36,823 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,823 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:04:36,823 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,824 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:36,824 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:04:36,827 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:04:36,827 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,827 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:04:36,827 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:04:36,830 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:04:36,837 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,837 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,837 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:36,838 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:36,838 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,838 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:36,838 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:36,838 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,838 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:36,838 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,838 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,839 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:36,839 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:36,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,839 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:36,839 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:36,839 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,839 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:36,839 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:36,840 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,840 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:36,840 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:36,840 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,840 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:36,840 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:36,841 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,841 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:36,841 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:36,841 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,841 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:36,841 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:04:36,842 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,842 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:04:36,844 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:36,845 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,845 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:36,845 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:04:36,845 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,846 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:04:36,846 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:04:36,846 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,846 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:04:36,846 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:04:36,847 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,847 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:04:36,847 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:36,848 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,848 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:36,848 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:36,848 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,848 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:04:36,848 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:04:36,849 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,849 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:04:36,849 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:04:36,849 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,849 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:04:36,849 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:04:36,850 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,850 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:04:36,850 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:36,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,851 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:36,851 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:36,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,851 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:36,851 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:36,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,851 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:36,851 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:36,851 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,851 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:36,852 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:36,852 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,852 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:36,852 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:36,852 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,853 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:36,853 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:36,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,853 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:36,853 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:36,853 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,853 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:36,853 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:36,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,854 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:36,854 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:36,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,854 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:36,854 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:36,854 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,855 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:36,855 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:36,855 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,855 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:36,855 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:36,856 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,856 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:36,856 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:36,857 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,857 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:36,857 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,857 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,858 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:04:36,858 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:36,859 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:36,861 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:36,861 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:36,861 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,861 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,861 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:36,861 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:04:36,861 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,866 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/18/13 11:04:36,866 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,869 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/18/13 11:04:36,869 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,871 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/18/13 11:04:36,871 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,873 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/18/13 11:04:36,874 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:36,876 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,876 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,877 [76] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/18/13 11:04:36,877 [76] DEBUG index - id is 2 +01/18/13 11:04:36,877 [76] DEBUG index - name is vtiger +01/18/13 11:04:36,878 [76] INFO index - Account detail view +01/18/13 11:04:36,878 [76] DEBUG index - Entering getBlocks(Accounts,detail_view,,Array,) method ... +01/18/13 11:04:36,878 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:36,878 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:36,878 [76] DEBUG index - Prepared sql query being executed : select blockid,blocklabel,show_title,display_status from vtiger_blocks where tabid=? and detail_view=0 and visible = 0 order by sequence +01/18/13 11:04:36,878 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:36,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,881 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:36,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,881 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,881 [76] DEBUG index - function getTranslatedString(LBL_CUSTOM_INFORMATION) - translated to (客户信息) +01/18/13 11:04:36,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,882 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:36,882 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,882 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:04:36,883 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_field.*, '0' as readonly FROM vtiger_field WHERE vtiger_field.tabid=? AND vtiger_field.block IN (?,?,?,?) AND vtiger_field.displaytype IN (1,2,4) and vtiger_field.presence in (0,2) ORDER BY block,sequence +01/18/13 11:04:36,883 [76] DEBUG index - Prepared sql query parameters : [6,9,10,11,12] +01/18/13 11:04:36,894 [76] DEBUG index - Entering getDetailBlockInformation(Accounts,tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly,presence,defaultvalue,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type,masseditable,helpinfo,readonly +6,1,accountname,vtiger_account,1,2,accountname,Account Name,1,0,,100,1,9,1,V~M,0,1,BAS,0,,0 +6,2,account_no,vtiger_account,1,4,account_no,Account No,1,0,,100,2,9,1,V~O,3,,BAS,0,,0 +6,4,website,vtiger_account,1,17,website,Website,1,2,,100,3,9,1,V~O,2,3,BAS,1,,0 +6,3,phone,vtiger_account,1,11,phone,Phone,1,2,,100,4,9,1,V~O,2,2,BAS,1,,0 +6,6,tickersymbol,vtiger_account,1,1,tickersymbol,Ticker Symbol,1,2,,100,5,9,1,V~O,1,,BAS,1,,0 +6,5,fax,vtiger_account,1,11,fax,Fax,1,2,,100,6,9,1,V~O,1,,BAS,1,,0 +6,8,parentid,vtiger_account,1,51,account_id,Member Of,1,2,,100,7,9,1,I~O,1,,BAS,0,,0 +6,7,otherphone,vtiger_account,1,11,otherphone,Other Phone,1,2,,100,8,9,1,V~O,1,,ADV,1,,0 +6,10,employees,vtiger_account,1,7,employees,Employees,1,2,,100,9,9,1,I~O,1,,ADV,1,,0 +6,9,email1,vtiger_account,1,13,email1,Email,1,2,,100,10,9,1,E~O,1,,BAS,1,,0 +6,11,email2,vtiger_account,1,13,email2,Other Email,1,2,,100,11,9,1,E~O,1,,ADV,1,,0 +6,12,ownership,vtiger_account,1,1,ownership,Ownership,1,2,,100,12,9,1,V~O,1,,ADV,1,,0 +6,14,industry,vtiger_account,1,15,industry,industry,1,2,,100,13,9,1,V~O,1,,ADV,1,,0 +6,13,rating,vtiger_account,1,15,rating,Rating,1,2,,100,14,9,1,V~O,1,,ADV,1,,0 +6,16,account_type,vtiger_account,1,15,accounttype,Type,1,2,,100,15,9,1,V~O,1,,ADV,1,,0 +6,15,siccode,vtiger_account,1,1,siccode,SIC Code,1,2,,100,16,9,1,V~O,1,,ADV,1,,0 +6,18,emailoptout,vtiger_account,1,56,emailoptout,Email Opt Out,1,2,,100,17,9,1,C~O,1,,ADV,1,,0 +6,17,annualrevenue,vtiger_account,1,71,annual_revenue,Annual Revenue,1,2,,100,18,9,1,I~O,1,,ADV,1,,0 +6,20,smownerid,vtiger_crmentity,1,53,assigned_user_id,Assigned To,1,0,,100,19,9,1,V~M,0,4,BAS,1,,0 +6,19,notify_owner,vtiger_account,1,56,notify_owner,Notify Owner,1,2,,10,20,9,1,C~O,1,,ADV,1,,0 +6,22,modifiedtime,vtiger_crmentity,1,70,modifiedtime,Modified Time,1,0,,100,21,9,2,DT~O,3,,BAS,0,,0 +6,21,createdtime,vtiger_crmentity,1,70,createdtime,Created Time,1,0,,100,22,9,2,DT~O,3,,BAS,0,,0 +6,24,bill_street,vtiger_accountbillads,1,21,bill_street,Billing Address,1,2,,100,1,11,1,V~O,1,,BAS,1,,0 +6,25,ship_street,vtiger_accountshipads,1,21,ship_street,Shipping Address,1,2,,100,2,11,1,V~O,1,,BAS,1,,0 +6,34,bill_pobox,vtiger_accountbillads,1,1,bill_pobox,Billing Po Box,1,2,,100,3,11,1,V~O,1,,BAS,1,,0 +6,35,ship_pobox,vtiger_accountshipads,1,1,ship_pobox,Shipping Po Box,1,2,,100,4,11,1,V~O,1,,BAS,1,,0 +6,26,bill_city,vtiger_accountbillads,1,1,bill_city,Billing City,1,2,,100,5,11,1,V~O,1,,BAS,1,,0 +6,27,ship_city,vtiger_accountshipads,1,1,ship_city,Shipping City,1,2,,100,6,11,1,V~O,1,,BAS,1,,0 +6,28,bill_state,vtiger_accountbillads,1,1,bill_state,Billing State,1,2,,100,7,11,1,V~O,1,,BAS,1,,0 +6,29,ship_state,vtiger_accountshipads,1,1,ship_state,Shipping State,1,2,,100,8,11,1,V~O,1,,BAS,1,,0 +6,30,bill_code,vtiger_accountbillads,1,1,bill_code,Billing Code,1,2,,100,9,11,1,V~O,1,,BAS,1,,0 +6,31,ship_code,vtiger_accountshipads,1,1,ship_code,Shipping Code,1,2,,100,10,11,1,V~O,1,,BAS,1,,0 +6,32,bill_country,vtiger_accountbillads,1,1,bill_country,Billing Country,1,2,,100,11,11,1,V~O,1,,BAS,1,,0 +6,33,ship_country,vtiger_accountshipads,1,1,ship_country,Shipping Country,1,2,,100,12,11,1,V~O,1,,BAS,1,,0 +6,36,description,vtiger_crmentity,1,19,description,Description,1,2,,100,1,12,1,V~O,1,,BAS,1,,0 +,Array,6,Array) method ... +01/18/13 11:04:36,894 [76] DEBUG index - Entering getDetailViewOutputHtml(2,accountname,Account Name,Array,1,6) method ... +01/18/13 11:04:36,895 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,895 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,896 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:36,896 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,896 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,896 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,896 [76] DEBUG index - Entering getDetailViewOutputHtml(4,account_no,Account No,Array,1,6) method ... +01/18/13 11:04:36,897 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,897 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,897 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:04:36,897 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,898 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,898 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,898 [76] DEBUG index - Entering getDetailViewOutputHtml(17,website,Website,Array,1,6) method ... +01/18/13 11:04:36,899 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,899 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,899 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:36,899 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,899 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,899 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,900 [76] DEBUG index - Entering getDetailViewOutputHtml(11,phone,Phone,Array,1,6) method ... +01/18/13 11:04:36,901 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,901 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,901 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:36,901 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,901 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,901 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,902 [76] DEBUG index - Entering getDetailViewOutputHtml(1,tickersymbol,Ticker Symbol,Array,1,6) method ... +01/18/13 11:04:36,903 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,903 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,903 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:04:36,903 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,903 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,903 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,904 [76] DEBUG index - Entering getDetailViewOutputHtml(11,fax,Fax,Array,1,6) method ... +01/18/13 11:04:36,904 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,904 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,905 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:36,905 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,905 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,905 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,905 [76] DEBUG index - Entering getDetailViewOutputHtml(51,account_id,Member Of,Array,1,6) method ... +01/18/13 11:04:36,906 [76] DEBUG index - Entering getAccountName(0) method ... +01/18/13 11:04:36,906 [76] INFO index - in getAccountName 0 +01/18/13 11:04:36,906 [76] DEBUG index - Prepared sql query being executed : select accountname from vtiger_account where accountid=? +01/18/13 11:04:36,906 [76] DEBUG index - Prepared sql query parameters : [0] +01/18/13 11:04:36,909 [76] DEBUG index - Exiting getAccountName method ... +01/18/13 11:04:36,909 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,909 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,909 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:04:36,909 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,909 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,910 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,910 [76] DEBUG index - Entering getDetailViewOutputHtml(11,otherphone,Other Phone,Array,1,6) method ... +01/18/13 11:04:36,911 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,911 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,911 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:04:36,911 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,911 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,911 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,912 [76] DEBUG index - Entering getDetailViewOutputHtml(7,employees,Employees,Array,1,6) method ... +01/18/13 11:04:36,913 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,913 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,913 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:04:36,913 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,913 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,913 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,914 [76] DEBUG index - Entering getDetailViewOutputHtml(13,email1,Email,Array,1,6) method ... +01/18/13 11:04:36,915 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,915 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,915 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:36,915 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,915 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,915 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,916 [76] DEBUG index - Entering getDetailViewOutputHtml(13,email2,Other Email,Array,1,6) method ... +01/18/13 11:04:36,917 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,917 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,917 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:04:36,917 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,917 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,917 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,918 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ownership,Ownership,Array,1,6) method ... +01/18/13 11:04:36,918 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,919 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,919 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:04:36,919 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,919 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,919 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,919 [76] DEBUG index - Entering getDetailViewOutputHtml(15,industry,industry,Array,1,6) method ... +01/18/13 11:04:36,920 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,920 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,920 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:04:36,921 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:04:36,921 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:04:36,921 [76] DEBUG index - Entering getRoleInformation(H2) method ... +01/18/13 11:04:36,921 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where roleid=? +01/18/13 11:04:36,921 [76] DEBUG index - Prepared sql query parameters : [H2] +01/18/13 11:04:36,924 [76] DEBUG index - Exiting getRoleInformation method ... +01/18/13 11:04:36,924 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_role where parentrole like ? order by parentrole asc +01/18/13 11:04:36,924 [76] DEBUG index - Prepared sql query parameters : [H1::H2::%] +01/18/13 11:04:36,927 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:04:36,927 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:04:36,927 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,927 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:04:36,932 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 237 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #503 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #503 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:04:36,933 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:36,933 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:36,936 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,936 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:04:36,936 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,936 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:04:36,940 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,940 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:04:36,940 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,940 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:04:36,943 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,944 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:04:36,944 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:04:36,944 [76] DEBUG index - Prepared sql query parameters : [industry] +01/18/13 11:04:36,946 [76] DEBUG index - Prepared sql query being executed : SELECT distinct industry FROM vtiger_industry inner join vtiger_role2picklist on vtiger_industry.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:04:36,946 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:04:36,975 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:04:36,975 [76] DEBUG index - function getTranslatedString(Food & Beverage) - translated to (饮食) +01/18/13 11:04:36,975 [76] DEBUG index - function getTranslatedString(Government) - translated to (政府) +01/18/13 11:04:36,975 [76] DEBUG index - function getTranslatedString(Healthcare) - translated to (健康照护) +01/18/13 11:04:36,975 [76] DEBUG index - function getTranslatedString(Hospitality) - translated to (医院) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Insurance) - translated to (保险) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Machinery) - translated to (机械) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Manufacturing) - translated to (工厂) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Media) - translated to (媒体) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Not For Profit) - translated to (非营利) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Recreation) - translated to (娱乐中心) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Retail) - translated to (零售) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Shipping) - translated to (运输) +01/18/13 11:04:36,976 [76] DEBUG index - function getTranslatedString(Technology) - translated to (科技) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Telecommunications) - translated to (通讯) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Transportation) - translated to (传输) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Utilities) - translated to (工具) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Real Estate) - translated to (房地产公司) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Private Enterprise) - translated to (民营企业) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(Construction Company) - translated to (建筑公司) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(LED Manufacturer) - translated to (LED 工程公司) +01/18/13 11:04:36,977 [76] DEBUG index - function getTranslatedString(LED Lighting Company) - translated to (LED 照明公司) +01/18/13 11:04:36,978 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:36,978 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:36,978 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:36,978 [76] DEBUG index - Entering getDetailViewOutputHtml(15,rating,Rating,Array,1,6) method ... +01/18/13 11:04:36,979 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:36,979 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:36,979 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:04:36,980 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:04:36,980 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:04:36,980 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:04:36,980 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:04:36,980 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,980 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:04:36,985 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 237 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #511 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #511 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:04:36,986 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:36,986 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:36,988 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,988 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:04:36,988 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,988 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:04:36,994 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,994 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:04:36,994 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:36,994 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:04:36,998 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:36,998 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:04:36,998 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:04:36,998 [76] DEBUG index - Prepared sql query parameters : [rating] +01/18/13 11:04:36,1000 [76] DEBUG index - Prepared sql query being executed : SELECT distinct rating FROM vtiger_rating inner join vtiger_role2picklist on vtiger_rating.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:04:36,1000 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:04:37,009 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:04:37,009 [76] DEBUG index - function getTranslatedString(Acquired) - translated to (取得) +01/18/13 11:04:37,009 [76] DEBUG index - function getTranslatedString(Active) - translated to (启用) +01/18/13 11:04:37,009 [76] DEBUG index - function getTranslatedString(Market Failed) - translated to (市场失利) +01/18/13 11:04:37,009 [76] DEBUG index - function getTranslatedString(Project Cancelled) - translated to (项目取消) +01/18/13 11:04:37,010 [76] DEBUG index - function getTranslatedString(Shutdown) - translated to (关闭) +01/18/13 11:04:37,010 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,010 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,010 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,011 [76] DEBUG index - Entering getDetailViewOutputHtml(15,accounttype,Type,Array,1,6) method ... +01/18/13 11:04:37,011 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,011 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,012 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:37,012 [76] DEBUG index - Entering getSubordinateRoleAndUsers(H2) method ... +01/18/13 11:04:37,012 [76] DEBUG index - Entering getRoleSubordinates(H2) method ... +01/18/13 11:04:37,012 [76] DEBUG index - Exiting getRoleSubordinates method ... +01/18/13 11:04:37,012 [76] DEBUG index - Entering getRoleUsers(H3) method ... +01/18/13 11:04:37,012 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:37,012 [76] DEBUG index - Prepared sql query parameters : [H3] +01/18/13 11:04:37,017 [76] INFO index - In getFullNameFromQResult(ADORecordSet_mysql Object +( + [databaseType] => mysql + [canSeek] => 1 + [dataProvider] => native + [fields] => + [blobSize] => 100 + [sql] => select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid='H3' + [EOF] => 1 + [emptyTimeStamp] =>   + [emptyDate] =>   + [debug] => + [timeCreated] => 0 + [bind] => + [fetchMode] => 3 + [connection] => ADODB_mysql Object + ( + [databaseType] => mysql + [dataProvider] => mysql + [hasInsertID] => 1 + [hasAffectedRows] => 1 + [metaTablesSQL] => SHOW TABLES + [metaColumnsSQL] => SHOW COLUMNS FROM %s + [fmtTimeStamp] => 'Y-m-d H:i:s' + [hasLimit] => 1 + [hasMoveFirst] => 1 + [hasGenID] => 1 + [isoDates] => 1 + [sysDate] => CURDATE() + [sysTimeStamp] => NOW() + [hasTransactions] => + [forceNewConnect] => + [poorAffectedRows] => 1 + [clientFlags] => 0 + [substr] => substring + [nameQuote] => ` + [compat323] => + [_genIDSQL] => update %s set id=LAST_INSERT_ID(id+1); + [_genSeqSQL] => create table %s (id int not null) + [_genSeq2SQL] => insert into %s values (%s) + [_dropSeqSQL] => drop table %s + [database] => ossezdemo_vtiger + [host] => hyc-pc:3306 + [user] => demo.ossez.com + [password] => demo.ossez.com + [debug] => + [maxblobsize] => 262144 + [concat_operator] => + + [length] => length + [random] => rand() + [upperCase] => upper + [fmtDate] => 'Y-m-d' + [true] => 1 + [false] => 0 + [replaceQuote] => \' + [charSet] => + [metaDatabasesSQL] => + [uniqueOrderBy] => + [emptyDate] =>   + [emptyTimeStamp] =>   + [lastInsID] => + [hasTop] => + [readOnly] => + [genID] => 237 + [raiseErrorFn] => + [cacheSecs] => 3600 + [arrayClass] => ADORecordSet_array + [noNullStrings] => + [numCacheHits] => 0 + [numCacheMisses] => 0 + [pageExecuteCountRows] => 1 + [uniqueSort] => + [leftOuter] => + [rightOuter] => + [ansiOuter] => + [autoRollback] => + [fnExecute] => + [fnCacheExecute] => + [blobEncodeType] => + [rsPrefix] => ADORecordSet_ + [autoCommit] => 1 + [transOff] => 0 + [transCnt] => 0 + [fetchMode] => + [_oldRaiseFn] => + [_transOK] => + [_connectionID] => Resource id #50 + [_errorMsg] => + [_errorCode] => + [_queryID] => Resource id #519 + [_isPersistentConnection] => 1 + [_bindInputArray] => + [_evalAll] => + [_affected] => + [_logsql] => + [_transmode] => + [databaseName] => ossezdemo_vtiger + ) + + [_numOfRows] => 1 + [_numOfFields] => 60 + [_queryID] => Resource id #519 + [_currentRow] => 1 + [_closed] => + [_inited] => 1 + [_obj] => + [_names] => + [_currentPage] => -1 + [_atFirstPage] => + [_atLastPage] => + [_lastPageNo] => -1 + [_maxRecordCount] => 0 + [datetime] => + [adodbFetchMode] => 0 +) + - 0-Users) method ... +01/18/13 11:04:37,018 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:37,018 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:37,021 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:37,021 [76] DEBUG index - Entering getRoleUsers(H4) method ... +01/18/13 11:04:37,021 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:37,021 [76] DEBUG index - Prepared sql query parameters : [H4] +01/18/13 11:04:37,028 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:37,028 [76] DEBUG index - Entering getRoleUsers(H5) method ... +01/18/13 11:04:37,028 [76] DEBUG index - Prepared sql query being executed : select vtiger_user2role.*,vtiger_users.* from vtiger_user2role inner join vtiger_users on vtiger_users.id=vtiger_user2role.userid where roleid=? +01/18/13 11:04:37,028 [76] DEBUG index - Prepared sql query parameters : [H5] +01/18/13 11:04:37,032 [76] DEBUG index - Exiting getRoleUsers method ... +01/18/13 11:04:37,032 [76] DEBUG index - Exiting getSubordinateRoleAndUsers method ... +01/18/13 11:04:37,032 [76] DEBUG index - Prepared sql query being executed : select picklistid from vtiger_picklist where name = ? +01/18/13 11:04:37,032 [76] DEBUG index - Prepared sql query parameters : [accounttype] +01/18/13 11:04:37,034 [76] DEBUG index - Prepared sql query being executed : SELECT distinct accounttype FROM vtiger_accounttype inner join vtiger_role2picklist on vtiger_accounttype.picklist_valueid=vtiger_role2picklist.picklistvalueid and roleid in (?,?,?,?) order by sortid +01/18/13 11:04:37,034 [76] DEBUG index - Prepared sql query parameters : [H2,H3,H4,H5] +01/18/13 11:04:37,045 [76] DEBUG index - function getTranslatedString(--None--) - translated to (--无--) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Analyst) - translated to (分析师) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Competitor) - translated to (竞争者) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Customer) - translated to (客户) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Integrator) - translated to (整合者) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Investor) - translated to (投资者) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Partner) - translated to (伙伴) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Press) - translated to (新闻) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Prospect) - translated to (潜在客户) +01/18/13 11:04:37,046 [76] DEBUG index - function getTranslatedString(Reseller) - translated to (盘商) +01/18/13 11:04:37,047 [76] DEBUG index - function getTranslatedString(Other) - translated to (其它) +01/18/13 11:04:37,047 [76] DEBUG index - function getTranslatedString(State-owned Enterprises) - translated to (国有企业) +01/18/13 11:04:37,047 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,047 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,047 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,048 [76] DEBUG index - Entering getDetailViewOutputHtml(1,siccode,SIC Code,Array,1,6) method ... +01/18/13 11:04:37,048 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,049 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,049 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:04:37,049 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,049 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,049 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,050 [76] DEBUG index - Entering getDetailViewOutputHtml(56,emailoptout,Email Opt Out,Array,1,6) method ... +01/18/13 11:04:37,050 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,050 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,051 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:04:37,051 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,051 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,051 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,051 [76] DEBUG index - Entering getDetailViewOutputHtml(71,annual_revenue,Annual Revenue,Array,1,6) method ... +01/18/13 11:04:37,052 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,052 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,052 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:04:37,052 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:04:37,053 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:04:37,053 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:04:37,053 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:37,058 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:04:37,058 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:04:37,058 [76] DEBUG index - Entering convertFromDollar(0,1.000) method ... +01/18/13 11:04:37,058 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:04:37,058 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,058 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,058 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,059 [76] DEBUG index - Entering getDetailViewOutputHtml(53,assigned_user_id,Assigned To,Array,1,6) method ... +01/18/13 11:04:37,060 [76] DEBUG index - Prepared sql query being executed : SELECT count(*) as count from vtiger_users where id = ? +01/18/13 11:04:37,060 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:37,069 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:04:37,069 [76] INFO index - in getOwnerName 1 +01/18/13 11:04:37,069 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:37,069 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:37,069 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:37,072 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:04:37,072 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:37,074 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,074 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,074 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:37,074 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,074 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,075 [76] DEBUG index - Entering get_group_options() method ... +01/18/13 11:04:37,075 [76] DEBUG index - Prepared sql query being executed : select groupname,groupid from vtiger_groups +01/18/13 11:04:37,077 [76] DEBUG index - Exiting get_group_options method ... +01/18/13 11:04:37,077 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:37,078 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:37,078 [76] DEBUG index - Prepared sql query being executed : SELECT id, user_name,first_name,last_name from vtiger_users WHERE status=? OR id=? order by user_name ASC +01/18/13 11:04:37,078 [76] DEBUG index - Prepared sql query parameters : [Active,1] +01/18/13 11:04:37,082 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:37,082 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:37,084 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:37,084 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:37,087 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:37,087 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:37,087 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:37,087 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:37,087 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:37,087 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:37,087 [76] DEBUG index - Entering get_user_array(,Active,1,) method ... +01/18/13 11:04:37,088 [76] DEBUG index - Sharing is Public. All vtiger_users should be listed +01/18/13 11:04:37,088 [76] DEBUG index - Prepared sql query being executed : SELECT groupid, groupname from vtiger_groups order by groupname ASC +01/18/13 11:04:37,090 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:37,091 [76] DEBUG index - Exiting get_user_array method ... +01/18/13 11:04:37,091 [76] DEBUG index - Entering get_select_options_array (Array,1,false) method ... +01/18/13 11:04:37,091 [76] DEBUG index - Exiting get_select_options_array method ... +01/18/13 11:04:37,091 [76] DEBUG index - Entering get_options_array_seperate_key (Array,Array,1,false) method ... +01/18/13 11:04:37,091 [76] DEBUG index - Exiting get_options_array_seperate_key method ... +01/18/13 11:04:37,091 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,091 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,091 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,092 [76] DEBUG index - Entering getDetailViewOutputHtml(56,notify_owner,Notify Owner,Array,1,6) method ... +01/18/13 11:04:37,093 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,093 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,093 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:37,093 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,093 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,093 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,094 [76] DEBUG index - Entering getDetailViewOutputHtml(70,modifiedtime,Modified Time,Array,1,6) method ... +01/18/13 11:04:37,095 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,095 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,095 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:04:37,095 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/18/13 11:04:37,095 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:37,095 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:10) method ... +01/18/13 11:04:37,096 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:37,096 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,096 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,096 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,096 [76] DEBUG index - Entering getDetailViewOutputHtml(70,createdtime,Created Time,Array,1,6) method ... +01/18/13 11:04:37,097 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,097 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,097 [76] DEBUG index - function getTranslatedString(Created Time) - translated to (建立时间) +01/18/13 11:04:37,097 [76] DEBUG index - Entering getDisplayDate(2012-12-06 03:40:32) method ... +01/18/13 11:04:37,098 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:37,098 [76] DEBUG index - Entering getDisplayTime(2012-12-06 03:40:32) method ... +01/18/13 11:04:37,098 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:37,098 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,098 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,098 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,099 [76] DEBUG index - Entering getDetailViewOutputHtml(21,bill_street,Billing Address,Array,1,6) method ... +01/18/13 11:04:37,100 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,100 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,100 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:04:37,100 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,100 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,100 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,101 [76] DEBUG index - Entering getDetailViewOutputHtml(21,ship_street,Shipping Address,Array,1,6) method ... +01/18/13 11:04:37,102 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,102 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,102 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:04:37,102 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,102 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,102 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,103 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_pobox,Billing Po Box,Array,1,6) method ... +01/18/13 11:04:37,103 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,103 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,104 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:04:37,104 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,104 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,104 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,105 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_pobox,Shipping Po Box,Array,1,6) method ... +01/18/13 11:04:37,105 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,105 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,105 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:04:37,106 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,106 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,106 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,106 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_city,Billing City,Array,1,6) method ... +01/18/13 11:04:37,107 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,107 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,107 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:37,107 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,107 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,108 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,108 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_city,Shipping City,Array,1,6) method ... +01/18/13 11:04:37,109 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,109 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,109 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:04:37,109 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,109 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,109 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,110 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_state,Billing State,Array,1,6) method ... +01/18/13 11:04:37,111 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,111 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,111 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:04:37,111 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,111 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,111 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,112 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_state,Shipping State,Array,1,6) method ... +01/18/13 11:04:37,112 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,113 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,113 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:04:37,113 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,113 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,113 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,114 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_code,Billing Code,Array,1,6) method ... +01/18/13 11:04:37,114 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,114 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,114 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:04:37,115 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,115 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,115 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,115 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_code,Shipping Code,Array,1,6) method ... +01/18/13 11:04:37,116 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,116 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,116 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:04:37,116 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,116 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,117 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,117 [76] DEBUG index - Entering getDetailViewOutputHtml(1,bill_country,Billing Country,Array,1,6) method ... +01/18/13 11:04:37,118 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,118 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,118 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:04:37,118 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,118 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,119 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,119 [76] DEBUG index - Entering getDetailViewOutputHtml(1,ship_country,Shipping Country,Array,1,6) method ... +01/18/13 11:04:37,120 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,120 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,120 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:04:37,120 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,120 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,120 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,121 [76] DEBUG index - Entering getDetailViewOutputHtml(19,description,Description,Array,1,6) method ... +01/18/13 11:04:37,122 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,122 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,122 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:37,122 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:37,122 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:37,122 [76] DEBUG index - Exiting getDetailViewOutputHtml method ... +01/18/13 11:04:37,122 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,123 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:37,123 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,123 [76] DEBUG index - function getTranslatedString(LBL_ACCOUNT_INFORMATION) - translated to (账号信息) +01/18/13 11:04:37,123 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,123 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:37,123 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,123 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,124 [76] DEBUG index - function getTranslatedString(LBL_ADDRESS_INFORMATION) - translated to (地址信息) +01/18/13 11:04:37,124 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,124 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,124 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:04:37,124 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,124 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,124 [76] DEBUG index - function getTranslatedString(LBL_DESCRIPTION_INFORMATION) - translated to (描述信息) +01/18/13 11:04:37,124 [76] DEBUG index - Exiting getDetailBlockInformation method ... +01/18/13 11:04:37,124 [76] DEBUG index - Exiting getBlocks method ... +01/18/13 11:04:37,124 [76] DEBUG index - Entering updateInfo(2) method ... +01/18/13 11:04:37,125 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:04:37,125 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:37,129 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:04:37,129 [76] INFO index - in getOwnerName 1 +01/18/13 11:04:37,129 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:37,129 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:37,129 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:37,131 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:04:37,132 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:37,134 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/18/13 11:04:37,134 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:37,134 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:04:37,134 [76] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/18/13 11:04:37,134 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,134 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,135 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:04:37,135 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:37,135 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:37,136 [76] DEBUG index - Prepared sql query being executed : select int_mailer from vtiger_mail_accounts where user_id=? +01/18/13 11:04:37,137 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:37,139 [76] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/18/13 11:04:37,140 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,140 [76] DEBUG index - Entering isPermitted(Accounts,Delete,2) method ... +01/18/13 11:04:37,140 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,141 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:37,141 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,141 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_ws_entity where name=? +01/18/13 11:04:37,141 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:37,144 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,144 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,145 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,145 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,145 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,146 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,146 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:37,146 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,146 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,147 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,147 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,147 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,147 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,147 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:37,147 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,148 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:37,148 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,148 [76] DEBUG index - Prepared sql query being executed : select distinct block,vtiger_field.tabid,name,blocklabel from vtiger_field inner join vtiger_blocks on vtiger_blocks.blockid=vtiger_field.block inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where displaytype != 3 and vtiger_tab.name in (?) and vtiger_field.presence in (0,2) order by block +01/18/13 11:04:37,148 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:37,154 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,154 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,155 [76] DEBUG index - Prepared sql query being executed : select *, '0' as readonly from vtiger_field where tabid =? and block in (?,?,?) and displaytype in (1,2,3,4) +01/18/13 11:04:37,155 [76] DEBUG index - Prepared sql query parameters : [6,9,11,12] +01/18/13 11:04:37,174 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:37,175 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,175 [76] DEBUG index - Entering fetchWordTemplateList(Accounts) method ... +01/18/13 11:04:37,176 [76] DEBUG index - Prepared sql query being executed : select templateid, filename from vtiger_wordtemplates where module =? +01/18/13 11:04:37,176 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:37,178 [76] DEBUG index - Exiting fetchWordTemplateList method ... +01/18/13 11:04:37,178 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,178 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,178 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:37,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:37,178 [76] DEBUG index - Prepared sql query being executed : SELECT fieldlabel,fieldname,typeofdata FROM vtiger_field + WHERE displaytype IN (1,3) AND presence in (0,2) AND tabid=? +01/18/13 11:04:37,179 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:37,181 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,182 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,182 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:37,182 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,182 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,182 [76] DEBUG index - function getTranslatedString(Account No) - translated to (帐号) +01/18/13 11:04:37,182 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,182 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,183 [76] DEBUG index - function getTranslatedString(Phone) - translated to (电话) +01/18/13 11:04:37,183 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,183 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,183 [76] DEBUG index - function getTranslatedString(Website) - translated to (网址) +01/18/13 11:04:37,183 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,183 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,183 [76] DEBUG index - function getTranslatedString(Fax) - translated to (传真) +01/18/13 11:04:37,183 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,184 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,184 [76] DEBUG index - function getTranslatedString(Ticker Symbol) - translated to (股票代码) +01/18/13 11:04:37,184 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,184 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,184 [76] DEBUG index - function getTranslatedString(Other Phone) - translated to (其它电话) +01/18/13 11:04:37,184 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,184 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,184 [76] DEBUG index - function getTranslatedString(Member Of) - translated to (成员) +01/18/13 11:04:37,184 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,185 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,185 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:37,185 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,185 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,185 [76] DEBUG index - function getTranslatedString(Employees) - translated to (员工) +01/18/13 11:04:37,185 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,185 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,185 [76] DEBUG index - function getTranslatedString(Other Email) - translated to (其它电子邮件) +01/18/13 11:04:37,186 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,186 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,186 [76] DEBUG index - function getTranslatedString(Ownership) - translated to (拥有者) +01/18/13 11:04:37,186 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,186 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,186 [76] DEBUG index - function getTranslatedString(Rating) - translated to (评价) +01/18/13 11:04:37,186 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,186 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,186 [76] DEBUG index - function getTranslatedString(industry) - translated to (行业类别) +01/18/13 11:04:37,187 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,187 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,187 [76] DEBUG index - function getTranslatedString(SIC Code) - translated to (营业执照编号) +01/18/13 11:04:37,187 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,187 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,187 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:37,187 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,187 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,187 [76] DEBUG index - function getTranslatedString(Annual Revenue) - translated to (年营业额) +01/18/13 11:04:37,188 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,188 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,188 [76] DEBUG index - function getTranslatedString(Email Opt Out) - translated to (拒绝电子邮件打扰) +01/18/13 11:04:37,188 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,188 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,188 [76] DEBUG index - function getTranslatedString(Notify Owner) - translated to (提醒负责人) +01/18/13 11:04:37,188 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,188 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,188 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:37,189 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,189 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,189 [76] DEBUG index - function getTranslatedString(Last Modified By) - translated to (Last Modified By) +01/18/13 11:04:37,189 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,189 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,189 [76] DEBUG index - function getTranslatedString(Billing Address) - translated to (账单地址) +01/18/13 11:04:37,189 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,189 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,189 [76] DEBUG index - function getTranslatedString(Shipping Address) - translated to (送货地址) +01/18/13 11:04:37,190 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,190 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,190 [76] DEBUG index - function getTranslatedString(Billing City) - translated to (城市及区) +01/18/13 11:04:37,190 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,190 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,190 [76] DEBUG index - function getTranslatedString(Shipping City) - translated to (城市及区) +01/18/13 11:04:37,190 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,190 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,190 [76] DEBUG index - function getTranslatedString(Billing State) - translated to (省、直辖市) +01/18/13 11:04:37,191 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,191 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,191 [76] DEBUG index - function getTranslatedString(Shipping State) - translated to (省、直辖市) +01/18/13 11:04:37,191 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,191 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,191 [76] DEBUG index - function getTranslatedString(Billing Code) - translated to (邮政编码) +01/18/13 11:04:37,191 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,191 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,191 [76] DEBUG index - function getTranslatedString(Shipping Code) - translated to (邮政编码) +01/18/13 11:04:37,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,192 [76] DEBUG index - function getTranslatedString(Billing Country) - translated to (国家) +01/18/13 11:04:37,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,192 [76] DEBUG index - function getTranslatedString(Shipping Country) - translated to (国家) +01/18/13 11:04:37,192 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,192 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,192 [76] DEBUG index - function getTranslatedString(Billing Po Box) - translated to (邮政信箱) +01/18/13 11:04:37,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,193 [76] DEBUG index - function getTranslatedString(Shipping Po Box) - translated to (邮政信箱) +01/18/13 11:04:37,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,193 [76] DEBUG index - function getTranslatedString(Description) - translated to (描述) +01/18/13 11:04:37,193 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,193 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,193 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:37,194 [76] DEBUG index - Entering split_validationdataArray(Array) method ... +01/18/13 11:04:37,194 [76] DEBUG index - Exiting split_validationdataArray method ... +01/18/13 11:04:37,194 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:04:37,194 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:37,195 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,195 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:04:37,195 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,195 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:04:37,196 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,196 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:04:37,197 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,197 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:37,197 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,197 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:04:37,198 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,198 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:37,199 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,199 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:04:37,199 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,199 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:04:37,200 [76] DEBUG index - Entering isPermitted(Accounts,EditView,2) method ... +01/18/13 11:04:37,200 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,201 [76] DEBUG index - Entering isPermittedCustomView(4,DetailView,Accounts) method.... +01/18/13 11:04:37,202 [76] DEBUG index - Prepared sql query being executed : SELECT status, userid FROM vtiger_customview WHERE cvid=? +01/18/13 11:04:37,202 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:37,204 [76] DEBUG index - Entering when status=0 +01/18/13 11:04:37,204 [76] DEBUG index - Permission @@@@@@@@@@@@@@@@@@@@@@@@@@@ : yes +01/18/13 11:04:37,204 [76] DEBUG index - Exiting isPermittedCustomView(4,DetailView,Accounts) method.... +01/18/13 11:04:37,207 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,207 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,207 [76] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/18/13 11:04:37,207 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:37,211 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:37,212 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,212 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:37,212 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:37,215 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:04:37,215 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:37,215 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,215 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:37,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:37,215 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:37,215 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:37,215 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:37,215 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,216 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:37,216 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,216 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:04:37,216 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:04:37,229 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:37,229 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,229 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:37,230 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,230 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,230 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:37,231 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:04:37,231 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:37,231 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,231 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:37,232 [76] DEBUG index - Prepared sql query being executed : UPDATE vtiger_crmentity set viewedtime=? WHERE crmid=? AND smownerid=? +01/18/13 11:04:37,232 [76] DEBUG index - Prepared sql query parameters : [2013-01-18 11:04:37,2,1] +01/18/13 11:04:37,239 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,239 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,239 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN (?,?,?) +01/18/13 11:04:37,239 [76] DEBUG index - Prepared sql query parameters : [6,DETAILVIEWBASIC,DETAILVIEW,DETAILVIEWWIDGET] +01/18/13 11:04:37,252 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,253 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,253 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,253 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:04:37,253 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,253 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:04:37,254 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,254 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,254 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,254 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,254 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,254 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,254 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,254 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,254 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,255 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,255 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,255 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,255 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,255 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,255 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,255 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,255 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,256 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:37,256 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,256 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,256 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:04:37,256 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,256 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,256 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:04:37,257 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,257 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,257 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:37,257 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,257 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,257 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:37,257 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,257 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,257 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:37,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,258 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:04:37,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,258 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:37,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,258 [76] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/18/13 11:04:37,258 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,259 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:37,259 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,259 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,259 [76] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/18/13 11:04:37,259 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,259 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,259 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:37,259 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,259 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,259 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:37,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,260 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,260 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:37,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,260 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,260 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:37,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,260 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,260 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:37,260 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,261 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:37,261 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,261 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:37,261 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,261 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,261 [76] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/18/13 11:04:37,366 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,366 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,366 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,366 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,367 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,367 [76] DEBUG index - Entering isPermitted(ModComments,DetailView,) method ... +01/18/13 11:04:37,367 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:37,370 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:37,370 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,371 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:37,371 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,371 [76] DEBUG index - function getTranslatedString(LBL_MODCOMMENTS_INFORMATION) - translated to (评论信息) +01/18/13 11:04:37,371 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,371 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,372 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,372 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,372 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,372 [76] DEBUG index - Prepared sql query being executed : SELECT distinct fieldname, columnname, relmodule FROM vtiger_field INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid WHERE uitype='10' AND vtiger_fieldmodulerel.module=? +01/18/13 11:04:37,372 [76] DEBUG index - Prepared sql query parameters : [ModComments] +01/18/13 11:04:37,375 [76] DEBUG lead - Entering Leads() method ... +01/18/13 11:04:37,375 [76] DEBUG index - Entering getColumnFields(Leads) method ... +01/18/13 11:04:37,376 [76] DEBUG index - in getColumnFields Leads +01/18/13 11:04:37,376 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:37,376 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,376 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:37,376 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,376 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:37,376 [76] DEBUG index - Prepared sql query parameters : [7] +01/18/13 11:04:37,384 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:37,384 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,384 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,384 [76] DEBUG lead - Exiting Lead method ... +01/18/13 11:04:37,385 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:37,385 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:37,385 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:37,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,385 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:37,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,386 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:37,386 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:37,397 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:37,397 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,397 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,397 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,397 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,398 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,398 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,398 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,398 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,398 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,398 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,398 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,399 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,399 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:04:37,399 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:04:37,399 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:37,399 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,399 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:37,399 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,400 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:37,400 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:37,415 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:37,415 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,416 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,417 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,418 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,418 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,418 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,418 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,420 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:37,420 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:37,420 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:37,420 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,420 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:37,421 [76] DEBUG index - Entering getTabid(ModComments) method ... +01/18/13 11:04:37,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:37,421 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_modcomments.*, vtiger_modcommentscf.* FROM vtiger_modcomments INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_modcomments.modcommentsid INNER JOIN vtiger_modcommentscf ON vtiger_modcommentscf.modcommentsid = vtiger_modcomments.modcommentsid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_leaddetails ON vtiger_leaddetails.leadid = vtiger_modcomments.related_to LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_modcomments.related_to LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_modcomments.related_to LEFT JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_modcomments.related_to LEFT JOIN vtiger_projecttask ON vtiger_projecttask.projecttaskid = vtiger_modcomments.related_to LEFT JOIN vtiger_project ON vtiger_project.projectid = vtiger_modcomments.related_to WHERE vtiger_crmentity.deleted = 0 AND vtiger_modcomments.related_to=? ORDER BY vtiger_modcomments.modcommentsid DESC +01/18/13 11:04:37,422 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:37,441 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:37,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:37,441 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,441 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,441 [76] DEBUG index - function getTranslatedString(LBL_ADD_NOTE) - translated to (新增 文档) +01/18/13 11:04:37,441 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:37,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:37,441 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,442 [76] DEBUG index - function getTranslatedString(LBL_SHOW_ACCOUNT_HIERARCHY) - translated to (查看账号级别) +01/18/13 11:04:37,442 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:37,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:37,442 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,442 [76] DEBUG index - function getTranslatedString(Send SMS) - translated to (发送短信) +01/18/13 11:04:37,442 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:37,442 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:37,442 [76] DEBUG index - function getTranslatedString(Account) - translated to (客户) +01/18/13 11:04:37,443 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:37,443 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:37,444 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,226 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:38,377 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:38,377 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:38,377 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:38,378 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:38,378 [76] DEBUG index - array ( + 'action' => 'CallRelatedList', + 'module' => 'Accounts', + 'record' => '2', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:38,378 [76] INFO index - About to take action CallRelatedList +01/18/13 11:04:38,378 [76] DEBUG index - in CallRelatedList +01/18/13 11:04:38,379 [76] INFO index - current page is modules/Accounts/CallRelatedList.php +01/18/13 11:04:38,379 [76] INFO index - current module is Accounts +01/18/13 11:04:38,429 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:38,430 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:38,430 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:38,430 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:38,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,431 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:38,431 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,431 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:38,431 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:38,469 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:38,469 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,469 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:38,469 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:38,470 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:38,471 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:38,471 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,471 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:38,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,472 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:38,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,472 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:38,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,473 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:38,473 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,474 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:38,474 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,474 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:38,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,475 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:38,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,475 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:38,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,476 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:38,476 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,476 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:38,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,477 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:38,477 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,477 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:38,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,478 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:38,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,478 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:38,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,479 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:38,479 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,480 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:38,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,480 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:38,480 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,481 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:38,481 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,481 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:38,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,482 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:38,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,482 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:38,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,483 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:38,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,483 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:38,483 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,483 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:38,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,484 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:38,484 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,485 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:38,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,485 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:38,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,486 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:38,486 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,486 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:38,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,487 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:38,487 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,487 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:38,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,488 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:38,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,488 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:38,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,489 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:38,489 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,489 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:38,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,490 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:38,490 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,491 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:38,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,491 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:38,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,492 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:38,492 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,492 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:38,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,493 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:38,493 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,493 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:38,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,494 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:38,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,494 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:38,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,495 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:38,495 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,495 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:38,496 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,496 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:38,500 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:38,500 [76] DEBUG index - Prepared sql query parameters : [238,1,Accounts,CallRelatedList,2,2013-01-18 11:04:38] +01/18/13 11:04:38,504 [76] DEBUG index - Current user is: admin +01/18/13 11:04:38,504 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:38,504 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:38,505 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:38,507 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:38,507 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:38,509 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:38,509 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:38,511 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:38,512 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,512 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:38,513 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:38,513 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:38,513 [76] DEBUG index - including headers +01/18/13 11:04:38,513 [76] DEBUG index - Entering getParentTabFromModule(Accounts) method ... +01/18/13 11:04:38,514 [76] DEBUG index - Exiting getParentTabFromModule method ... +01/18/13 11:04:38,517 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:38,517 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:38,520 [76] DEBUG index - Entering getHeaderArray() method ... +01/18/13 11:04:38,521 [76] DEBUG index - Entering getParentTabName(1) method ... +01/18/13 11:04:38,522 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,522 [76] DEBUG index - Entering getParentTabName(2) method ... +01/18/13 11:04:38,522 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,522 [76] DEBUG index - Entering getParentTabName(3) method ... +01/18/13 11:04:38,523 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,523 [76] DEBUG index - Entering getParentTabName(4) method ... +01/18/13 11:04:38,523 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,523 [76] DEBUG index - Entering getParentTabName(5) method ... +01/18/13 11:04:38,524 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,524 [76] DEBUG index - Entering getParentTabName(6) method ... +01/18/13 11:04:38,524 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,524 [76] DEBUG index - Entering getParentTabName(7) method ... +01/18/13 11:04:38,525 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,525 [76] DEBUG index - Entering getParentTabName(8) method ... +01/18/13 11:04:38,525 [76] DEBUG index - Exiting getParentTabName method ... +01/18/13 11:04:38,525 [76] DEBUG index - Exiting getHeaderArray method ... +01/18/13 11:04:38,525 [76] DEBUG index - Entering getQuickCreateModules() method ... +01/18/13 11:04:38,525 [76] DEBUG index - Prepared sql query being executed : select distinct vtiger_tab.tablabel,vtiger_tab.name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid = vtiger_field.tabid where quickcreate=0 and vtiger_tab.presence != 1 order by vtiger_tab.tablabel +01/18/13 11:04:38,534 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,535 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,535 [76] DEBUG index - function getTranslatedString(SINGLE_Accounts) - translated to (客户) +01/18/13 11:04:38,535 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:38,536 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,536 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:38,536 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,536 [76] DEBUG index - function getTranslatedString(SINGLE_Assets) - translated to (资产) +01/18/13 11:04:38,537 [76] DEBUG index - Entering isPermitted(Assets,EditView,) method ... +01/18/13 11:04:38,537 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,537 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:38,538 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,538 [76] DEBUG index - function getTranslatedString(SINGLE_Calendar) - translated to (待办事项) +01/18/13 11:04:38,538 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:38,539 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,539 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:38,540 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,541 [76] DEBUG index - function getTranslatedString(SINGLE_Campaigns) - translated to (营销活动) +01/18/13 11:04:38,541 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:38,541 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,542 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:38,542 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,542 [76] DEBUG index - function getTranslatedString(SINGLE_ModComments) - translated to (评论) +01/18/13 11:04:38,542 [76] DEBUG index - Entering isPermitted(ModComments,EditView,) method ... +01/18/13 11:04:38,543 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,543 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:38,544 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,544 [76] DEBUG index - function getTranslatedString(SINGLE_Contacts) - translated to (联系人) +01/18/13 11:04:38,544 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:38,544 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,545 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:38,545 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,545 [76] DEBUG index - function getTranslatedString(SINGLE_Documents) - translated to (企业文档) +01/18/13 11:04:38,545 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:38,546 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,546 [76] DEBUG index - Entering return_module_language(zh_cn,Events) method ... +01/18/13 11:04:38,546 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,546 [76] DEBUG index - function getTranslatedString(SINGLE_Events) - translated to (事件) +01/18/13 11:04:38,547 [76] DEBUG index - Entering isPermitted(Events,EditView,) method ... +01/18/13 11:04:38,547 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,547 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:38,548 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,548 [76] DEBUG index - function getTranslatedString(SINGLE_HelpDesk) - translated to (故障单) +01/18/13 11:04:38,548 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:38,549 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,549 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:38,549 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,550 [76] DEBUG index - function getTranslatedString(SINGLE_Leads) - translated to (潜在客户) +01/18/13 11:04:38,550 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:38,550 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,551 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:38,551 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,551 [76] DEBUG index - function getTranslatedString(SINGLE_Potentials) - translated to (销售机会) +01/18/13 11:04:38,551 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:38,552 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,552 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:38,553 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,553 [76] DEBUG index - function getTranslatedString(SINGLE_PriceBooks) - translated to (价格表) +01/18/13 11:04:38,553 [76] DEBUG index - Entering isPermitted(PriceBooks,EditView,) method ... +01/18/13 11:04:38,553 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,554 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:38,554 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,555 [76] DEBUG index - function getTranslatedString(SINGLE_Products) - translated to (产品) +01/18/13 11:04:38,555 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:38,555 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,556 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:38,556 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,556 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:38,556 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:38,557 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,557 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:38,557 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,558 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectMilestone) - translated to (SINGLE_ProjectMilestone) +01/18/13 11:04:38,558 [76] DEBUG index - Entering isPermitted(ProjectMilestone,EditView,) method ... +01/18/13 11:04:38,558 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,558 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:38,559 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,559 [76] DEBUG index - function getTranslatedString(SINGLE_ProjectTask) - translated to (项目任务) +01/18/13 11:04:38,559 [76] DEBUG index - Entering isPermitted(ProjectTask,EditView,) method ... +01/18/13 11:04:38,560 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,560 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:38,561 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,561 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:38,561 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:38,562 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,562 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:38,562 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,563 [76] DEBUG index - function getTranslatedString(SINGLE_Services) - translated to (服务) +01/18/13 11:04:38,563 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:38,563 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,563 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:38,564 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,564 [76] DEBUG index - function getTranslatedString(SINGLE_Vendors) - translated to (供应商) +01/18/13 11:04:38,564 [76] DEBUG index - Entering isPermitted(Vendors,EditView,) method ... +01/18/13 11:04:38,565 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,565 [76] DEBUG index - Exiting getQuickCreateModules method ... +01/18/13 11:04:38,565 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:38) method ... +01/18/13 11:04:38,565 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:38,565 [76] DEBUG index - Entering getDisplayTime(2013-01-18 11:04:38) method ... +01/18/13 11:04:38,565 [76] DEBUG index - Exiting getDisplayTime method ... +01/18/13 11:04:38,566 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:38,566 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:38,567 [76] DEBUG index - Entering get_calc(themes/softed/images/) method ... +01/18/13 11:04:38,567 [76] DEBUG index - Exiting get_calc method ... +01/18/13 11:04:38,567 [76] DEBUG index - Prepared sql query being executed : select tabid,name,tablabel,tabsequence,parent from vtiger_tab where parent is not null and parent!=" " and presence in (0,2) order by tabsequence +01/18/13 11:04:38,571 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,571 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,572 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,572 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,572 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,572 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,572 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,572 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,573 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,573 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,573 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,573 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,573 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,573 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,574 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,574 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,574 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,574 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,574 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,574 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,574 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,575 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,575 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,575 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,575 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,575 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,575 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,575 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,576 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,576 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,576 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,576 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,576 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,576 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,576 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,577 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,577 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,577 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,577 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,577 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,577 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,577 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,578 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,578 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,578 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,578 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,578 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,578 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,578 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,579 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,579 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,579 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,579 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,579 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,579 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,579 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,580 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,580 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,580 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,580 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,580 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,580 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,580 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,581 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,581 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,581 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,581 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_announcement inner join vtiger_users on vtiger_announcement.creatorid=vtiger_users.id AND vtiger_users.is_admin='on' AND vtiger_users.status='Active' AND vtiger_users.deleted = 0 +01/18/13 11:04:38,586 [76] DEBUG index - Entering isPermitted(PBXManager,index,) method ... +01/18/13 11:04:38,586 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,586 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_asteriskextensions where userid = ? +01/18/13 11:04:38,587 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:38,589 [76] DEBUG index - Entering is_admin(admin) method ... +01/18/13 11:04:38,589 [76] DEBUG index - Exiting is_admin method ... +01/18/13 11:04:38,590 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:38,590 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,591 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:38,591 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,591 [76] DEBUG index - Entering getTabid(Leads) method ... +01/18/13 11:04:38,591 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,592 [76] DEBUG index - Entering isPermitted(Leads,EditView,) method ... +01/18/13 11:04:38,592 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,592 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,592 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:38,593 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,593 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:38,593 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,593 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:38,594 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,594 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:38,594 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,594 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:38,595 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,595 [76] DEBUG index - Entering getTabid(Faq) method ... +01/18/13 11:04:38,595 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,595 [76] DEBUG index - Entering isPermitted(Faq,EditView,) method ... +01/18/13 11:04:38,596 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,596 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:38,596 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,596 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:38,596 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,597 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:38,597 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,597 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:38,597 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,597 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:38,597 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,598 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:38,598 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,598 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:38,599 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,599 [76] DEBUG index - Entering getTabid(Activities) method ... +01/18/13 11:04:38,599 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,599 [76] DEBUG index - Entering getTabid(Vendor) method ... +01/18/13 11:04:38,600 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,600 [76] DEBUG index - Entering getTabid(PriceBook) method ... +01/18/13 11:04:38,600 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,600 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:38,601 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,601 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:38,601 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,601 [76] DEBUG index - Entering getTabid(PurchaseOrder) method ... +01/18/13 11:04:38,601 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,601 [76] DEBUG index - Entering isPermitted(PurchaseOrder,EditView,) method ... +01/18/13 11:04:38,602 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,602 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:38,602 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,602 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:38,603 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,603 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:38,603 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,603 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:38,604 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,604 [76] DEBUG Tracker - About to retrieve list: SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:38,604 [76] DEBUG index - Prepared sql query being executed : SELECT * from vtiger_tracker inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_tracker.item_id WHERE user_id=? and vtiger_crmentity.deleted=0 ORDER BY id DESC +01/18/13 11:04:38,604 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:38,608 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:38,609 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,610 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,12) method ... +01/18/13 11:04:38,610 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,610 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,6) method ... +01/18/13 11:04:38,611 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,611 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,4) method ... +01/18/13 11:04:38,612 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,612 [76] DEBUG index - Entering isPermitted(Leads,DetailView,34) method ... +01/18/13 11:04:38,613 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,613 [76] INFO VT - PearDatabase ->ADODB fetchByAssoc return null +01/18/13 11:04:38,613 [76] DEBUG index - query being executed : SELECT 1 FROM vtiger_links LIMIT 1 +01/18/13 11:04:38,617 [76] DEBUG index - Entering getTabid(Home) method ... +01/18/13 11:04:38,617 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,617 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_links WHERE linktype IN (?,?,?,?) +01/18/13 11:04:38,617 [76] DEBUG index - Prepared sql query parameters : [ONDEMANDLINK,HEADERLINK,HEADERSCRIPT,HEADERCSS] +01/18/13 11:04:38,621 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_organizationdetails +01/18/13 11:04:38,627 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,627 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,627 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,628 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:38,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,628 [76] DEBUG index - function getTranslatedString(Calendar) - translated to (日程安排) +01/18/13 11:04:38,628 [76] DEBUG index - Entering return_module_language(zh_cn,Leads) method ... +01/18/13 11:04:38,628 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,628 [76] DEBUG index - function getTranslatedString(Leads) - translated to (潜在客户) +01/18/13 11:04:38,629 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,629 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,629 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:38,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,629 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:38,629 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:38,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,629 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:38,630 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:38,630 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,630 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:38,630 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:38,630 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,630 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:38,630 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:38,631 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,631 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:38,631 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:38,631 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,631 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:38,631 [76] DEBUG index - Entering return_module_language(zh_cn,Dashboard) method ... +01/18/13 11:04:38,632 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,632 [76] DEBUG index - function getTranslatedString(Dashboards) - translated to (统计图) +01/18/13 11:04:38,634 [76] DEBUG index - Entering return_module_language(zh_cn,SMSNotifier) method ... +01/18/13 11:04:38,635 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,635 [76] DEBUG index - function getTranslatedString(SMSNotifier) - translated to (短信通知) +01/18/13 11:04:38,635 [76] DEBUG index - Entering return_module_language(zh_cn,Portal) method ... +01/18/13 11:04:38,636 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,636 [76] DEBUG index - function getTranslatedString(Portal) - translated to (我的书签) +01/18/13 11:04:38,636 [76] DEBUG index - Entering return_module_language(zh_cn,Integration) method ... +01/18/13 11:04:38,636 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,637 [76] DEBUG index - function getTranslatedString(Integration) - translated to (系统整合工具) +01/18/13 11:04:38,637 [76] DEBUG index - Entering return_module_language(zh_cn,MailManager) method ... +01/18/13 11:04:38,637 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,637 [76] DEBUG index - function getTranslatedString(MailManager) - translated to (管理远程邮件) +01/18/13 11:04:38,637 [76] DEBUG index - Entering return_module_language(zh_cn,PBXManager) method ... +01/18/13 11:04:38,638 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,638 [76] DEBUG index - function getTranslatedString(PBXManager) - translated to (通话记录管理) +01/18/13 11:04:38,638 [76] DEBUG index - Entering return_module_language(zh_cn,ModComments) method ... +01/18/13 11:04:38,638 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,638 [76] DEBUG index - function getTranslatedString(Comments) - translated to (评论) +01/18/13 11:04:38,638 [76] DEBUG index - Entering return_module_language(zh_cn,RecycleBin) method ... +01/18/13 11:04:38,639 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,639 [76] DEBUG index - function getTranslatedString(Recycle Bin) - translated to (回收站) +01/18/13 11:04:38,639 [76] DEBUG index - Entering return_module_language(zh_cn,Rss) method ... +01/18/13 11:04:38,639 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,639 [76] DEBUG index - function getTranslatedString(Rss) - translated to (RSS新闻) +01/18/13 11:04:38,640 [76] DEBUG index - Entering return_module_language(zh_cn,Reports) method ... +01/18/13 11:04:38,640 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,640 [76] DEBUG index - function getTranslatedString(Reports) - translated to (报表) +01/18/13 11:04:38,640 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:38,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,641 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:38,641 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:38,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,641 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:38,641 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectMilestone) method ... +01/18/13 11:04:38,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,641 [76] DEBUG index - function getTranslatedString(ProjectMilestone) - translated to (项目里程碑) +01/18/13 11:04:38,641 [76] DEBUG index - Entering return_module_language(zh_cn,ProjectTask) method ... +01/18/13 11:04:38,641 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,642 [76] DEBUG index - function getTranslatedString(ProjectTask) - translated to (项目任务) +01/18/13 11:04:38,642 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:38,642 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,642 [76] DEBUG index - function getTranslatedString(Project) - translated to (项目) +01/18/13 11:04:38,642 [76] DEBUG index - Entering return_module_language(zh_cn,Faq) method ... +01/18/13 11:04:38,643 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,643 [76] DEBUG index - function getTranslatedString(Faq) - translated to (常见问答) +01/18/13 11:04:38,643 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:38,643 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,643 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:38,643 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:38,643 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,643 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:38,643 [76] DEBUG index - Entering return_module_language(zh_cn,PurchaseOrder) method ... +01/18/13 11:04:38,644 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,644 [76] DEBUG index - function getTranslatedString(PurchaseOrder) - translated to (采购订单) +01/18/13 11:04:38,644 [76] DEBUG index - Entering return_module_language(zh_cn,PriceBooks) method ... +01/18/13 11:04:38,644 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,644 [76] DEBUG index - function getTranslatedString(PriceBooks) - translated to (价格表) +01/18/13 11:04:38,644 [76] DEBUG index - Entering return_module_language(zh_cn,Vendors) method ... +01/18/13 11:04:38,645 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,645 [76] DEBUG index - function getTranslatedString(Vendors) - translated to (供应商) +01/18/13 11:04:38,645 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:38,645 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,645 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:38,646 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:38,646 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,646 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:38,646 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:38,647 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,647 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:38,648 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,648 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,648 [76] DEBUG index - function getTranslatedString(LBL_CRM_SETTINGS) - translated to (CRM设置) +01/18/13 11:04:38,648 [76] DEBUG index - Entering isPermitted(Accounts,CallRelatedList,2) method ... +01/18/13 11:04:38,649 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,652 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:38,652 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:38,653 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:38,653 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:38,653 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,654 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,654 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,654 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,654 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:38,654 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:38,664 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,664 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:38,664 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_crmentity where crmid=? +01/18/13 11:04:38,664 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,667 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_account where accountid=? +01/18/13 11:04:38,667 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,670 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountbillads where accountaddressid=? +01/18/13 11:04:38,670 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,672 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountshipads where accountaddressid=? +01/18/13 11:04:38,672 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,674 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_accountscf where accountid=? +01/18/13 11:04:38,674 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,676 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,676 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,678 [76] INFO VT - PearDatabase ->There is no entry for this entity 2 (Accounts) in the table vtiger_campaignrelstatus +01/18/13 11:04:38,678 [76] DEBUG index - id is 2 +01/18/13 11:04:38,678 [76] DEBUG index - name is vtiger +01/18/13 11:04:38,678 [76] DEBUG index - Entering function getModuleSequenceFieldName (Accounts)... +01/18/13 11:04:38,678 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,678 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,679 [76] DEBUG index - Exiting getModuleSequenceFieldName... +01/18/13 11:04:38,679 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:04:38,679 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:38,679 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,679 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:38,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:38,680 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:38,680 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:38,680 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:38,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,680 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:38,680 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,680 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:04:38,680 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:04:38,691 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:38,691 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,691 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:38,691 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,691 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:38,692 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:38,693 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:04:38,693 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:38,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,693 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:38,693 [76] DEBUG index - Entering updateInfo(2) method ... +01/18/13 11:04:38,693 [76] DEBUG index - Prepared sql query being executed : SELECT modifiedtime, modifiedby FROM vtiger_crmentity WHERE crmid = ? +01/18/13 11:04:38,693 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:38,695 [76] DEBUG index - Entering getOwnerName(1) method ... +01/18/13 11:04:38,695 [76] INFO index - in getOwnerName 1 +01/18/13 11:04:38,695 [76] DEBUG index - Entering getEntityName(Users) method ... +01/18/13 11:04:38,696 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:38,696 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:38,698 [76] DEBUG index - Prepared sql query being executed : SELECT first_name,last_name,id FROM vtiger_users WHERE id IN (?) +01/18/13 11:04:38,698 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:38,702 [76] DEBUG index - Entering getDisplayDate(2013-01-18 11:04:10) method ... +01/18/13 11:04:38,702 [76] DEBUG index - Exiting getDisplayDate method ... +01/18/13 11:04:38,703 [76] DEBUG index - Exiting updateInfo method ... +01/18/13 11:04:38,703 [76] DEBUG index - Entering getRelatedLists(Accounts,Accounts) method ... +01/18/13 11:04:38,703 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,703 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,704 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where tabid=? and related_tabid not in (SELECT tabid FROM vtiger_tab WHERE presence = 1) order by sequence +01/18/13 11:04:38,704 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:38,709 [76] DEBUG index - Exiting getRelatedLists method ... +01/18/13 11:04:38,710 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:38,711 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:38,711 [76] DEBUG index - Prepared sql query being executed : select relation_id,related_tabid, label from vtiger_relatedlists where tabid=? order by sequence +01/18/13 11:04:38,711 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:38,718 [76] DEBUG index - Entering Button_Check(Accounts) method ... +01/18/13 11:04:38,718 [76] DEBUG index - Entering isPermitted(Accounts,EditView,) method ... +01/18/13 11:04:38,719 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,719 [76] DEBUG index - Entering isPermitted(Accounts,index,) method ... +01/18/13 11:04:38,719 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,720 [76] DEBUG index - Entering isPermitted(Accounts,Import,) method ... +01/18/13 11:04:38,720 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,720 [76] DEBUG index - Entering isPermitted(Accounts,Export,) method ... +01/18/13 11:04:38,721 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,721 [76] DEBUG index - Entering isPermitted(Accounts,Merge,) method ... +01/18/13 11:04:38,722 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,722 [76] DEBUG index - Entering isPermitted(Accounts,DuplicatesHandling,) method ... +01/18/13 11:04:38,722 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,722 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:38,723 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,723 [76] DEBUG index - Entering isPermitted(Settings,index,) method ... +01/18/13 11:04:38,724 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:38,724 [76] DEBUG index - Exiting Button_Check method ... +01/18/13 11:04:38,726 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,726 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,726 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,726 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,726 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,726 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:38,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,727 [76] DEBUG index - function getTranslatedString(客户) - translated to (客户) +01/18/13 11:04:38,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,727 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,727 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,728 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,728 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,728 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,728 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,728 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,728 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,729 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,729 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,729 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:38,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,729 [76] DEBUG index - function getTranslatedString(Accounts) - translated to (客户) +01/18/13 11:04:38,732 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:38,732 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,732 [76] DEBUG index - function getTranslatedString(Contacts) - translated to (联系人) +01/18/13 11:04:38,733 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:38,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,733 [76] DEBUG index - function getTranslatedString(Potentials) - translated to (销售机会) +01/18/13 11:04:38,733 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:38,733 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,733 [76] DEBUG index - function getTranslatedString(Quotes) - translated to (报价单) +01/18/13 11:04:38,733 [76] DEBUG index - Entering return_module_language(zh_cn,Sales Order) method ... +01/18/13 11:04:38,734 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,734 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:04:38,734 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:38,734 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,734 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:38,735 [76] DEBUG index - Entering return_module_language(zh_cn,Activities) method ... +01/18/13 11:04:38,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,735 [76] DEBUG index - function getTranslatedString(Activities) - translated to (待办事项) +01/18/13 11:04:38,735 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:38,735 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,736 [76] DEBUG index - function getTranslatedString(Emails) - translated to (Email) +01/18/13 11:04:38,736 [76] DEBUG index - Entering return_module_language(zh_cn,Activity History) method ... +01/18/13 11:04:38,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,736 [76] DEBUG index - function getTranslatedString(Activity History) - translated to (活动历史) +01/18/13 11:04:38,736 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:38,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,737 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:38,737 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:38,737 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,737 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:38,737 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:38,737 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,737 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:38,738 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:38,738 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,738 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:38,738 [76] DEBUG index - Entering return_module_language(zh_cn,Service Contracts) method ... +01/18/13 11:04:38,738 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,739 [76] DEBUG index - function getTranslatedString(Service Contracts) - translated to (服务合同) +01/18/13 11:04:38,739 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:38,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,739 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:38,739 [76] DEBUG index - Entering return_module_language(zh_cn,Assets) method ... +01/18/13 11:04:38,739 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,739 [76] DEBUG index - function getTranslatedString(Assets) - translated to (资产) +01/18/13 11:04:38,740 [76] DEBUG index - Entering return_module_language(zh_cn,Projects) method ... +01/18/13 11:04:38,740 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:38,740 [76] DEBUG index - function getTranslatedString(Projects) - translated to (项目) +01/18/13 11:04:38,741 [76] DEBUG index - function getTranslatedString(LNK_PRIVACY_POLICY) - translated to (隐私策略) +01/18/13 11:04:38,741 [76] DEBUG index - Entering isPermitted(Calendar,index,) method ... +01/18/13 11:04:38,741 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,171 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,172 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,172 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,176 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,179 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,249 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,354 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:39,354 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:39,354 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:39,355 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:39,355 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Contacts', + 'relation_id' => '1', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:39,355 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:39,355 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:39,356 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:39,356 [76] INFO index - current module is Accounts +01/18/13 11:04:39,412 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:39,413 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:39,413 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:39,413 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,413 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,414 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,414 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,414 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,414 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:39,424 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,424 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,425 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,425 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:39,425 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:39,426 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:39,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,427 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:39,427 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,427 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:39,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,428 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:39,428 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,428 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:39,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,429 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:39,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,429 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:39,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,430 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:39,430 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,431 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:39,431 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,431 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:39,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,432 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:39,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,432 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:39,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,433 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:39,433 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,433 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:39,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,434 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:39,434 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,434 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:39,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,435 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:39,435 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,436 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:39,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,436 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:39,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,437 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:39,437 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,437 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:39,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,438 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:39,438 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,438 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:39,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,439 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:39,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,439 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:39,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,440 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:39,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,440 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:39,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,441 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:39,441 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,441 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:39,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,442 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:39,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,442 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:39,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,443 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:39,443 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,443 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:39,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,444 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:39,444 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,444 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:39,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,445 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:39,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,446 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:39,446 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,446 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:39,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,447 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:39,447 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,447 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:39,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,448 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:39,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,448 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:39,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,449 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:39,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,449 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:39,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,450 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:39,450 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,451 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:39,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,451 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:39,451 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,452 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:39,476 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:39,476 [76] DEBUG index - Prepared sql query parameters : [239,1,Accounts,AccountsAjax,2,2013-01-18 11:04:39] +01/18/13 11:04:39,480 [76] DEBUG index - Current user is: admin +01/18/13 11:04:39,480 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:39,481 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:39,481 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:39,483 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:39,483 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:39,485 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:39,485 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:39,487 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:39,487 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,488 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:39,488 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:39,489 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:39,489 [76] DEBUG index - skipping headers +01/18/13 11:04:39,489 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:39,489 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,491 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:39,491 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:39,492 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,492 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,492 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,492 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,492 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,492 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:39,503 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,503 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,503 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,507 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:39,508 [76] DEBUG index - Prepared sql query parameters : [1] +01/18/13 11:04:39,515 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:39,515 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,515 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,515 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,516 [76] DEBUG index - Entering get_contacts(2) method ... +01/18/13 11:04:39,516 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:39,516 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:39,518 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:39,518 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:39,518 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,518 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,518 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,518 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,518 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,518 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:39,528 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,528 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,529 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,529 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,530 [76] DEBUG index - Entering getFieldVisibilityPermission(Contacts,1,account_id) method ... +01/18/13 11:04:39,530 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,530 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,531 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:39,531 [76] DEBUG index - Entering isPermitted(Contacts,1,) method ... +01/18/13 11:04:39,532 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,532 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:39,532 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:39,532 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:39,532 [76] DEBUG index - function getTranslatedString(Contact) - translated to (联系人) +01/18/13 11:04:39,532 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:39,532 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:39,535 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Contacts,Contacts,SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:39,539 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,539 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,539 [76] DEBUG index - Entering function initSortByField (Contacts) +01/18/13 11:04:39,539 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,539 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,539 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:39,539 [76] DEBUG index - Prepared sql query parameters : [4,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:39,544 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:39,544 [76] DEBUG index - Entering getColumnFields(Contacts) method ... +01/18/13 11:04:39,544 [76] DEBUG index - in getColumnFields Contacts +01/18/13 11:04:39,544 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,544 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,544 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,545 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,545 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,545 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:39,545 [76] DEBUG index - Entering getTableNameForField(Contacts,lastname) method ... +01/18/13 11:04:39,546 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,546 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,546 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:39,546 [76] DEBUG index - Prepared sql query parameters : [4,%lastname%] +01/18/13 11:04:39,549 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:39,549 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_contactdetails INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_contactdetails.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_contactdetails.accountid = 2 +01/18/13 11:04:39,551 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_contactdetails.*, + vtiger_crmentity.crmid, + vtiger_crmentity.smownerid, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_contactdetails.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_contactdetails.accountid = 2 ORDER BY vtiger_contactdetails.lastname ASC LIMIT 0, 20 +01/18/13 11:04:39,557 [76] DEBUG index - Entering getListViewHeader(Contacts,,ASC,lastname,2,) method ... +01/18/13 11:04:39,557 [76] DEBUG index - Entering getURLstring(Contacts) method ... +01/18/13 11:04:39,557 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:39,557 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,557 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,557 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,557 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,559 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,559 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,560 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,560 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,561 [76] DEBUG index - function getTranslatedString(Last Name) - translated to (姓名) +01/18/13 11:04:39,562 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,563 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,563 [76] DEBUG index - function getTranslatedString(First Name) - translated to (英文名) +01/18/13 11:04:39,564 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,565 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,565 [76] DEBUG index - function getTranslatedString(Title) - translated to (职位) +01/18/13 11:04:39,566 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,567 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,567 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:39,567 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,567 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,567 [76] DEBUG index - function getTranslatedString(Email) - translated to (Email) +01/18/13 11:04:39,569 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,569 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,569 [76] DEBUG index - function getTranslatedString(Office Phone) - translated to (办公室电话) +01/18/13 11:04:39,571 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,571 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,571 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:39,573 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:39,573 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,574 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:39,576 [76] DEBUG index - Entering getListViewEntries(Contacts,Contacts,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +130,CON11,2,,Jennifer,Davis,jennifer_davis@company.com,(508) 156-2360,(858) 849-6114,IT Developer,,,0,,,,,,0,0,,0,0,130,1,vtiger,Administrator +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:39,576 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,576 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,577 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,578 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,578 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:04:39,578 [76] DEBUG index - Prepared sql query parameters : [4,lastname,firstname,title,account_id,email,phone,assigned_user_id] +01/18/13 11:04:39,584 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,lastname,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,584 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,585 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,586 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,586 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,586 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,586 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,587 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,587 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,title,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,588 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,588 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,589 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,589 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,589 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,589 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,590 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,590 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,email,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,591 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,591 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,592 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,593 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,593 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,593 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,593 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,593 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,594 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,phone,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,594 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,594 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,596 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,596 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,596 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,596 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,597 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,597 [76] DEBUG index - Entering getValue(Array,contactid,contact_no,accountid,salutation,firstname,lastname,email,phone,mobile,title,department,fax,reportsto,training,usertype,contacttype,otheremail,secondaryemail,donotcall,emailoptout,imagename,reference,notify_owner,crmid,smownerid,accountname,user_name +,assigned_user_id,Contacts,Contacts,130,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,598 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,598 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,599 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,599 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,599 [76] DEBUG index - Entering return_module_language(zh_cn,Contacts) method ... +01/18/13 11:04:39,599 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,600 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,600 [76] DEBUG index - Entering isPermitted(Contacts,EditView,) method ... +01/18/13 11:04:39,600 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,600 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,601 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,602 [76] DEBUG index - Entering isPermitted(Contacts,Delete,) method ... +01/18/13 11:04:39,603 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,603 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,603 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,608 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:39,609 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:39,609 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,609 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,609 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,610 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:39,610 [76] DEBUG index - Prepared sql query parameters : [130] +01/18/13 11:04:39,612 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:39,613 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=lastname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:39,613 [76] DEBUG index - Entering getTabid(Contacts) method ... +01/18/13 11:04:39,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,613 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,613 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,613 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:39,613 [76] DEBUG index - Prepared sql query parameters : [6,4] +01/18/13 11:04:39,615 [76] INFO index - getNextRow +01/18/13 11:04:39,616 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:39,616 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:39,617 [76] DEBUG index - Exiting get_contacts method ... +01/18/13 11:04:39,620 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:39,620 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:39,620 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:39,621 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:39,621 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Potentials', + 'relation_id' => '2', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:39,621 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:39,621 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:39,622 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:39,622 [76] INFO index - current module is Accounts +01/18/13 11:04:39,662 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:39,663 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:39,663 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:39,663 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,663 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,663 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,664 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,664 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,664 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:39,672 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,672 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,672 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,672 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:39,673 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:39,673 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:39,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,674 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:39,674 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,675 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:39,675 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,675 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:39,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,676 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:39,676 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,676 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:39,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,677 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:39,677 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,677 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:39,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,678 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:39,678 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,678 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:39,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,679 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:39,679 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,679 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:39,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,680 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:39,680 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,680 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:39,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,681 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:39,681 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,681 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:39,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,682 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:39,682 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,682 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:39,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,683 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:39,683 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,683 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:39,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,684 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:39,684 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,684 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:39,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,685 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:39,685 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,685 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:39,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,686 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:39,686 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,686 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:39,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,687 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:39,687 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,687 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:39,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,688 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:39,688 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,688 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:39,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,689 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:39,689 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,689 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:39,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,690 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:39,690 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,690 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,690 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:39,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,691 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:39,691 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,691 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:39,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,692 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:39,692 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,692 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:39,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,693 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:39,693 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,693 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:39,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,694 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:39,694 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,694 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:39,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,695 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:39,695 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,695 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:39,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,696 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:39,696 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,696 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:39,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,697 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:39,697 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,697 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:39,701 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:39,701 [76] DEBUG index - Prepared sql query parameters : [240,1,Accounts,AccountsAjax,2,2013-01-18 11:04:39] +01/18/13 11:04:39,705 [76] DEBUG index - Current user is: admin +01/18/13 11:04:39,705 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:39,705 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:39,706 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:39,708 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:39,708 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:39,710 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:39,710 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:39,712 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:39,712 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,713 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,713 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:39,713 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:39,713 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:39,713 [76] DEBUG index - skipping headers +01/18/13 11:04:39,713 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:39,714 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,716 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:39,716 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:39,716 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,716 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,716 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,716 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,716 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,717 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:39,724 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,724 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,724 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,728 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:39,728 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,731 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:39,731 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,731 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,731 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,731 [76] DEBUG index - Entering get_opportunities(2) method ... +01/18/13 11:04:39,731 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:39,731 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,734 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:04:39,734 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:04:39,734 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,734 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,734 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,734 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,734 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,734 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,739 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,739 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,739 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,740 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,740 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,741 [76] DEBUG index - Entering isPermitted(Potentials,1,) method ... +01/18/13 11:04:39,742 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,742 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:39,742 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:39,742 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:39,742 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:39,742 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:39,742 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:39,745 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Potentials,Potentials,SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:39,748 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,748 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,748 [76] DEBUG index - Entering function initSortByField (Potentials) +01/18/13 11:04:39,749 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,749 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,749 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:39,749 [76] DEBUG index - Prepared sql query parameters : [2,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:39,752 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:39,752 [76] DEBUG index - Entering getColumnFields(Potentials) method ... +01/18/13 11:04:39,753 [76] DEBUG index - in getColumnFields Potentials +01/18/13 11:04:39,753 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,753 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,753 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,754 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,754 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,754 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:39,754 [76] DEBUG index - Entering getTableNameForField(Potentials,potentialname) method ... +01/18/13 11:04:39,754 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,754 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,754 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:39,754 [76] DEBUG index - Prepared sql query parameters : [2,%potentialname%] +01/18/13 11:04:39,757 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:39,757 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_potential INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_potential.potentialid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_potential.related_to LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_potential.related_to = 2 +01/18/13 11:04:39,760 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_potential.potentialid, vtiger_potential.related_to, + vtiger_potential.potentialname, vtiger_potential.sales_stage, + vtiger_potential.potentialtype, vtiger_potential.amount, + vtiger_potential.closingdate, vtiger_potential.potentialtype, vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_potential + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_potential.potentialid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_potential.related_to + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_potential.related_to = 2 ORDER BY vtiger_potential.potentialname ASC LIMIT 0, 20 +01/18/13 11:04:39,765 [76] DEBUG index - Entering getListViewHeader(Potentials,,ASC,potentialname,2,) method ... +01/18/13 11:04:39,765 [76] DEBUG index - Entering getURLstring(Potentials) method ... +01/18/13 11:04:39,765 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:39,765 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,765 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,766 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,766 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,767 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,767 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,768 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,768 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,769 [76] DEBUG index - function getTranslatedString(Potential) - translated to (销售机会) +01/18/13 11:04:39,770 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,771 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,771 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:39,773 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,773 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,773 [76] DEBUG index - function getTranslatedString(Sales Stage) - translated to (销售阶段) +01/18/13 11:04:39,775 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,775 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,775 [76] DEBUG index - function getTranslatedString(Amount) - translated to (金额) +01/18/13 11:04:39,777 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,777 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,777 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计完成日期) +01/18/13 11:04:39,779 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,779 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:39,779 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,779 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,779 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:04:39,781 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:39,782 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,782 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:39,783 [76] DEBUG index - Entering getListViewEntries(Potentials,Potentials,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +3,2,vtiger - 1000 units,Qualification,Existing Business,75000.00,2006-07-15,Existing Business,vtiger,Administrator,3,1 +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:39,783 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,783 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,784 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,784 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,785 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:39,785 [76] DEBUG index - Prepared sql query parameters : [2,potentialname,related_to,sales_stage,amount,closingdate,assigned_user_id] +01/18/13 11:04:39,790 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,potentialname,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,791 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,791 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,792 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,792 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,793 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,793 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,793 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,793 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,related_to,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,794 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,794 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,795 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,795 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,795 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,796 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,796 [76] DEBUG index - Entering getSalesEntityType(2) method ... +01/18/13 11:04:39,796 [76] INFO index - in getSalesEntityType 2 +01/18/13 11:04:39,796 [76] DEBUG index - Prepared sql query being executed : select setype from vtiger_crmentity where crmid=? +01/18/13 11:04:39,796 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,798 [76] DEBUG index - Exiting getSalesEntityType method ... +01/18/13 11:04:39,798 [76] DEBUG index - Entering getEntityName(Accounts) method ... +01/18/13 11:04:39,798 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:39,799 [76] DEBUG index - Prepared sql query parameters : [Accounts] +01/18/13 11:04:39,801 [76] DEBUG index - Prepared sql query being executed : SELECT accountname,accountid FROM vtiger_account WHERE accountid IN (?) +01/18/13 11:04:39,801 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,803 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,803 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,sales_stage,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,803 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,804 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,805 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,805 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,805 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,805 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,806 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,806 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,amount,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,806 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,806 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,808 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,808 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,808 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,808 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,808 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:04:39,809 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:04:39,809 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:04:39,809 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:39,811 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:04:39,811 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:04:39,812 [76] DEBUG index - Entering convertFromDollar(75000.00,1.000) method ... +01/18/13 11:04:39,812 [76] DEBUG index - Exiting convertFromDollar method ... +01/18/13 11:04:39,812 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,812 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,closingdate,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,812 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,813 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,814 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,814 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,814 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,814 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,814 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,815 [76] DEBUG index - Entering getValue(Array,potentialid,related_to,potentialname,sales_stage,potentialtype,amount,closingdate,potentialtype,accountname,user_name,crmid,smownerid +,assigned_user_id,Potentials,Potentials,3,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:39,815 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,815 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,817 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,817 [76] DEBUG index - Entering return_module_language(zh_cn,Potentials) method ... +01/18/13 11:04:39,817 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,817 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:39,817 [76] DEBUG index - Entering isPermitted(Potentials,EditView,) method ... +01/18/13 11:04:39,818 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,818 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,818 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,819 [76] DEBUG index - Entering isPermitted(Potentials,Delete,) method ... +01/18/13 11:04:39,820 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,820 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,820 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,826 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:39,826 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:39,826 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,826 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,826 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,827 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:39,828 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:39,830 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:39,830 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=potentialname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:39,830 [76] DEBUG index - Entering getTabid(Potentials) method ... +01/18/13 11:04:39,831 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,831 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,831 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,831 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:39,831 [76] DEBUG index - Prepared sql query parameters : [6,2] +01/18/13 11:04:39,834 [76] INFO index - getNextRow +01/18/13 11:04:39,834 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:39,835 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:39,835 [76] DEBUG index - Exiting get_opportunities method ... +01/18/13 11:04:39,840 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:39,840 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:39,840 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:39,841 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:39,841 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Sales Order', + 'relation_id' => '4', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:39,841 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:39,841 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:39,841 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:39,841 [76] INFO index - current module is Accounts +01/18/13 11:04:39,882 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:39,883 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:39,883 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:39,883 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,883 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,884 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,884 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,884 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,884 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:39,892 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:39,892 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,893 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,893 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:39,893 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:39,894 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:39,894 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,894 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:39,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,895 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:39,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,896 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:39,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,896 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:39,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,897 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:39,897 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,897 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:39,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,898 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:39,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,898 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:39,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,899 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:39,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,899 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:39,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,900 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:39,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,901 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:39,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,901 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:39,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,902 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:39,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,902 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:39,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,903 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:39,903 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,903 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:39,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,904 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:39,904 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,904 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:39,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,905 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:39,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,905 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:39,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,906 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:39,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,907 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:39,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,907 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:39,907 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,907 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:39,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,908 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:39,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,908 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:39,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,909 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:39,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,909 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:39,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,910 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:39,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,911 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:39,911 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,911 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:39,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,912 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:39,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,912 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:39,912 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:39,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,913 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:39,913 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,913 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:39,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,914 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:39,914 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,915 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:39,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,915 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:39,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,916 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:39,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,916 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:39,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,917 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:39,917 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,917 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:39,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,918 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:39,918 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,918 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:39,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,919 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:39,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,919 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:39,924 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:39,924 [76] DEBUG index - Prepared sql query parameters : [241,1,Accounts,AccountsAjax,2,2013-01-18 11:04:39] +01/18/13 11:04:39,927 [76] DEBUG index - Current user is: admin +01/18/13 11:04:39,927 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:39,927 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:39,927 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:39,930 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:39,930 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:39,932 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:39,932 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:39,934 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:39,934 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,935 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,935 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:39,935 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:39,935 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:39,935 [76] DEBUG index - skipping headers +01/18/13 11:04:39,935 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:39,936 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,937 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:39,937 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:39,938 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,938 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,938 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,938 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,938 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,938 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:39,946 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,946 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,946 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,950 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:39,950 [76] DEBUG index - Prepared sql query parameters : [4] +01/18/13 11:04:39,953 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:39,953 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:39,953 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:39,953 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,953 [76] DEBUG index - Entering get_salesorder(2) method ... +01/18/13 11:04:39,953 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:39,953 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:04:39,956 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:04:39,957 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:04:39,957 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,957 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,957 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,957 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,957 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:39,957 [76] DEBUG index - Prepared sql query parameters : [22] +01/18/13 11:04:39,966 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,966 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,966 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,966 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,966 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:39,968 [76] DEBUG index - Entering getFieldVisibilityPermission(SalesOrder,1,account_id) method ... +01/18/13 11:04:39,968 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,968 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,968 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:39,968 [76] DEBUG index - Entering isPermitted(SalesOrder,1,) method ... +01/18/13 11:04:39,969 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:39,969 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:39,969 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:39,969 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:39,969 [76] DEBUG index - function getTranslatedString(SalesOrder) - translated to (销售订单) +01/18/13 11:04:39,970 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:39,970 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:39,972 [76] DEBUG account_list - Entering GetRelatedList(Accounts,SalesOrder,SalesOrder,SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:39,975 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:39,975 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:39,975 [76] DEBUG index - Entering function initSortByField (SalesOrder) +01/18/13 11:04:39,976 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,976 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,976 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:39,976 [76] DEBUG index - Prepared sql query parameters : [22,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:39,980 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:39,980 [76] DEBUG index - Entering getColumnFields(SalesOrder) method ... +01/18/13 11:04:39,980 [76] DEBUG index - in getColumnFields SalesOrder +01/18/13 11:04:39,980 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,981 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,981 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:39,981 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,981 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,981 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:39,982 [76] DEBUG index - Entering getTableNameForField(SalesOrder,subject) method ... +01/18/13 11:04:39,982 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,982 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,982 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:39,982 [76] DEBUG index - Prepared sql query parameters : [22,%subject%] +01/18/13 11:04:39,985 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:39,986 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_salesorder INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid LEFT OUTER JOIN vtiger_quotes ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_salesorder.accountid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_salesorder.accountid = 2 +01/18/13 11:04:39,993 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, + vtiger_salesorder.*, + vtiger_quotes.subject AS quotename, + vtiger_account.accountname, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_salesorder + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_salesorder.salesorderid + LEFT OUTER JOIN vtiger_quotes + ON vtiger_quotes.quoteid = vtiger_salesorder.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_salesorder.accountid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_salesorder.accountid = 2 ORDER BY vtiger_salesorder.subject ASC LIMIT 0, 20 +01/18/13 11:04:39,998 [76] DEBUG index - Entering getListViewHeader(SalesOrder,,ASC,subject,2,) method ... +01/18/13 11:04:39,999 [76] DEBUG index - Entering getURLstring(SalesOrder) method ... +01/18/13 11:04:39,999 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:39,999 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:39,999 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:39,999 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:39,999 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,000 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:40,001 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,001 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,002 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,002 [76] DEBUG index - function getTranslatedString(Order No) - translated to (订单编号) +01/18/13 11:04:40,002 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,002 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,002 [76] DEBUG index - function getTranslatedString(订单编号) - translated to (订单编号) +01/18/13 11:04:40,004 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,004 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,005 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:40,006 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,007 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:40,007 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,007 [76] DEBUG index - function getTranslatedString(Quote Name) - translated to (报价单名称) +01/18/13 11:04:40,007 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,007 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,007 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:40,009 [76] DEBUG index - Entering return_module_language(zh_cn,SalesOrder) method ... +01/18/13 11:04:40,009 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,009 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:40,011 [76] DEBUG index - Entering isPermitted(SalesOrder,EditView,) method ... +01/18/13 11:04:40,012 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,012 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:40,013 [76] DEBUG index - Entering getListViewEntries(SalesOrder,SalesOrder,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,salesorderid,subject,potentialid,customerno,salesorder_no,quoteid,vendorterms,contactid,vendorid,duedate,carrier,pending,type,adjustment,salescommission,exciseduty,total,subtotal,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,purchaseorder,sostatus,currency_id,conversion_rate,enable_recurring,quotename,accountname,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,SalesOrderEditView,DeleteSalesOrder,) method ... +01/18/13 11:04:40,013 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,014 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,015 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:40,015 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,016 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:40,016 [76] DEBUG index - Prepared sql query parameters : [22,salesorder_no,subject,account_id,quote_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:40,021 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:40,021 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:40,021 [76] DEBUG index - Entering getTabid(SalesOrder) method ... +01/18/13 11:04:40,021 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,021 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,021 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,021 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:40,021 [76] DEBUG index - Prepared sql query parameters : [6,22] +01/18/13 11:04:40,024 [76] INFO index - getNextRow +01/18/13 11:04:40,025 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:40,025 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:40,025 [76] DEBUG index - Exiting get_salesorder method ... +01/18/13 11:04:40,030 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:40,031 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:40,031 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:40,031 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:40,032 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Quotes', + 'relation_id' => '3', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:40,032 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:40,032 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:40,032 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:40,032 [76] INFO index - current module is Accounts +01/18/13 11:04:40,085 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:40,085 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:40,085 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:40,085 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,086 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,086 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,086 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,086 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,086 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:40,095 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,096 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,096 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,096 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:40,096 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:40,097 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:40,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,098 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:40,098 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,098 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:40,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,099 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:40,099 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,100 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:40,100 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,100 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:40,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,101 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:40,101 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,101 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:40,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,102 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:40,102 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,102 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:40,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,103 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:40,103 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,104 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:40,104 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,104 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:40,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,105 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:40,105 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,105 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:40,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,106 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:40,106 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,106 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:40,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,107 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:40,107 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,107 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:40,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,108 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:40,108 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,109 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:40,109 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,109 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:40,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,110 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:40,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,110 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:40,110 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,110 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:40,111 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,111 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:40,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,112 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:40,112 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,112 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:40,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,113 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:40,113 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:40,113 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,113 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:40,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,114 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:40,114 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,114 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:40,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,115 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:40,115 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,116 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:40,116 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,116 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:40,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,117 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:40,117 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,117 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:40,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,118 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:40,118 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,118 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:40,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,119 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:40,119 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,120 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:40,120 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,120 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:40,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,121 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:40,121 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,121 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:40,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,122 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:40,122 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,122 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:40,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,123 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:40,123 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,123 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:40,139 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:40,139 [76] DEBUG index - Prepared sql query parameters : [242,1,Accounts,AccountsAjax,2,2013-01-18 11:04:40] +01/18/13 11:04:40,142 [76] DEBUG index - Current user is: admin +01/18/13 11:04:40,142 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:40,142 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:40,142 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:40,145 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:40,145 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:40,147 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:40,147 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:40,149 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:40,149 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,150 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,150 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:40,150 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:40,150 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:40,150 [76] DEBUG index - skipping headers +01/18/13 11:04:40,150 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:40,151 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,153 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:40,153 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:40,153 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,153 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,153 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,153 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,154 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,154 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:40,162 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,162 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,162 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,166 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:40,167 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:40,170 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:40,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,170 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,170 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,170 [76] DEBUG index - Entering get_quotes(2) method ... +01/18/13 11:04:40,170 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:40,170 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:40,176 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:04:40,176 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:04:40,176 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,176 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,176 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,177 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,177 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,177 [76] DEBUG index - Prepared sql query parameters : [20] +01/18/13 11:04:40,184 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,184 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,185 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,185 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,185 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,186 [76] DEBUG index - Entering getFieldVisibilityPermission(Quotes,1,account_id) method ... +01/18/13 11:04:40,187 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,187 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,187 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:40,187 [76] DEBUG index - Entering isPermitted(Quotes,1,) method ... +01/18/13 11:04:40,188 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,188 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,188 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:04:40,188 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,189 [76] DEBUG index - function getTranslatedString(Quote) - translated to (报价单) +01/18/13 11:04:40,189 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:40,189 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:40,192 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Quotes,Quotes,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:40,195 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,195 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,195 [76] DEBUG index - Entering function initSortByField (Quotes) +01/18/13 11:04:40,195 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,196 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,196 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:40,196 [76] DEBUG index - Prepared sql query parameters : [20,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:40,201 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:40,201 [76] DEBUG index - Entering getColumnFields(Quotes) method ... +01/18/13 11:04:40,202 [76] DEBUG index - in getColumnFields Quotes +01/18/13 11:04:40,202 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,202 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,202 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,203 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,203 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,203 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:40,203 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_quotes INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_quotes.quoteid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_quotes.accountid LEFT OUTER JOIN vtiger_potential ON vtiger_potential.potentialid = vtiger_quotes.potentialid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:40,206 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_quotes.*, + vtiger_potential.potentialname, + vtiger_account.accountname + FROM vtiger_quotes + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_quotes.quoteid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_quotes.accountid + LEFT OUTER JOIN vtiger_potential + ON vtiger_potential.potentialid = vtiger_quotes.potentialid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:04:40,240 [76] DEBUG index - Entering getListViewHeader(Quotes,,ASC,crmid,2,) method ... +01/18/13 11:04:40,241 [76] DEBUG index - Entering getURLstring(Quotes) method ... +01/18/13 11:04:40,241 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:40,241 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,241 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,241 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,241 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,242 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,243 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,243 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,244 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,244 [76] DEBUG index - function getTranslatedString(Quote No) - translated to (报价单编号) +01/18/13 11:04:40,246 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,246 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,246 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:40,248 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,248 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,248 [76] DEBUG index - function getTranslatedString(Quote Stage) - translated to (报价单状态) +01/18/13 11:04:40,250 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,250 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,250 [76] DEBUG index - function getTranslatedString(Potential Name) - translated to (销售机会名称) +01/18/13 11:04:40,250 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,250 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,250 [76] DEBUG index - function getTranslatedString(Account Name) - translated to (客户名称) +01/18/13 11:04:40,251 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,251 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,251 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:40,252 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,253 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:40,254 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:40,255 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,255 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:40,257 [76] DEBUG index - Entering getListViewEntries(Quotes,Quotes,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +Administrator,75,1,1,1,Quotes,,2012-12-06 03:40:56,2012-12-06 03:40:56,,,0,1,0,75,Cont_Quote,3,Accepted,2007-10-29,26,QUO2,110.000,UPS,,0,,10.000,160.000,individual,0.000,10.000,50.000,2,,1,1.000,vtiger - 1000 units,vtiger +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:40,257 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,257 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,258 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,258 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,259 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?) +01/18/13 11:04:40,259 [76] DEBUG index - Prepared sql query parameters : [20,quote_no,subject,quotestage,potential_id,account_id,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:40,263 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quote_no,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:40,264 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,264 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,265 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,266 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,266 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,266 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,266 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:40,267 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,subject,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:40,267 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,267 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,269 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,269 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,269 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,269 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,269 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:40,270 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,quotestage,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:40,271 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,271 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,272 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,272 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,272 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,272 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,273 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:40,273 [76] DEBUG index - Entering getPotentialName(3) method ... +01/18/13 11:04:40,273 [76] INFO index - in getPotentialName 3 +01/18/13 11:04:40,273 [76] DEBUG index - Prepared sql query being executed : select potentialname from vtiger_potential where potentialid=? +01/18/13 11:04:40,273 [76] DEBUG index - Prepared sql query parameters : [3] +01/18/13 11:04:40,275 [76] DEBUG index - Exiting getPotentialName method ... +01/18/13 11:04:40,276 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,hdnGrandTotal,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:40,276 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,277 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,278 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,278 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,278 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,278 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,278 [76] DEBUG index - Entering into function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:04:40,279 [76] DEBUG index - Prepared sql query being executed : select currency_id, vtiger_quotes.conversion_rate as conv_rate, vtiger_currency_info.* from vtiger_quotes + inner join vtiger_currency_info on vtiger_quotes.currency_id = vtiger_currency_info.id + where quoteid=? +01/18/13 11:04:40,279 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:04:40,281 [76] DEBUG index - Exit from function getInventoryCurrencyInfo(Quotes, 75). +01/18/13 11:04:40,282 [76] DEBUG index - Entering getCurrencySymbolandCRate(2) method ... +01/18/13 11:04:40,282 [76] DEBUG index - Entering getCurrencyName(2) method ... +01/18/13 11:04:40,282 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_currency_info where id= ? +01/18/13 11:04:40,282 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:40,284 [76] DEBUG index - Exiting getCurrencyName method ... +01/18/13 11:04:40,285 [76] DEBUG index - Exiting getCurrencySymbolandCRate method ... +01/18/13 11:04:40,285 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:40,285 [76] DEBUG index - Entering getValue(Array,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,quoteid,subject,potentialid,quotestage,validtill,contactid,quote_no,subtotal,carrier,shipping,inventorymanager,type,adjustment,total,taxtype,discount_percent,discount_amount,s_h_amount,accountid,terms_conditions,currency_id,conversion_rate,potentialname,accountname +,assigned_user_id,Quotes,Quotes,75,0,list,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,) method ... +01/18/13 11:04:40,286 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,286 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,287 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,288 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,288 [76] DEBUG index - Entering return_module_language(zh_cn,Quotes) method ... +01/18/13 11:04:40,288 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,288 [76] DEBUG index - Exiting getValue method ... +01/18/13 11:04:40,288 [76] DEBUG index - Entering isPermitted(Quotes,EditView,) method ... +01/18/13 11:04:40,289 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,289 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,289 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,290 [76] DEBUG index - Entering isPermitted(Quotes,Delete,) method ... +01/18/13 11:04:40,291 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,291 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,291 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,297 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:40,297 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:40,297 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,298 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,298 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,299 [76] DEBUG index - Prepared sql query being executed : SELECT viewedtime,modifiedtime,smcreatorid,smownerid,modifiedby FROM vtiger_crmentity WHERE crmid=? +01/18/13 11:04:40,299 [76] DEBUG index - Prepared sql query parameters : [75] +01/18/13 11:04:40,303 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:40,303 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:40,303 [76] DEBUG index - Entering getTabid(Quotes) method ... +01/18/13 11:04:40,303 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,304 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,304 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,304 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:40,304 [76] DEBUG index - Prepared sql query parameters : [6,20] +01/18/13 11:04:40,307 [76] INFO index - getNextRow +01/18/13 11:04:40,308 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:40,308 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:40,308 [76] DEBUG index - Exiting get_quotes method ... +01/18/13 11:04:40,312 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:40,312 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:40,313 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:40,313 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:40,314 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activities', + 'relation_id' => '6', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:40,314 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:40,314 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:40,314 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:40,314 [76] INFO index - current module is Accounts +01/18/13 11:04:40,365 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:40,365 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:40,365 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:40,365 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,366 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,366 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,366 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,366 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,366 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:40,375 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,375 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,375 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,375 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:40,376 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:40,376 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:40,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,377 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:40,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,378 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:40,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,378 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:40,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,379 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:40,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,379 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:40,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,380 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:40,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,381 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:40,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,381 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:40,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,382 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:40,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,382 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:40,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,383 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:40,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,383 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:40,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,384 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:40,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,384 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:40,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,385 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:40,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,385 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:40,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,386 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:40,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,387 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:40,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,387 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:40,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,388 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:40,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,388 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:40,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,389 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:40,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,389 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:40,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,389 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:40,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,390 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:40,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,391 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:40,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,391 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:40,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,392 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:40,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,392 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:40,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,393 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:40,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,393 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:40,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,394 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:40,395 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:40,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,395 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:40,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,395 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:40,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,396 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:40,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,396 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:40,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,397 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:40,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,397 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:40,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,398 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:40,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,399 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:40,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,399 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:40,399 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,400 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:40,400 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,400 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:40,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,401 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:40,401 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,401 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:40,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,402 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:40,402 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,402 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:40,411 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:40,411 [76] DEBUG index - Prepared sql query parameters : [243,1,Accounts,AccountsAjax,2,2013-01-18 11:04:40] +01/18/13 11:04:40,415 [76] DEBUG index - Current user is: admin +01/18/13 11:04:40,415 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:40,415 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:40,415 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:40,417 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:40,417 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:40,420 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:40,420 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:40,421 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:40,422 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,422 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,422 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:40,423 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:40,423 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:40,423 [76] DEBUG index - skipping headers +01/18/13 11:04:40,423 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:40,424 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,426 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:40,426 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:40,426 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,426 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,426 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,426 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,426 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:40,434 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,434 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,434 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,438 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:40,438 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:40,449 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:40,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,449 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,449 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,449 [76] DEBUG index - Entering get_activities(2) method ... +01/18/13 11:04:40,449 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:40,449 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:40,452 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:40,452 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:40,452 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,452 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,452 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?,?) +01/18/13 11:04:40,452 [76] DEBUG index - Prepared sql query parameters : [9,16] +01/18/13 11:04:40,462 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,462 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,462 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:40,463 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,463 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,463 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,463 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,465 [76] DEBUG index - Entering isPermitted(Calendar,1,) method ... +01/18/13 11:04:40,465 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,465 [76] DEBUG index - Entering getFieldVisibilityPermission(Calendar,1,parent_id) method ... +01/18/13 11:04:40,465 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,466 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,466 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:40,466 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:40,466 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,467 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,467 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:40,467 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,467 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,467 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,468 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:40,468 [76] DEBUG index - Entering getFieldVisibilityPermission(Events,1,parent_id) method ... +01/18/13 11:04:40,468 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:40,468 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,468 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:40,468 [76] DEBUG index - function getTranslatedString(LBL_NEW) - translated to (新增) +01/18/13 11:04:40,469 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,469 [76] DEBUG index - function getTranslatedString(LBL_TODO) - translated to (任务) +01/18/13 11:04:40,469 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,469 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,469 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,469 [76] DEBUG index - function getTranslatedString(LBL_EVENT) - translated to (事件) +01/18/13 11:04:40,469 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:40,469 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:40,472 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Calendar,Activity,SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) , ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:40,475 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,475 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,476 [76] DEBUG index - Entering function initSortByField (Calendar) +01/18/13 11:04:40,476 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,476 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?,?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:40,476 [76] DEBUG index - Prepared sql query parameters : [9,16,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:40,480 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:40,480 [76] DEBUG index - Entering getColumnFields(Calendar) method ... +01/18/13 11:04:40,480 [76] DEBUG index - in getColumnFields Calendar +01/18/13 11:04:40,480 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,480 [76] DEBUG index - Entering getTabid(Events) method ... +01/18/13 11:04:40,480 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,481 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,481 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,481 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,481 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:40,482 [76] DEBUG index - Entering getTableNameForField(Calendar,due_date) method ... +01/18/13 11:04:40,482 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,482 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?,?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:40,482 [76] DEBUG index - Prepared sql query parameters : [9,16,%due_date%] +01/18/13 11:04:40,484 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:40,485 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity INNER JOIN vtiger_seactivityrel ON vtiger_seactivityrel.activityid = vtiger_activity.activityid INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_activity.activityid LEFT JOIN vtiger_cntactivityrel ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT OUTER JOIN vtiger_recurringevents ON vtiger_recurringevents.activityid = vtiger_activity.activityid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_seactivityrel.crmid = 2 AND vtiger_crmentity.deleted = 0 AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) +01/18/13 11:04:40,488 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_activity.*, vtiger_cntactivityrel.*, + vtiger_seactivityrel.*, vtiger_contactdetails.lastname, + vtiger_contactdetails.firstname, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime, + case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_recurringevents.recurringtype + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_cntactivityrel + ON vtiger_cntactivityrel.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid = vtiger_cntactivityrel.contactid + LEFT JOIN vtiger_users + ON vtiger_users.id = vtiger_crmentity.smownerid + LEFT OUTER JOIN vtiger_recurringevents + ON vtiger_recurringevents.activityid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 + AND ((vtiger_activity.activitytype='Task' and vtiger_activity.status not in ('Completed','Deferred')) + OR (vtiger_activity.activitytype not in ('Emails','Task') and vtiger_activity.eventstatus not in ('','Held'))) ORDER BY vtiger_activity.due_date ASC LIMIT 0, 20 +01/18/13 11:04:40,493 [76] DEBUG index - Entering getListViewHeader(Calendar,,ASC,due_date,2,) method ... +01/18/13 11:04:40,493 [76] DEBUG index - Entering getURLstring(Activity) method ... +01/18/13 11:04:40,494 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:40,494 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,494 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,494 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,494 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,495 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,496 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,496 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,496 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,496 [76] DEBUG index - function getTranslatedString(Close) - translated to (关闭) +01/18/13 11:04:40,498 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,498 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,499 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:40,500 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,501 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,501 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:40,503 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,503 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,503 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:40,503 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,503 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,503 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:04:40,505 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,505 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,505 [76] DEBUG index - function getTranslatedString(Start Time) - translated to (开始时间) +01/18/13 11:04:40,505 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,506 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,506 [76] DEBUG index - function getTranslatedString(开始时间) - translated to (开始时间) +01/18/13 11:04:40,508 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,508 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,508 [76] DEBUG index - function getTranslatedString(End Date) - translated to (结束日期) +01/18/13 11:04:40,510 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,510 [76] DEBUG index - function getTranslatedString(End Time) - translated to (结束时间) +01/18/13 11:04:40,510 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,510 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,511 [76] DEBUG index - function getTranslatedString(结束时间) - translated to (结束时间) +01/18/13 11:04:40,512 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,513 [76] DEBUG index - function getTranslatedString(Recurring Type) - translated to (重复类型) +01/18/13 11:04:40,514 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,515 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,515 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:40,516 [76] DEBUG index - Entering return_module_language(zh_cn,Calendar) method ... +01/18/13 11:04:40,517 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,517 [76] DEBUG index - function getTranslatedString(Contact Name) - translated to (联系人姓名) +01/18/13 11:04:40,518 [76] DEBUG index - Entering isPermitted(Calendar,EditView,) method ... +01/18/13 11:04:40,519 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,519 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:40,520 [76] DEBUG index - Entering getListViewEntries(Activity,Calendar,activityid,subject,semodule,activitytype,date_start,due_date,time_start,time_end,sendnotification,duration_hours,duration_minutes,status,eventstatus,priority,location,notime,visibility,recurringtype,contactid,activityid,crmid,activityid,lastname,firstname,crmid,smownerid,modifiedtime,user_name,recurringtype +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:40,520 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,521 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,522 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,522 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,522 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid in (9,16) and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?,?,?,?,?,?) +01/18/13 11:04:40,523 [76] DEBUG index - Prepared sql query parameters : [status,activitytype,subject,parent_id,date_start,time_start,due_date,time_end,recurringtype,assigned_user_id,contact_id] +01/18/13 11:04:40,527 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:40,527 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=due_date&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:40,527 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:40,527 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,528 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,528 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,528 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:40,528 [76] DEBUG index - Prepared sql query parameters : [6,9] +01/18/13 11:04:40,531 [76] INFO index - getNextRow +01/18/13 11:04:40,532 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:40,532 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:40,533 [76] DEBUG index - Exiting get_activities method ... +01/18/13 11:04:40,538 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:40,538 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:40,539 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:40,539 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:40,539 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Invoice', + 'relation_id' => '5', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:40,540 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:40,540 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:40,540 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:40,540 [76] INFO index - current module is Accounts +01/18/13 11:04:40,593 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:40,593 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:40,593 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:40,594 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,594 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,594 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,594 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,595 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,595 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:40,605 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,605 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,605 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,605 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:40,606 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:40,606 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:40,607 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,607 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,608 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:40,608 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,608 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,609 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:40,609 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,610 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:40,610 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,610 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,611 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:40,611 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,611 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,612 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:40,612 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,612 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:40,612 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:40,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,613 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:40,613 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,614 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:40,614 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,614 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:40,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,615 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:40,615 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,615 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:40,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,616 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:40,616 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,616 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:40,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,617 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:40,617 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,617 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:40,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,618 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:40,618 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,618 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:40,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,619 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:40,619 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,620 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:40,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,620 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:40,620 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,620 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:40,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,621 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:40,621 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,621 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:40,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,622 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:40,622 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,623 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:40,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,623 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:40,623 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,624 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:40,624 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,624 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:40,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,625 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:40,625 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,625 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:40,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,626 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:40,626 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,626 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:40,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,627 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:40,627 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,627 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:40,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,628 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:40,628 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,628 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:40,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,629 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:40,629 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,630 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:40,630 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,630 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:40,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,631 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:40,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,631 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:40,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,632 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:40,632 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,632 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:40,637 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:40,637 [76] DEBUG index - Prepared sql query parameters : [244,1,Accounts,AccountsAjax,2,2013-01-18 11:04:40] +01/18/13 11:04:40,640 [76] DEBUG index - Current user is: admin +01/18/13 11:04:40,641 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:40,641 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:40,641 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:40,643 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:40,643 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:40,645 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:40,645 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:40,647 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:40,647 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,648 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,648 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:40,648 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:40,648 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:40,648 [76] DEBUG index - skipping headers +01/18/13 11:04:40,649 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:40,649 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,651 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:40,651 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:40,651 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,651 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,652 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,652 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,652 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,652 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:40,659 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,659 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,659 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,663 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:40,664 [76] DEBUG index - Prepared sql query parameters : [5] +01/18/13 11:04:40,666 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:40,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,666 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,666 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,666 [76] DEBUG index - Entering get_invoices(2) method ... +01/18/13 11:04:40,667 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:40,667 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:04:40,670 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:04:40,670 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:04:40,670 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:04:40,670 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,671 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,671 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,671 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,671 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,671 [76] DEBUG index - Prepared sql query parameters : [23] +01/18/13 11:04:40,679 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,679 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,679 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,679 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:04:40,679 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,679 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,681 [76] DEBUG index - Entering getFieldVisibilityPermission(Invoice,1,account_id) method ... +01/18/13 11:04:40,681 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,681 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,681 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:40,682 [76] DEBUG index - Entering isPermitted(Invoice,1,) method ... +01/18/13 11:04:40,682 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,682 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,682 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:40,682 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,683 [76] DEBUG index - function getTranslatedString(Invoice) - translated to (发货单) +01/18/13 11:04:40,683 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:40,683 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:40,685 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Invoice,Invoice,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:40,688 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,689 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,689 [76] DEBUG index - Entering function initSortByField (Invoice) +01/18/13 11:04:40,689 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,689 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,689 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:40,689 [76] DEBUG index - Prepared sql query parameters : [23,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:40,693 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:40,693 [76] DEBUG Invoice - Entering Invoice() method ... +01/18/13 11:04:40,693 [76] DEBUG index - Entering getColumnFields(Invoice) method ... +01/18/13 11:04:40,693 [76] DEBUG index - in getColumnFields Invoice +01/18/13 11:04:40,693 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,694 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,694 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,694 [76] DEBUG Invoice - Exiting Invoice method ... +01/18/13 11:04:40,694 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,695 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,695 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:40,695 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_invoice INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid LEFT OUTER JOIN vtiger_account ON vtiger_account.accountid = vtiger_invoice.accountid LEFT OUTER JOIN vtiger_salesorder ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:40,698 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_crmentity.*, + vtiger_invoice.*, + vtiger_account.accountname, + vtiger_salesorder.subject AS salessubject + FROM vtiger_invoice + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_invoice.invoiceid + LEFT OUTER JOIN vtiger_account + ON vtiger_account.accountid = vtiger_invoice.accountid + LEFT OUTER JOIN vtiger_salesorder + ON vtiger_salesorder.salesorderid = vtiger_invoice.salesorderid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_crmentity.smownerid = vtiger_users.id + WHERE vtiger_crmentity.deleted = 0 + AND vtiger_account.accountid = 2 ORDER BY crmid ASC LIMIT 0, 20 +01/18/13 11:04:40,724 [76] DEBUG index - Entering getListViewHeader(Invoice,,ASC,crmid,2,) method ... +01/18/13 11:04:40,724 [76] DEBUG index - Entering getURLstring(Invoice) method ... +01/18/13 11:04:40,724 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:40,724 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,724 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,724 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,724 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,726 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,726 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,726 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,727 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,727 [76] DEBUG index - function getTranslatedString(Invoice No) - translated to (发货单编号) +01/18/13 11:04:40,729 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,729 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,729 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:40,731 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,731 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,731 [76] DEBUG index - function getTranslatedString(Sales Order) - translated to (销售订单) +01/18/13 11:04:40,732 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,732 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,732 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:40,734 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,734 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,734 [76] DEBUG index - function getTranslatedString(Total) - translated to (合计) +01/18/13 11:04:40,736 [76] DEBUG index - Entering return_module_language(zh_cn,Invoice) method ... +01/18/13 11:04:40,736 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,736 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:40,738 [76] DEBUG index - Entering isPermitted(Invoice,EditView,) method ... +01/18/13 11:04:40,738 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,738 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:40,740 [76] DEBUG index - Entering getListViewEntries(Invoice,Invoice,user_name,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,invoiceid,subject,salesorderid,customerno,contactid,notes,invoicedate,duedate,invoiceterms,type,adjustment,salescommission,exciseduty,subtotal,total,taxtype,discount_percent,discount_amount,s_h_amount,shipping,accountid,terms_conditions,purchaseorder,invoicestatus,invoice_no,currency_id,conversion_rate,accountname,salessubject +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:40,740 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,740 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,741 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,741 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,742 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:40,742 [76] DEBUG index - Prepared sql query parameters : [23,invoice_no,subject,salesorder_id,invoicestatus,hdnGrandTotal,assigned_user_id] +01/18/13 11:04:40,745 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:40,746 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:40,746 [76] DEBUG index - Entering getTabid(Invoice) method ... +01/18/13 11:04:40,746 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,746 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,746 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,746 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:40,746 [76] DEBUG index - Prepared sql query parameters : [6,23] +01/18/13 11:04:40,756 [76] INFO index - getNextRow +01/18/13 11:04:40,757 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:40,758 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:40,758 [76] DEBUG index - Exiting get_invoices method ... +01/18/13 11:04:40,762 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:40,762 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:40,762 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:40,763 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:40,763 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Emails', + 'relation_id' => '7', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:40,763 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:40,763 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:40,763 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:40,764 [76] INFO index - current module is Accounts +01/18/13 11:04:40,816 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:40,817 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:40,817 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:40,817 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,817 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,818 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,818 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,818 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,818 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:40,827 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:40,827 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,827 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,828 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:40,829 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:40,828 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:40,829 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:40,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,830 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:40,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,830 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:40,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,831 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:40,831 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,831 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:40,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,832 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:40,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,832 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:40,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,833 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:40,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,834 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:40,834 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,834 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:40,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,835 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:40,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,835 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:40,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,836 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:40,836 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,836 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:40,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,837 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:40,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,837 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:40,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,838 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:40,838 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,838 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:40,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,839 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:40,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,839 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:40,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,840 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:40,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,840 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:40,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,841 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:40,841 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,841 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:40,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,842 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:40,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,842 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:40,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,843 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:40,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,843 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:40,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,844 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:40,844 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,844 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:40,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,845 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:40,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,845 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:40,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,846 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:40,846 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,847 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:40,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,847 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:40,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,848 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:40,848 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,848 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:40,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,849 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:40,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,849 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:40,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,850 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:40,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,850 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:40,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,851 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:40,851 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,851 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:40,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,852 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:40,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,853 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:40,853 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,853 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:40,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,854 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:40,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,854 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:40,858 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:40,858 [76] DEBUG index - Prepared sql query parameters : [245,1,Accounts,AccountsAjax,2,2013-01-18 11:04:40] +01/18/13 11:04:40,874 [76] DEBUG index - Current user is: admin +01/18/13 11:04:40,874 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:40,874 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:40,874 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:40,877 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:40,877 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:40,879 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:40,879 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:40,881 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:40,881 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,882 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,882 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:40,882 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:40,882 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:40,882 [76] DEBUG index - skipping headers +01/18/13 11:04:40,882 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:40,883 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,885 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:40,885 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:40,885 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,885 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,885 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,886 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,886 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,886 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:40,893 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,893 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,893 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,897 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:40,898 [76] DEBUG index - Prepared sql query parameters : [7] +01/18/13 11:04:40,900 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:40,900 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:40,900 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,900 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,901 [76] DEBUG index - Entering get_emails(2) method ... +01/18/13 11:04:40,901 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:40,901 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:40,903 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:04:40,903 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:04:40,903 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:04:40,904 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,904 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,904 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,904 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,904 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:40,904 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:40,910 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,910 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,910 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,910 [76] DEBUG email - Exiting Email method ... +01/18/13 11:04:40,910 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,911 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,912 [76] DEBUG index - Entering isPermitted(Emails,1,) method ... +01/18/13 11:04:40,913 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,913 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,913 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:40,913 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:40,913 [76] DEBUG index - function getTranslatedString(Email) - translated to (电子邮件) +01/18/13 11:04:40,913 [76] DEBUG index - Prepared sql query being executed : SELECT contactid FROM vtiger_contactdetails + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_contactdetails.contactid + WHERE vtiger_contactdetails.accountid = ? AND vtiger_crmentity.deleted = 0 +01/18/13 11:04:40,914 [76] DEBUG index - Prepared sql query parameters : [2] +01/18/13 11:04:40,917 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:40,917 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:40,919 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Emails,Emails,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id + FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid=vtiger_crmentity.smownerid + WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid + AND vtiger_seactivityrel.crmid IN (2,130) + AND vtiger_users.id=vtiger_crmentity.smownerid + AND vtiger_crmentity.crmid = vtiger_activity.activityid + AND vtiger_account.accountid = 2 + AND vtiger_activity.activitytype='Emails' + AND vtiger_crmentity.deleted = 0,,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:40,922 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:40,923 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,923 [76] DEBUG index - Entering function initSortByField (Emails) +01/18/13 11:04:40,923 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,923 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,923 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:40,923 [76] DEBUG index - Prepared sql query parameters : [10,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:40,926 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:40,927 [76] DEBUG email - Entering Emails() method ... +01/18/13 11:04:40,927 [76] DEBUG index - Entering getColumnFields(Emails) method ... +01/18/13 11:04:40,927 [76] DEBUG index - in getColumnFields Emails +01/18/13 11:04:40,927 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,927 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,927 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:40,927 [76] DEBUG email - Exiting Email method ... +01/18/13 11:04:40,928 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:40,928 [76] DEBUG index - Entering getTableNameForField(Emails,date_start) method ... +01/18/13 11:04:40,928 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,928 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:40,928 [76] DEBUG index - Prepared sql query parameters : [10,%date_start%] +01/18/13 11:04:40,931 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:40,931 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 +01/18/13 11:04:40,934 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_activity.activityid, vtiger_activity.subject, vtiger_activity.activitytype, vtiger_crmentity.modifiedtime, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, vtiger_activity.date_start, vtiger_seactivityrel.crmid as parent_id FROM vtiger_activity, vtiger_seactivityrel, vtiger_account, vtiger_users, vtiger_crmentity LEFT JOIN vtiger_groups ON vtiger_groups.groupid=vtiger_crmentity.smownerid and vtiger_crmentity.smownerid=1 WHERE vtiger_seactivityrel.activityid = vtiger_activity.activityid AND vtiger_seactivityrel.crmid IN (2,130) AND vtiger_users.id=vtiger_crmentity.smownerid AND vtiger_crmentity.crmid = vtiger_activity.activityid AND vtiger_account.accountid = 2 AND vtiger_activity.activitytype='Emails' AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start ASC LIMIT 0, 20 +01/18/13 11:04:40,940 [76] DEBUG index - Entering getListViewHeader(Emails,,ASC,date_start,2,) method ... +01/18/13 11:04:40,940 [76] DEBUG index - Entering getURLstring(Emails) method ... +01/18/13 11:04:40,940 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:40,940 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,940 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,940 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,941 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,942 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,942 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,943 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,943 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,944 [76] DEBUG index - function getTranslatedString(Subject) - translated to (标题) +01/18/13 11:04:40,945 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,946 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,946 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:40,946 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,946 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,946 [76] DEBUG index - function getTranslatedString(Date Sent) - translated to (发送日期) +01/18/13 11:04:40,948 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,948 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,948 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:40,948 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,949 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,949 [76] DEBUG index - function getTranslatedString(负责人) - translated to (负责人) +01/18/13 11:04:40,950 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,951 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,951 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:04:40,951 [76] DEBUG index - Entering return_module_language(zh_cn,Emails) method ... +01/18/13 11:04:40,951 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:40,951 [76] DEBUG index - function getTranslatedString(Access Count) - translated to (Access Count) +01/18/13 11:04:40,951 [76] DEBUG index - Entering isPermitted(Emails,EditView,) method ... +01/18/13 11:04:40,952 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:40,952 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:40,953 [76] DEBUG index - Entering getListViewEntries(Emails,Emails,user_name,activityid,subject,activitytype,modifiedtime,crmid,smownerid,date_start,parent_id +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:40,953 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:40,953 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:40,954 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,955 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,955 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:40,955 [76] DEBUG index - Prepared sql query parameters : [10,subject,parent_id,date_start,assigned_user_id,access_count] +01/18/13 11:04:40,959 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:40,959 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=date_start&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:40,959 [76] DEBUG index - Entering getTabid(Emails) method ... +01/18/13 11:04:40,959 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,959 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:40,959 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:40,959 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:40,959 [76] DEBUG index - Prepared sql query parameters : [6,10] +01/18/13 11:04:40,962 [76] INFO index - getNextRow +01/18/13 11:04:40,963 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:40,963 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:40,963 [76] DEBUG index - Exiting get_emails method ... +01/18/13 11:04:40,967 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:40,967 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:40,968 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:40,968 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:40,968 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Activity History', + 'relation_id' => '8', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:40,968 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:40,969 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:40,969 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:40,969 [76] INFO index - current module is Accounts +01/18/13 11:04:41,010 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:41,010 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:41,010 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:41,010 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,011 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,011 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,011 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,011 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:41,020 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,020 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,021 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:41,021 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:41,022 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:41,022 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,022 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:41,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,023 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:41,023 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,023 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:41,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,024 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:41,024 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,024 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:41,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,025 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,025 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,026 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,026 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:41,026 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,027 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,027 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,027 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,028 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:41,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,028 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:41,028 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,029 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:41,029 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,029 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:41,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,030 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:41,030 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,030 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:41,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,031 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:41,031 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,031 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:41,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,032 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:41,032 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,032 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,033 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:41,033 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,033 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:41,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,034 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:41,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,034 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:41,034 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,034 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:41,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,035 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:41,035 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,035 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:41,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,036 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:41,036 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,036 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:41,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,037 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:41,037 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,037 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:41,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,038 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:41,038 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,038 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:41,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,039 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:41,039 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:41,039 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,039 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:41,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,040 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:41,040 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,041 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:41,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,041 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:41,041 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,042 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:41,042 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,042 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:41,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,043 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:41,043 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,043 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:41,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,044 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:41,044 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,044 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:41,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,045 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:41,045 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,045 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:41,046 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,046 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:41,050 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:41,050 [76] DEBUG index - Prepared sql query parameters : [246,1,Accounts,AccountsAjax,2,2013-01-18 11:04:41] +01/18/13 11:04:41,053 [76] DEBUG index - Current user is: admin +01/18/13 11:04:41,054 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:41,054 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:41,054 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:41,056 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:41,056 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:41,058 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:41,058 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:41,060 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:41,060 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,061 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,061 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:41,061 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:41,061 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:41,062 [76] DEBUG index - skipping headers +01/18/13 11:04:41,062 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:41,062 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,064 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:41,064 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:41,064 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,065 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,065 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,065 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,065 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:41,073 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,073 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,074 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,078 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:41,078 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:41,080 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,080 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,080 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,080 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,080 [76] DEBUG index - Entering get_history(2) method ... +01/18/13 11:04:41,081 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:41,081 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:41,083 [76] DEBUG index - Exiting get_history method ... +01/18/13 11:04:41,083 [76] DEBUG index - Entering getHistory(Accounts,SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0,2) method ... +01/18/13 11:04:41,084 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:41,084 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,085 [76] DEBUG index - Entering getTabid(Calendar) method ... +01/18/13 11:04:41,085 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,085 [76] DEBUG index - query being executed : SELECT vtiger_activity.activityid, vtiger_activity.subject, + vtiger_activity.status, vtiger_activity.eventstatus, + vtiger_activity.activitytype, vtiger_activity.date_start, vtiger_activity.due_date, + vtiger_activity.time_start, vtiger_activity.time_end, + vtiger_crmentity.modifiedtime, vtiger_crmentity.createdtime, + vtiger_crmentity.description,case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name + FROM vtiger_activity + INNER JOIN vtiger_seactivityrel + ON vtiger_seactivityrel.activityid = vtiger_activity.activityid + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_activity.activityid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + WHERE (vtiger_activity.activitytype != 'Emails') + AND (vtiger_activity.status = 'Completed' + OR vtiger_activity.status = 'Deferred' + OR (vtiger_activity.eventstatus = 'Held' + AND vtiger_activity.eventstatus != '')) + AND vtiger_seactivityrel.crmid = 2 + AND vtiger_crmentity.deleted = 0 ORDER BY vtiger_activity.date_start DESC,vtiger_activity.time_start DESC +01/18/13 11:04:41,107 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:41,108 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:41,108 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:41,109 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:41,109 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Documents', + 'relation_id' => '9', + 'actions' => 'add,select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:41,109 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:41,109 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:41,109 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:41,109 [76] INFO index - current module is Accounts +01/18/13 11:04:41,150 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:41,150 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:41,150 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:41,150 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,151 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,151 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,151 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,151 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,151 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:41,160 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,160 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,160 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,161 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:41,161 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:41,162 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:41,162 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,162 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:41,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,163 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:41,163 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,163 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:41,164 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,164 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:41,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,165 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:41,165 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,165 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,166 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,166 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,166 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:41,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,167 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,167 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,167 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,168 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:41,168 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,169 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:41,169 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,169 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:41,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,170 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:41,170 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,170 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:41,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,171 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:41,171 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,171 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:41,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,172 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:41,172 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,172 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:41,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,173 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,173 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,174 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:41,174 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,174 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:41,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,175 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:41,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,175 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:41,175 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,176 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:41,176 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,176 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:41,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,177 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:41,177 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:41,177 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,177 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:41,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,178 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:41,178 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,178 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:41,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,179 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:41,179 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,180 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:41,180 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,180 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:41,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,181 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:41,181 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,181 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:41,182 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,182 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:41,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,183 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:41,183 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,183 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:41,184 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,184 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:41,184 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,184 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:41,185 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,185 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:41,185 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,185 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:41,186 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,186 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:41,186 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,187 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:41,187 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,187 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:41,188 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,188 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:41,188 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,188 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:41,192 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:41,193 [76] DEBUG index - Prepared sql query parameters : [247,1,Accounts,AccountsAjax,2,2013-01-18 11:04:41] +01/18/13 11:04:41,206 [76] DEBUG index - Current user is: admin +01/18/13 11:04:41,206 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:41,206 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:41,206 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:41,208 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:41,208 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:41,210 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:41,211 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:41,212 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:41,213 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,213 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,214 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:41,214 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:41,214 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:41,214 [76] DEBUG index - skipping headers +01/18/13 11:04:41,214 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:41,215 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,216 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:41,216 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:41,216 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,216 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,217 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,217 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,217 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,217 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:41,226 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,226 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,226 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,230 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:41,230 [76] DEBUG index - Prepared sql query parameters : [9] +01/18/13 11:04:41,233 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,233 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,233 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,233 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,234 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,234 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,235 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:41,235 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:41,237 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:04:41,237 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:04:41,237 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:04:41,238 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,238 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,238 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,238 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,238 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,238 [76] DEBUG index - Prepared sql query parameters : [8] +01/18/13 11:04:41,242 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,242 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,242 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,242 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:04:41,242 [76] DEBUG index - Entering isPermitted(Documents,4,) method ... +01/18/13 11:04:41,243 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,243 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,243 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:41,243 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,243 [76] DEBUG index - function getTranslatedString(Documents) - translated to (文档) +01/18/13 11:04:41,244 [76] DEBUG index - Entering isPermitted(Documents,1,) method ... +01/18/13 11:04:41,244 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,244 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:41,244 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:04:41,244 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:41,245 [76] DEBUG index - function getTranslatedString(Document) - translated to (文档) +01/18/13 11:04:41,245 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:41,245 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:41,247 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Documents,Documents,select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2,  ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:41,250 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,250 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,251 [76] DEBUG index - Entering function initSortByField (Documents) +01/18/13 11:04:41,251 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,251 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,251 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:41,251 [76] DEBUG index - Prepared sql query parameters : [8,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:41,254 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:41,254 [76] DEBUG notes - Entering Documents() method ... +01/18/13 11:04:41,255 [76] DEBUG index - Entering getColumnFields(Documents) method ... +01/18/13 11:04:41,255 [76] DEBUG index - in getColumnFields Documents +01/18/13 11:04:41,255 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,255 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,255 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,255 [76] DEBUG notes - Exiting Documents method ... +01/18/13 11:04:41,256 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,256 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,256 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:41,256 [76] DEBUG index - Entering getTableNameForField(Documents,title) method ... +01/18/13 11:04:41,256 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,256 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,256 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:41,256 [76] DEBUG index - Prepared sql query parameters : [8,%title%] +01/18/13 11:04:41,262 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:41,262 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_notes inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id where crm2.crmid=2 +01/18/13 11:04:41,265 [76] DEBUG index - Prepared sql query being executed : select case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name,'Documents' ActivityType,vtiger_attachments.type FileType,crm2.modifiedtime lastmodified,vtiger_crmentity.modifiedtime, + vtiger_seattachmentsrel.attachmentsid attachmentsid, vtiger_notes.notesid crmid, + vtiger_notes.notecontent description,vtiger_notes.* + from vtiger_notes + inner join vtiger_senotesrel on vtiger_senotesrel.notesid= vtiger_notes.notesid + inner join vtiger_crmentity on vtiger_crmentity.crmid= vtiger_notes.notesid and vtiger_crmentity.deleted=0 + inner join vtiger_crmentity crm2 on crm2.crmid=vtiger_senotesrel.crmid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + left join vtiger_seattachmentsrel on vtiger_seattachmentsrel.crmid =vtiger_notes.notesid + left join vtiger_attachments on vtiger_seattachmentsrel.attachmentsid = vtiger_attachments.attachmentsid + left join vtiger_users on vtiger_crmentity.smownerid= vtiger_users.id + where crm2.crmid=2 ORDER BY vtiger_notes.title ASC LIMIT 0, 20 +01/18/13 11:04:41,270 [76] DEBUG index - Entering getListViewHeader(Documents,,ASC,title,2,) method ... +01/18/13 11:04:41,271 [76] DEBUG index - Entering getURLstring(Documents) method ... +01/18/13 11:04:41,271 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:41,271 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,271 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,271 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,271 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,272 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,273 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,273 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:41,274 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,274 [76] DEBUG index - function getTranslatedString(Title) - translated to (标题) +01/18/13 11:04:41,276 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:41,276 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,276 [76] DEBUG index - function getTranslatedString(File Name) - translated to (附件) +01/18/13 11:04:41,278 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:41,278 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,278 [76] DEBUG index - function getTranslatedString(Modified Time) - translated to (修改时间) +01/18/13 11:04:41,280 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:41,280 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,280 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:41,282 [76] DEBUG index - Entering return_module_language(zh_cn,Documents) method ... +01/18/13 11:04:41,282 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,282 [76] DEBUG index - function getTranslatedString(Folder Name) - translated to (文件夹名称) +01/18/13 11:04:41,282 [76] DEBUG index - Entering isPermitted(Documents,EditView,) method ... +01/18/13 11:04:41,283 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,283 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:41,284 [76] DEBUG index - Entering getListViewEntries(Documents,Documents,user_name,ActivityType,FileType,lastmodified,modifiedtime,attachmentsid,crmid,description,notesid,note_no,title,filename,notecontent,folderid,filetype,filelocationtype,filedownloadcount,filestatus,filesize,fileversion +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:41,284 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,284 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,286 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,286 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,286 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:41,286 [76] DEBUG index - Prepared sql query parameters : [8,notes_title,filename,modifiedtime,assigned_user_id,folderid] +01/18/13 11:04:41,289 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:41,290 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:41,290 [76] DEBUG index - Entering getTabid(Documents) method ... +01/18/13 11:04:41,290 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,290 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,290 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,290 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:41,290 [76] DEBUG index - Prepared sql query parameters : [6,8] +01/18/13 11:04:41,293 [76] INFO index - getNextRow +01/18/13 11:04:41,294 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:41,294 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:41,299 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:41,299 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:41,299 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:41,300 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:41,300 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'HelpDesk', + 'relation_id' => '10', + 'actions' => 'add', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:41,300 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:41,300 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:41,301 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:41,301 [76] INFO index - current module is Accounts +01/18/13 11:04:41,356 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:41,356 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:41,357 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:41,357 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,357 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,357 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,358 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,358 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,358 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:41,369 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,370 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,370 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,370 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:41,371 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:41,371 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:41,371 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:41,372 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,372 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:41,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,373 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:41,373 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,373 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:41,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,374 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:41,374 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,374 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:41,375 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,375 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,376 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,376 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,376 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:41,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,377 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,377 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,377 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,378 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:41,378 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,379 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:41,379 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,379 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:41,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,380 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:41,380 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,380 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:41,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,381 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:41,381 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,382 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:41,382 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,382 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:41,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,383 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:41,383 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,383 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,384 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:41,384 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,384 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:41,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,385 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:41,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,385 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:41,385 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,386 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:41,386 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,386 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:41,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,387 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:41,387 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,387 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:41,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,388 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:41,388 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,388 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:41,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,389 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:41,389 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,389 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:41,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,390 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:41,390 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,391 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:41,391 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,391 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:41,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,392 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:41,392 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,392 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:41,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,393 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:41,393 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,393 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:41,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,394 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:41,394 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,395 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:41,395 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,395 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:41,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,396 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:41,396 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,396 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:41,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,397 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:41,397 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,397 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:41,398 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,398 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:41,406 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:41,406 [76] DEBUG index - Prepared sql query parameters : [248,1,Accounts,AccountsAjax,2,2013-01-18 11:04:41] +01/18/13 11:04:41,410 [76] DEBUG index - Current user is: admin +01/18/13 11:04:41,410 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:41,410 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:41,410 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:41,412 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:41,412 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:41,415 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:41,415 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:41,416 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:41,417 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,417 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,417 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:41,418 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:41,418 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:41,418 [76] DEBUG index - skipping headers +01/18/13 11:04:41,418 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:41,419 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,420 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:41,421 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:41,421 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,421 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,421 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,421 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,421 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:41,433 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,433 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,433 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,437 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:41,437 [76] DEBUG index - Prepared sql query parameters : [10] +01/18/13 11:04:41,440 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,440 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,440 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,440 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,440 [76] DEBUG index - Entering get_tickets(2) method ... +01/18/13 11:04:41,440 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:41,441 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:04:41,443 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:04:41,443 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:04:41,443 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:04:41,443 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,443 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,444 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,444 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,444 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,444 [76] DEBUG index - Prepared sql query parameters : [13] +01/18/13 11:04:41,449 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,449 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,449 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,450 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:04:41,450 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,450 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,451 [76] DEBUG index - Entering getFieldVisibilityPermission(HelpDesk,1,parent_id) method ... +01/18/13 11:04:41,452 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,452 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,452 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:41,452 [76] DEBUG index - Entering isPermitted(HelpDesk,1,) method ... +01/18/13 11:04:41,453 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,453 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:41,453 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:41,453 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:41,454 [76] DEBUG index - function getTranslatedString(HelpDesk) - translated to (故障单) +01/18/13 11:04:41,454 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:41,454 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:41,456 [76] DEBUG account_list - Entering GetRelatedList(Accounts,HelpDesk,HelpDesk,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:41,459 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,459 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,459 [76] DEBUG index - Entering function initSortByField (HelpDesk) +01/18/13 11:04:41,459 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,460 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,460 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:41,460 [76] DEBUG index - Prepared sql query parameters : [13,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:41,462 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:41,463 [76] DEBUG helpdesk - Entering HelpDesk() method ... +01/18/13 11:04:41,463 [76] DEBUG index - Entering getColumnFields(HelpDesk) method ... +01/18/13 11:04:41,463 [76] DEBUG index - in getColumnFields HelpDesk +01/18/13 11:04:41,463 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,463 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,463 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,463 [76] DEBUG helpdesk - Exiting HelpDesk method ... +01/18/13 11:04:41,464 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,464 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,464 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:41,464 [76] DEBUG index - Entering getTableNameForField(HelpDesk,title) method ... +01/18/13 11:04:41,465 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,465 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,465 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:41,465 [76] DEBUG index - Prepared sql query parameters : [13,%title%] +01/18/13 11:04:41,467 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:41,468 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_troubletickets INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid LEFT JOIN vtiger_account ON vtiger_account.accountid = vtiger_troubletickets.parent_id LEFT JOIN vtiger_contactdetails ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 +01/18/13 11:04:41,471 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, vtiger_users.id, + vtiger_troubletickets.title, vtiger_troubletickets.ticketid AS crmid, + vtiger_troubletickets.status, vtiger_troubletickets.priority, + vtiger_troubletickets.parent_id, vtiger_troubletickets.ticket_no, + vtiger_crmentity.smownerid, vtiger_crmentity.modifiedtime + FROM vtiger_troubletickets + INNER JOIN vtiger_crmentity + ON vtiger_crmentity.crmid = vtiger_troubletickets.ticketid + LEFT JOIN vtiger_account + ON vtiger_account.accountid = vtiger_troubletickets.parent_id + LEFT JOIN vtiger_contactdetails + ON vtiger_contactdetails.contactid=vtiger_troubletickets.parent_id + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 and vtiger_troubletickets.parent_id=2 ORDER BY vtiger_troubletickets.title DESC LIMIT 0, 20 +01/18/13 11:04:41,475 [76] DEBUG index - Entering getListViewHeader(HelpDesk,,DESC,title,2,) method ... +01/18/13 11:04:41,475 [76] DEBUG index - Entering getURLstring(HelpDesk) method ... +01/18/13 11:04:41,475 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:41,475 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,476 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,476 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,476 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,477 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,477 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,478 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,479 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,479 [76] DEBUG index - function getTranslatedString(Ticket No) - translated to (故障单编号) +01/18/13 11:04:41,481 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,481 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,481 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:41,483 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,483 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,483 [76] DEBUG index - function getTranslatedString(Related to) - translated to (相关对象) +01/18/13 11:04:41,484 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,484 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,484 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:41,486 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,486 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,486 [76] DEBUG index - function getTranslatedString(Priority) - translated to (优先级) +01/18/13 11:04:41,488 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,488 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:41,488 [76] DEBUG index - Entering return_module_language(zh_cn,HelpDesk) method ... +01/18/13 11:04:41,488 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,488 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:41,490 [76] DEBUG index - Entering isPermitted(HelpDesk,EditView,) method ... +01/18/13 11:04:41,491 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,491 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:41,492 [76] DEBUG index - Entering getListViewEntries(HelpDesk,HelpDesk,user_name,id,title,crmid,status,priority,parent_id,ticket_no,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:41,492 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,492 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,493 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,494 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,494 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:41,494 [76] DEBUG index - Prepared sql query parameters : [13,ticket_no,ticket_title,parent_id,ticketstatus,ticketpriorities,assigned_user_id] +01/18/13 11:04:41,497 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:41,497 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=title&sorder=DESC,Accounts,,) method ... +01/18/13 11:04:41,497 [76] DEBUG index - Entering getTabid(HelpDesk) method ... +01/18/13 11:04:41,497 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,498 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,498 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,498 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:41,498 [76] DEBUG index - Prepared sql query parameters : [6,13] +01/18/13 11:04:41,500 [76] INFO index - getNextRow +01/18/13 11:04:41,501 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:41,501 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:41,502 [76] DEBUG index - Exiting get_tickets method ... +01/18/13 11:04:41,507 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:41,507 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:41,508 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:41,508 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:41,508 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Products', + 'relation_id' => '11', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:41,509 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:41,509 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:41,509 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:41,509 [76] INFO index - current module is Accounts +01/18/13 11:04:41,558 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:41,558 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:41,558 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:41,558 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,559 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,559 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,559 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,559 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,560 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:41,568 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,568 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,568 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,569 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:41,569 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:41,570 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:41,570 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,571 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:41,571 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,571 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:41,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,572 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:41,572 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,572 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:41,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,573 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:41,573 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,573 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,574 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,574 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,575 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:41,575 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,575 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,576 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,576 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,576 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:41,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,577 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:41,577 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,577 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:41,578 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:41,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,578 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:41,578 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,578 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:41,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,579 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:41,579 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,580 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:41,580 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,580 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:41,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,581 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:41,581 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,581 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,582 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:41,582 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,582 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:41,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,583 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:41,583 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,583 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:41,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,584 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:41,584 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,584 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:41,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,585 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:41,585 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,585 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:41,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,586 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:41,586 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,587 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:41,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,587 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:41,587 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,588 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:41,588 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,588 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:41,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,589 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:41,589 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,589 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:41,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,590 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:41,590 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,590 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:41,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,591 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:41,591 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,591 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:41,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,592 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:41,592 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,593 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:41,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,593 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:41,593 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,594 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:41,594 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,594 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:41,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,595 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:41,595 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,595 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:41,596 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,596 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:41,600 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:41,600 [76] DEBUG index - Prepared sql query parameters : [249,1,Accounts,AccountsAjax,2,2013-01-18 11:04:41] +01/18/13 11:04:41,604 [76] DEBUG index - Current user is: admin +01/18/13 11:04:41,604 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:41,604 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:41,604 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:41,606 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:41,606 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:41,609 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:41,609 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:41,611 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:41,611 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,611 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,612 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:41,612 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:41,612 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:41,612 [76] DEBUG index - skipping headers +01/18/13 11:04:41,612 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:41,613 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,615 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:41,615 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:41,615 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,615 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,615 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,616 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,616 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,616 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:41,623 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,623 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,623 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,627 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:41,628 [76] DEBUG index - Prepared sql query parameters : [11] +01/18/13 11:04:41,631 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,631 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,631 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,631 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,632 [76] DEBUG index - Entering get_products(2) method ... +01/18/13 11:04:41,632 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:41,632 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:04:41,638 [76] DEBUG product - Entering Products() method ... +01/18/13 11:04:41,638 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:04:41,638 [76] DEBUG index - in getColumnFields Products +01/18/13 11:04:41,638 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,638 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,638 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,639 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,639 [76] DEBUG index - Prepared sql query parameters : [14] +01/18/13 11:04:41,645 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,645 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,645 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,645 [76] DEBUG product - Exiting Product method ... +01/18/13 11:04:41,646 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,646 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,647 [76] DEBUG index - Entering isPermitted(Products,4,) method ... +01/18/13 11:04:41,648 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,648 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,648 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:41,648 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,648 [76] DEBUG index - function getTranslatedString(Products) - translated to (产品) +01/18/13 11:04:41,649 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Products,Products,SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:41,651 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,652 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,652 [76] DEBUG index - Entering function initSortByField (Products) +01/18/13 11:04:41,652 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,652 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,652 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:41,652 [76] DEBUG index - Prepared sql query parameters : [14,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:41,656 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:41,656 [76] DEBUG product - Entering Products() method ... +01/18/13 11:04:41,656 [76] DEBUG index - Entering getColumnFields(Products) method ... +01/18/13 11:04:41,656 [76] DEBUG index - in getColumnFields Products +01/18/13 11:04:41,656 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,657 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,657 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,657 [76] DEBUG product - Exiting Product method ... +01/18/13 11:04:41,658 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,658 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,658 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:41,658 [76] DEBUG index - Entering getTableNameForField(Products,productname) method ... +01/18/13 11:04:41,658 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,658 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,658 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:41,658 [76] DEBUG index - Prepared sql query parameters : [14,%productname%] +01/18/13 11:04:41,661 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:41,661 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_products INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid LEFT JOIN vtiger_users ON vtiger_users.id=vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:41,664 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_products.productid, vtiger_products.productname, + vtiger_products.productcode, vtiger_products.commissionrate, + vtiger_products.qty_per_unit, vtiger_products.unit_price, + vtiger_crmentity.crmid, vtiger_crmentity.smownerid + FROM vtiger_products + INNER JOIN vtiger_seproductsrel ON vtiger_products.productid = vtiger_seproductsrel.productid and vtiger_seproductsrel.setype='Accounts' + INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_products.productid + INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_seproductsrel.crmid + LEFT JOIN vtiger_users + ON vtiger_users.id=vtiger_crmentity.smownerid + LEFT JOIN vtiger_groups + ON vtiger_groups.groupid = vtiger_crmentity.smownerid + WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_products.productname ASC LIMIT 0, 20 +01/18/13 11:04:41,668 [76] DEBUG index - Entering getListViewHeader(Products,,ASC,productname,2,) method ... +01/18/13 11:04:41,669 [76] DEBUG index - Entering getURLstring(Products) method ... +01/18/13 11:04:41,669 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:41,669 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,669 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,669 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,671 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,671 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,671 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:41,672 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,672 [76] DEBUG index - function getTranslatedString(Product Name) - translated to (产品名称) +01/18/13 11:04:41,674 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:41,674 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,674 [76] DEBUG index - function getTranslatedString(Part Number) - translated to (产品代码) +01/18/13 11:04:41,676 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:41,676 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,676 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (佣金率 (%)) +01/18/13 11:04:41,678 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:41,678 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,679 [76] DEBUG index - function getTranslatedString(Qty/Unit) - translated to (数量/单位) +01/18/13 11:04:41,680 [76] DEBUG index - Entering return_module_language(zh_cn,Products) method ... +01/18/13 11:04:41,680 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,681 [76] DEBUG index - function getTranslatedString(Unit Price) - translated to (单价) +01/18/13 11:04:41,682 [76] DEBUG index - Entering isPermitted(Products,EditView,) method ... +01/18/13 11:04:41,683 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,683 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:41,684 [76] DEBUG index - Entering getListViewEntries(Products,Products,productid,productname,productcode,commissionrate,qty_per_unit,unit_price,crmid,smownerid +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:41,684 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,684 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,686 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,686 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,686 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:41,686 [76] DEBUG index - Prepared sql query parameters : [14,productname,productcode,commissionrate,qty_per_unit,unit_price] +01/18/13 11:04:41,689 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:41,689 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=productname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:41,689 [76] DEBUG index - Entering getTabid(Products) method ... +01/18/13 11:04:41,689 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,690 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,690 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,690 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:41,690 [76] DEBUG index - Prepared sql query parameters : [6,14] +01/18/13 11:04:41,692 [76] INFO index - getNextRow +01/18/13 11:04:41,693 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:41,693 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:41,693 [76] DEBUG index - Exiting get_products method ... +01/18/13 11:04:41,699 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:41,699 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:41,700 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:41,700 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:41,700 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Campaigns', + 'relation_id' => '87', + 'actions' => 'select', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:41,700 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:41,701 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:41,701 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:41,701 [76] INFO index - current module is Accounts +01/18/13 11:04:41,747 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:41,747 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:41,747 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:41,747 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,748 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,748 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,748 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,748 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,748 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:41,756 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:41,757 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,757 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,757 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:41,757 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:41,758 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:41,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,759 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:41,759 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,759 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:41,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,760 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:41,760 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,761 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:41,761 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,761 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:41,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,762 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:41,762 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,762 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:41,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,763 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:41,763 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,763 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:41,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,764 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:41,764 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,765 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:41,765 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,765 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:41,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,766 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:41,766 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,766 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:41,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,767 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:41,766 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:41,767 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,767 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:41,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,768 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:41,768 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,769 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:41,769 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,769 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:41,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,770 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,770 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,770 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,771 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,771 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:41,771 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,772 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:41,772 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,772 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:41,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,773 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:41,773 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,773 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:41,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,774 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:41,774 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,774 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:41,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,775 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:41,775 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,775 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:41,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,776 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:41,776 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,777 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:41,777 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,777 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:41,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,778 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:41,778 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,778 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:41,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,779 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:41,779 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,779 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:41,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,780 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:41,780 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,780 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:41,787 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,794 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:41,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,802 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:41,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,806 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:41,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,810 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:41,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,813 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:41,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,817 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:41,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,820 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:41,831 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:41,833 [76] DEBUG index - Prepared sql query parameters : [250,1,Accounts,AccountsAjax,2,2013-01-18 11:04:41] +01/18/13 11:04:41,839 [76] DEBUG index - Current user is: admin +01/18/13 11:04:41,841 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:41,842 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:41,844 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:41,847 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:41,849 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:41,853 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:41,854 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:41,857 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:41,859 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,861 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,863 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:41,864 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:41,866 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:41,867 [76] DEBUG index - skipping headers +01/18/13 11:04:41,869 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:41,871 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,874 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:41,876 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:41,877 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,879 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,880 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,882 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,883 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,885 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:41,894 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,896 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,897 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,903 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:41,904 [76] DEBUG index - Prepared sql query parameters : [87] +01/18/13 11:04:41,908 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:41,910 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:41,911 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:41,913 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,914 [76] DEBUG index - Entering get_campaigns(2) method ... +01/18/13 11:04:41,916 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:41,917 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:04:41,921 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:04:41,922 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:04:41,924 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,925 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,927 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,928 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,929 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:41,931 [76] DEBUG index - Prepared sql query parameters : [26] +01/18/13 11:04:41,938 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,940 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,942 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,944 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:41,945 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:41,948 [76] DEBUG index - Entering isPermitted(Campaigns,4,) method ... +01/18/13 11:04:41,950 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:41,951 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,953 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:41,954 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:41,956 [76] DEBUG index - function getTranslatedString(Campaigns) - translated to (营销活动) +01/18/13 11:04:41,957 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:41,958 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:41,962 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Campaigns,Campaigns,SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:41,967 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:41,968 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:41,970 [76] DEBUG index - Entering function initSortByField (Campaigns) +01/18/13 11:04:41,971 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,973 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,974 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:41,976 [76] DEBUG index - Prepared sql query parameters : [26,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:41,981 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:41,983 [76] DEBUG index - Entering getColumnFields(Campaigns) method ... +01/18/13 11:04:41,984 [76] DEBUG index - in getColumnFields Campaigns +01/18/13 11:04:41,986 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,987 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,989 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:41,990 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:41,992 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:41,993 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:41,995 [76] DEBUG index - query being executed : SELECT count(*) AS count from vtiger_campaign inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 +01/18/13 11:04:41,999 [76] DEBUG index - Prepared sql query being executed : SELECT case when (vtiger_users.user_name not like '') then CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) else vtiger_groups.groupname end as user_name, + vtiger_campaign.campaignid, vtiger_campaign.campaignname, vtiger_campaign.campaigntype, vtiger_campaign.campaignstatus, + vtiger_campaign.expectedrevenue, vtiger_campaign.closingdate, vtiger_crmentity.crmid, vtiger_crmentity.smownerid, + vtiger_crmentity.modifiedtime from vtiger_campaign + inner join vtiger_campaignaccountrel on vtiger_campaignaccountrel.campaignid=vtiger_campaign.campaignid + inner join vtiger_crmentity on vtiger_crmentity.crmid = vtiger_campaign.campaignid + left join vtiger_groups on vtiger_groups.groupid=vtiger_crmentity.smownerid + left join vtiger_users on vtiger_users.id = vtiger_crmentity.smownerid + where vtiger_campaignaccountrel.accountid=2 and vtiger_crmentity.deleted=0 ORDER BY crmid DESC LIMIT 0, 20 +01/18/13 11:04:42,006 [76] DEBUG index - Entering getListViewHeader(Campaigns,,DESC,crmid,2,) method ... +01/18/13 11:04:42,008 [76] DEBUG index - Entering getURLstring(Campaigns) method ... +01/18/13 11:04:42,010 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:42,011 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:42,013 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,014 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:42,016 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:42,018 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:42,020 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,022 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,025 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,026 [76] DEBUG index - function getTranslatedString(Campaign Name) - translated to (营销活动名称) +01/18/13 11:04:42,030 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,031 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,033 [76] DEBUG index - function getTranslatedString(Campaign Type) - translated to (营销活动类型) +01/18/13 11:04:42,036 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,038 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,039 [76] DEBUG index - function getTranslatedString(Campaign Status) - translated to (营销活动状态) +01/18/13 11:04:42,043 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,044 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,046 [76] DEBUG index - function getTranslatedString(Expected Revenue) - translated to (预期收益) +01/18/13 11:04:42,049 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,051 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,052 [76] DEBUG index - function getTranslatedString(Expected Close Date) - translated to (预计结束日期) +01/18/13 11:04:42,056 [76] DEBUG index - Entering return_module_language(zh_cn,Campaigns) method ... +01/18/13 11:04:42,057 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,059 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (负责人) +01/18/13 11:04:42,062 [76] DEBUG index - Entering isPermitted(Campaigns,EditView,) method ... +01/18/13 11:04:42,064 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:42,066 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:42,068 [76] DEBUG index - Entering getListViewEntries(Campaigns,Campaigns,user_name,campaignid,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,crmid,smownerid,modifiedtime +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:42,069 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:42,071 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:42,073 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:42,075 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,077 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?,?) +01/18/13 11:04:42,078 [76] DEBUG index - Prepared sql query parameters : [26,campaignname,campaigntype,campaignstatus,expectedrevenue,closingdate,assigned_user_id] +01/18/13 11:04:42,083 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:42,085 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=crmid&sorder=DESC,Accounts,,) method ... +01/18/13 11:04:42,087 [76] DEBUG index - Entering getTabid(Campaigns) method ... +01/18/13 11:04:42,088 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,090 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,091 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,092 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:42,094 [76] DEBUG index - Prepared sql query parameters : [6,26] +01/18/13 11:04:42,098 [76] INFO index - getNextRow +01/18/13 11:04:42,100 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:42,102 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:42,104 [76] DEBUG index - Exiting get_campaigns method ... +01/18/13 11:04:42,108 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:42,110 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:42,112 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:42,114 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:42,116 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Service Contracts', + 'relation_id' => '92', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:42,117 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:42,119 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:42,121 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:42,123 [76] INFO index - current module is Accounts +01/18/13 11:04:42,176 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:42,178 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:42,180 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:42,181 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,183 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,185 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,186 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,188 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:42,190 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:42,200 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,202 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,204 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:42,205 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:42,207 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:42,209 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:42,211 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,213 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:42,215 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,216 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:42,218 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,219 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:42,221 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,223 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:42,224 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,226 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:42,228 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,230 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:42,231 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,233 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:42,235 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,236 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:42,238 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,240 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:42,241 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,243 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:42,245 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,246 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:42,248 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,249 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:42,251 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,253 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:42,255 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,256 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:42,258 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,259 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:42,261 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,262 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:42,264 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,266 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:42,267 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,269 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:42,271 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,272 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:42,274 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,276 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:42,277 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,279 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:42,281 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,282 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:42,284 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,285 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:42,287 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,288 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:42,290 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,292 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:42,294 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,295 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:42,297 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,299 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:42,301 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,302 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:42,304 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,306 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:42,307 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,309 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:42,311 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,312 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:42,314 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,315 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:42,317 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,319 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:42,321 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,322 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:42,324 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,326 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:42,327 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,329 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:42,331 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,332 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:42,334 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,336 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:42,338 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,339 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:42,341 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,343 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:42,345 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,346 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:42,348 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,349 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:42,351 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,353 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:42,354 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,356 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:42,358 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,359 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:42,361 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,362 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:42,364 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,365 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:42,371 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:42,372 [76] DEBUG index - Prepared sql query parameters : [251,1,Accounts,AccountsAjax,2,2013-01-18 11:04:42] +01/18/13 11:04:42,377 [76] DEBUG index - Current user is: admin +01/18/13 11:04:42,379 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:42,380 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:42,382 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:42,385 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:42,387 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:42,390 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:42,392 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:42,395 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:42,397 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:42,399 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,400 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:42,402 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:42,403 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:42,405 [76] DEBUG index - skipping headers +01/18/13 11:04:42,407 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:42,409 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:42,412 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:42,413 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:42,415 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,416 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,418 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,419 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,421 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:42,422 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:42,431 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,433 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,434 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:42,440 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:42,442 [76] DEBUG index - Prepared sql query parameters : [92] +01/18/13 11:04:42,446 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:42,448 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,449 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,451 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,452 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:42,454 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:42,456 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:42,458 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:04:42,463 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:04:42,465 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:04:42,467 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,468 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,470 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,471 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,473 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:42,474 [76] DEBUG index - Prepared sql query parameters : [37] +01/18/13 11:04:42,481 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,482 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,484 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:42,486 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:42,487 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:42,489 [76] DEBUG index - Prepared sql query parameters : [Accounts,ServiceContracts] +01/18/13 11:04:42,498 [76] DEBUG index - Entering isPermitted(ServiceContracts,1,) method ... +01/18/13 11:04:42,500 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:42,502 [76] DEBUG index - Entering getFieldVisibilityPermission(ServiceContracts,1,sc_related_to) method ... +01/18/13 11:04:42,503 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,505 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,506 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:42,508 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:42,509 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,512 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,513 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:42,515 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:42,516 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,518 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,519 [76] DEBUG index - function getTranslatedString(SINGLE_ServiceContracts) - translated to (服务合同) +01/18/13 11:04:42,521 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:42,522 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:42,529 [76] DEBUG account_list - Entering GetRelatedList(Accounts,ServiceContracts,ServiceContracts,SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:42,534 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:42,535 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,537 [76] DEBUG index - Entering function initSortByField (ServiceContracts) +01/18/13 11:04:42,538 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,540 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,541 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:42,543 [76] DEBUG index - Prepared sql query parameters : [37,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:42,547 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:42,548 [76] DEBUG index - Entering getColumnFields(ServiceContracts) method ... +01/18/13 11:04:42,550 [76] DEBUG index - in getColumnFields ServiceContracts +01/18/13 11:04:42,551 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,553 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,554 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:42,556 [76] INFO VT - PearDatabase ->ADODB disconnect +01/18/13 11:04:42,558 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,559 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,561 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:42,562 [76] DEBUG index - Entering getTableNameForField(ServiceContracts,subject) method ... +01/18/13 11:04:42,564 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,565 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,566 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:42,568 [76] DEBUG index - Prepared sql query parameters : [37,%subject%] +01/18/13 11:04:42,572 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:42,574 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:42,579 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_servicecontracts.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_servicecontracts INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_servicecontracts.servicecontractsid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_servicecontracts.sc_related_to LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_servicecontracts.subject ASC LIMIT 0, 20 +01/18/13 11:04:42,586 [76] DEBUG index - Entering getListViewHeader(ServiceContracts,,ASC,subject,2,) method ... +01/18/13 11:04:42,588 [76] DEBUG index - Entering getURLstring(ServiceContracts) method ... +01/18/13 11:04:42,589 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:42,591 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,592 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,593 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:42,595 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:42,598 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,600 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,602 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,603 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,604 [76] DEBUG index - function getTranslatedString(Subject) - translated to (主题) +01/18/13 11:04:42,606 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,608 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,609 [76] DEBUG index - function getTranslatedString(主题) - translated to (主题) +01/18/13 11:04:42,612 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,614 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,615 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:42,617 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,618 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,620 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:42,623 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,625 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,626 [76] DEBUG index - function getTranslatedString(Contract No) - translated to (服务合同编号) +01/18/13 11:04:42,628 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,629 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,630 [76] DEBUG index - function getTranslatedString(服务合同编号) - translated to (服务合同编号) +01/18/13 11:04:42,632 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,633 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,635 [76] DEBUG index - function getTranslatedString(Used Units) - translated to (已用单位) +01/18/13 11:04:42,636 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,637 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,639 [76] DEBUG index - function getTranslatedString(已用单位) - translated to (已用单位) +01/18/13 11:04:42,642 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,644 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,645 [76] DEBUG index - function getTranslatedString(Total Units) - translated to (总单位) +01/18/13 11:04:42,647 [76] DEBUG index - Entering return_module_language(zh_cn,ServiceContracts) method ... +01/18/13 11:04:42,648 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:42,650 [76] DEBUG index - function getTranslatedString(总单位) - translated to (总单位) +01/18/13 11:04:42,653 [76] DEBUG index - Entering isPermitted(ServiceContracts,EditView,) method ... +01/18/13 11:04:42,655 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:42,656 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:42,659 [76] DEBUG index - Entering getListViewEntries(ServiceContracts,ServiceContracts,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,servicecontractsid,start_date,end_date,sc_related_to,tracking_unit,total_units,used_units,subject,due_date,planned_duration,actual_duration,contract_status,priority,contract_type,progress,contract_no,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:42,661 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:42,662 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:42,665 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,667 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,668 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:42,670 [76] DEBUG index - Prepared sql query parameters : [37,subject,assigned_user_id,contract_no,used_units,total_units] +01/18/13 11:04:42,675 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:42,676 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=subject&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:42,678 [76] DEBUG index - Entering getTabid(ServiceContracts) method ... +01/18/13 11:04:42,679 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,681 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:42,682 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,684 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:42,685 [76] DEBUG index - Prepared sql query parameters : [6,37] +01/18/13 11:04:42,689 [76] INFO index - getNextRow +01/18/13 11:04:42,692 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:42,693 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:42,700 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:42,702 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:42,704 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:42,706 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:42,708 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Services', + 'relation_id' => '108', + 'actions' => 'SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:42,709 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:42,711 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:42,713 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:42,714 [76] INFO index - current module is Accounts +01/18/13 11:04:42,765 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:42,767 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:42,769 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:42,770 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,772 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,774 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,775 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,777 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:42,778 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:42,788 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:42,789 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:42,791 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:42,792 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:42,794 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:42,796 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:42,798 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,800 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:42,802 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,803 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:42,805 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,806 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:42,808 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,810 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:42,812 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,813 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:42,815 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,817 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:42,819 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,820 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:42,822 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,823 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:42,825 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,827 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:42,829 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,830 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:42,832 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,833 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:42,835 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,837 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:42,839 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,840 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:42,842 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,843 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:42,845 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,847 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:42,849 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,851 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:42,852 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,854 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:42,856 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,857 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:42,859 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,860 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:42,862 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,864 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:42,866 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,867 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:42,869 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,870 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:42,872 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,874 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:42,875 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,877 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:42,879 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,880 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:42,882 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,884 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:42,886 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,887 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:42,889 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,890 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:42,892 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,894 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:42,896 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,897 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:42,899 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,901 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:42,902 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,904 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:42,906 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,907 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:42,909 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,910 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:42,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,914 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:42,916 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,917 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:42,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,921 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:42,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,924 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:42,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,928 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:42,930 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,931 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:42,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,935 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:42,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,938 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:42,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,942 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:42,943 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,945 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:42,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,948 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:42,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,952 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:42,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:42,955 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:42,962 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:42,964 [76] DEBUG index - Prepared sql query parameters : [252,1,Accounts,AccountsAjax,2,2013-01-18 11:04:42] +01/18/13 11:04:43,004 [76] DEBUG index - Current user is: admin +01/18/13 11:04:43,005 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:43,007 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:43,008 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:43,012 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:43,013 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:43,017 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:43,018 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:43,022 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:43,023 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:43,025 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,027 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:43,028 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:43,030 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:43,031 [76] DEBUG index - skipping headers +01/18/13 11:04:43,033 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:43,035 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:43,038 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:43,040 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:43,041 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,043 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,044 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,046 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,047 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,049 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:43,057 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,059 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,060 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,066 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:43,068 [76] DEBUG index - Prepared sql query parameters : [108] +01/18/13 11:04:43,071 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:43,073 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,075 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,076 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,078 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:43,079 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:43,082 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:43,084 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:04:43,090 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:04:43,092 [76] DEBUG index - in getColumnFields Services +01/18/13 11:04:43,093 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,095 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,096 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,098 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,100 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,101 [76] DEBUG index - Prepared sql query parameters : [38] +01/18/13 11:04:43,109 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,110 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,112 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,114 [76] DEBUG index - Entering isPermitted(Services,4,) method ... +01/18/13 11:04:43,116 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:43,118 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:43,119 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:43,121 [76] DEBUG index - function getTranslatedString(LBL_SELECT) - translated to (选择) +01/18/13 11:04:43,122 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,124 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,126 [76] DEBUG index - function getTranslatedString(Services) - translated to (服务) +01/18/13 11:04:43,127 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:43,129 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:43,137 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Services,Services,SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2), ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:43,141 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:43,143 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,145 [76] DEBUG index - Entering function initSortByField (Services) +01/18/13 11:04:43,146 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,148 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,149 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:43,151 [76] DEBUG index - Prepared sql query parameters : [38,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:43,157 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:43,159 [76] DEBUG index - Entering getColumnFields(Services) method ... +01/18/13 11:04:43,160 [76] DEBUG index - in getColumnFields Services +01/18/13 11:04:43,162 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,163 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,165 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,167 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,168 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,170 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:43,171 [76] DEBUG index - Entering getTableNameForField(Services,servicename) method ... +01/18/13 11:04:43,173 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,174 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,176 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:43,177 [76] DEBUG index - Prepared sql query parameters : [38,%servicename%] +01/18/13 11:04:43,181 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:43,183 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) +01/18/13 11:04:43,187 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_service.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_service INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_service.serviceid INNER JOIN vtiger_crmentityrel ON (vtiger_crmentityrel.relcrmid = vtiger_crmentity.crmid OR vtiger_crmentityrel.crmid = vtiger_crmentity.crmid) LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND (vtiger_crmentityrel.crmid = 2 OR vtiger_crmentityrel.relcrmid = 2) ORDER BY vtiger_service.servicename ASC LIMIT 0, 20 +01/18/13 11:04:43,216 [76] DEBUG index - Entering getListViewHeader(Services,,ASC,servicename,2,) method ... +01/18/13 11:04:43,218 [76] DEBUG index - Entering getURLstring(Services) method ... +01/18/13 11:04:43,219 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:43,221 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,222 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,224 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:43,225 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:43,228 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,229 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,231 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,233 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,234 [76] DEBUG index - function getTranslatedString(Service No) - translated to (服务编号) +01/18/13 11:04:43,236 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,238 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,239 [76] DEBUG index - function getTranslatedString(Service Name) - translated to (服务名称) +01/18/13 11:04:43,242 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,244 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,246 [76] DEBUG index - function getTranslatedString(Commission Rate) - translated to (销售提成) +01/18/13 11:04:43,249 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,251 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,252 [76] DEBUG index - function getTranslatedString(No of Units) - translated to (总单位数) +01/18/13 11:04:43,256 [76] DEBUG index - Entering return_module_language(zh_cn,Services) method ... +01/18/13 11:04:43,257 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,259 [76] DEBUG index - function getTranslatedString(Price) - translated to (价格) +01/18/13 11:04:43,262 [76] DEBUG index - Entering isPermitted(Services,EditView,) method ... +01/18/13 11:04:43,264 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:43,266 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:43,268 [76] DEBUG index - Entering getListViewEntries(Services,Services,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,serviceid,service_no,servicename,servicecategory,qty_per_unit,unit_price,sales_start_date,sales_end_date,start_date,expiry_date,discontinued,service_usageunit,website,taxclass,currency_id,commissionrate,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:43,270 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:43,271 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:43,274 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,275 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,277 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:43,279 [76] DEBUG index - Prepared sql query parameters : [38,service_no,servicename,commissionrate,qty_per_unit,unit_price] +01/18/13 11:04:43,283 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:43,285 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=servicename&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:43,286 [76] DEBUG index - Entering getTabid(Services) method ... +01/18/13 11:04:43,288 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,289 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,291 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,292 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:43,293 [76] DEBUG index - Prepared sql query parameters : [6,38] +01/18/13 11:04:43,299 [76] INFO index - getNextRow +01/18/13 11:04:43,302 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:43,303 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:43,310 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:43,312 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:43,313 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:43,316 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:43,317 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Assets', + 'relation_id' => '114', + 'actions' => 'ADD', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:43,319 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:43,320 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:43,323 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:43,324 [76] INFO index - current module is Accounts +01/18/13 11:04:43,375 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:43,377 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:43,378 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:43,380 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,382 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,384 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,385 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,386 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,388 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:43,397 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,399 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,401 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,402 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:43,404 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:43,406 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:43,408 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,410 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:43,412 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,414 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:43,415 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,417 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:43,419 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,420 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:43,422 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,424 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:43,425 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,427 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:43,429 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,431 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:43,432 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,434 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:43,436 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,437 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:43,439 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,440 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:43,442 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,444 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:43,445 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,447 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:43,449 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,450 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:43,452 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,453 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:43,455 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,457 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:43,459 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,460 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:43,462 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,463 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:43,465 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,467 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:43,468 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,470 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:43,472 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,473 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:43,475 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,477 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:43,478 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,480 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:43,482 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,483 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:43,485 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,486 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:43,488 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,489 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:43,491 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,493 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:43,494 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,496 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:43,498 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,499 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:43,501 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,502 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:43,504 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,506 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:43,508 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,509 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:43,511 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,512 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:43,514 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,515 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:43,517 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,519 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:43,520 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,522 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:43,524 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,525 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:43,527 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,528 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:43,530 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,532 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:43,533 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,535 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:43,537 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,538 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:43,540 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,541 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:43,543 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,545 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:43,547 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,548 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:43,550 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,551 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:43,553 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,555 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:43,557 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,558 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:43,560 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,561 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:43,581 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:43,583 [76] DEBUG index - Prepared sql query parameters : [253,1,Accounts,AccountsAjax,2,2013-01-18 11:04:43] +01/18/13 11:04:43,591 [76] DEBUG index - Current user is: admin +01/18/13 11:04:43,593 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:43,595 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:43,596 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:43,600 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:43,602 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:43,605 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:43,607 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:43,610 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:43,612 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:43,614 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:43,615 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:43,617 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:43,618 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:43,620 [76] DEBUG index - skipping headers +01/18/13 11:04:43,621 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:43,623 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:43,627 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:43,628 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:43,630 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,631 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,633 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,634 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,636 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,637 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:43,646 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,648 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,649 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,655 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:43,656 [76] DEBUG index - Prepared sql query parameters : [114] +01/18/13 11:04:43,664 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:43,666 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,668 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:43,669 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,671 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:43,672 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:43,675 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:43,677 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:04:43,685 [76] DEBUG index - Entering getColumnFields(Assets) method ... +01/18/13 11:04:43,686 [76] DEBUG index - in getColumnFields Assets +01/18/13 11:04:43,688 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:43,690 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,691 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:43,693 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,694 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,696 [76] DEBUG index - Prepared sql query parameters : [41] +01/18/13 11:04:43,701 [76] DEBUG index - Entering getTabid(Assets) method ... +01/18/13 11:04:43,703 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,705 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,706 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:43,708 [76] DEBUG index - Prepared sql query parameters : [Accounts,Assets] +01/18/13 11:04:43,721 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:43,723 [76] DEBUG VT - Exiting set_default_config method ... +01/18/13 11:04:43,725 [76] DEBUG index - ****Starting for new session +01/18/13 11:04:43,727 [76] DEBUG index - We have an authenticated user id: 1 +01/18/13 11:04:43,729 [76] DEBUG index - array ( + 'module' => 'Accounts', + 'action' => 'AccountsAjax', + 'file' => 'DetailViewAjax', + 'record' => '2', + 'ajxaction' => 'LOADRELATEDLIST', + 'header' => 'Projects', + 'relation_id' => '123', + 'actions' => 'ADD,SELECT', + 'parenttab' => 'Marketing', +) +01/18/13 11:04:43,730 [76] INFO index - About to take action AccountsAjax +01/18/13 11:04:43,732 [76] DEBUG index - in AccountsAjax +01/18/13 11:04:43,734 [76] INFO index - current page is modules/Accounts/AccountsAjax.php +01/18/13 11:04:43,735 [76] INFO index - current module is Accounts +01/18/13 11:04:43,787 [76] DEBUG user - Entering Users() method ... +01/18/13 11:04:43,789 [76] DEBUG index - Entering getColumnFields(Users) method ... +01/18/13 11:04:43,790 [76] DEBUG index - in getColumnFields Users +01/18/13 11:04:43,792 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,793 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,795 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,796 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,798 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:43,799 [76] DEBUG index - Prepared sql query parameters : [29] +01/18/13 11:04:43,809 [76] DEBUG index - Entering getTabid(Users) method ... +01/18/13 11:04:43,811 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:43,813 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:43,814 [76] DEBUG user - Exiting Users() method ... +01/18/13 11:04:43,816 [76] DEBUG index - Entering getPermittedModuleNames() method ... +01/18/13 11:04:43,818 [76] DEBUG index - Entering getTabModuleName(1) method ... +01/18/13 11:04:43,820 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,821 [76] DEBUG index - Entering getTabModuleName(2) method ... +01/18/13 11:04:43,823 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,825 [76] DEBUG index - Entering getTabModuleName(3) method ... +01/18/13 11:04:43,827 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,828 [76] DEBUG index - Entering getTabModuleName(4) method ... +01/18/13 11:04:43,830 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,831 [76] DEBUG index - Entering getTabModuleName(6) method ... +01/18/13 11:04:43,833 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,835 [76] DEBUG index - Entering getTabModuleName(7) method ... +01/18/13 11:04:43,837 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,838 [76] DEBUG index - Entering getTabModuleName(8) method ... +01/18/13 11:04:43,840 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,841 [76] DEBUG index - Entering getTabModuleName(9) method ... +01/18/13 11:04:43,843 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,845 [76] DEBUG index - Entering getTabModuleName(10) method ... +01/18/13 11:04:43,847 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,848 [76] DEBUG index - Entering getTabModuleName(13) method ... +01/18/13 11:04:43,850 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,852 [76] DEBUG index - Entering getTabModuleName(14) method ... +01/18/13 11:04:43,854 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,855 [76] DEBUG index - Entering getTabModuleName(15) method ... +01/18/13 11:04:43,857 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,859 [76] DEBUG index - Entering getTabModuleName(18) method ... +01/18/13 11:04:43,860 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,862 [76] DEBUG index - Entering getTabModuleName(19) method ... +01/18/13 11:04:43,864 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,866 [76] DEBUG index - Entering getTabModuleName(20) method ... +01/18/13 11:04:43,867 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,869 [76] DEBUG index - Entering getTabModuleName(21) method ... +01/18/13 11:04:43,871 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,873 [76] DEBUG index - Entering getTabModuleName(22) method ... +01/18/13 11:04:43,874 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,876 [76] DEBUG index - Entering getTabModuleName(23) method ... +01/18/13 11:04:43,878 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,879 [76] DEBUG index - Entering getTabModuleName(24) method ... +01/18/13 11:04:43,881 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,883 [76] DEBUG index - Entering getTabModuleName(25) method ... +01/18/13 11:04:43,884 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,886 [76] DEBUG index - Entering getTabModuleName(26) method ... +01/18/13 11:04:43,888 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,890 [76] DEBUG index - Entering getTabModuleName(27) method ... +01/18/13 11:04:43,891 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,893 [76] DEBUG index - Entering getTabModuleName(28) method ... +01/18/13 11:04:43,895 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,896 [76] DEBUG index - Entering getTabModuleName(29) method ... +01/18/13 11:04:43,898 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,899 [76] DEBUG index - Entering getTabModuleName(30) method ... +01/18/13 11:04:43,901 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,903 [76] DEBUG index - Entering getTabModuleName(31) method ... +01/18/13 11:04:43,905 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,906 [76] DEBUG index - Entering getTabModuleName(32) method ... +01/18/13 11:04:43,908 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,910 [76] DEBUG index - Entering getTabModuleName(33) method ... +01/18/13 11:04:43,912 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,914 [76] DEBUG index - Entering getTabModuleName(34) method ... +01/18/13 11:04:43,915 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,917 [76] DEBUG index - Entering getTabModuleName(35) method ... +01/18/13 11:04:43,919 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,920 [76] DEBUG index - Entering getTabModuleName(36) method ... +01/18/13 11:04:43,922 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,924 [76] DEBUG index - Entering getTabModuleName(37) method ... +01/18/13 11:04:43,926 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,927 [76] DEBUG index - Entering getTabModuleName(38) method ... +01/18/13 11:04:43,929 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,931 [76] DEBUG index - Entering getTabModuleName(39) method ... +01/18/13 11:04:43,933 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,935 [76] DEBUG index - Entering getTabModuleName(40) method ... +01/18/13 11:04:43,937 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,938 [76] DEBUG index - Entering getTabModuleName(41) method ... +01/18/13 11:04:43,940 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,942 [76] DEBUG index - Entering getTabModuleName(42) method ... +01/18/13 11:04:43,944 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,945 [76] DEBUG index - Entering getTabModuleName(43) method ... +01/18/13 11:04:43,947 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,948 [76] DEBUG index - Entering getTabModuleName(44) method ... +01/18/13 11:04:43,950 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,952 [76] DEBUG index - Entering getTabModuleName(45) method ... +01/18/13 11:04:43,954 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,955 [76] DEBUG index - Entering getTabModuleName(46) method ... +01/18/13 11:04:43,957 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,958 [76] DEBUG index - Entering getTabModuleName(47) method ... +01/18/13 11:04:43,960 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,962 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:43,964 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,966 [76] DEBUG index - Entering getTabModuleName(49) method ... +01/18/13 11:04:43,967 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,969 [76] DEBUG index - Entering getTabModuleName(50) method ... +01/18/13 11:04:43,971 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,972 [76] DEBUG index - Entering getTabModuleName(51) method ... +01/18/13 11:04:43,974 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,976 [76] DEBUG index - Entering getTabModuleName(52) method ... +01/18/13 11:04:43,977 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:43,979 [76] DEBUG index - Exiting getPermittedModuleNames method ... +01/18/13 11:04:43,986 [76] DEBUG index - Prepared sql query being executed : insert into vtiger_audit_trial values(?,?,?,?,?,?) +01/18/13 11:04:43,988 [76] DEBUG index - Prepared sql query parameters : [254,1,Accounts,AccountsAjax,2,2013-01-18 11:04:43] +01/18/13 11:04:43,994 [76] DEBUG index - Current user is: admin +01/18/13 11:04:43,995 [76] DEBUG index - Current theme is: softed +01/18/13 11:04:43,997 [76] DEBUG index - current_language is: zh_cn +01/18/13 11:04:43,999 [76] DEBUG index - Entering return_app_currency_strings_language(zh_cn) method ... +01/18/13 11:04:44,002 [76] DEBUG index - Exiting return_app_currency_strings_language method ... +01/18/13 11:04:44,003 [76] DEBUG index - Entering return_application_language(zh_cn) method ... +01/18/13 11:04:44,007 [76] DEBUG index - Exiting return_application_language method ... +01/18/13 11:04:44,008 [76] DEBUG index - Entering return_app_list_strings_language(zh_cn) method ... +01/18/13 11:04:44,012 [76] DEBUG index - Exiting return_app_list_strings_language method ... +01/18/13 11:04:44,013 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:44,015 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,017 [76] DEBUG index - setting cookie ck_login_id_vtiger to 1 +01/18/13 11:04:44,019 [76] DEBUG index - setting cookie ck_login_theme_vtiger to softed +01/18/13 11:04:44,020 [76] DEBUG index - setting cookie ck_login_language_vtiger to zh_cn +01/18/13 11:04:44,022 [76] DEBUG index - skipping headers +01/18/13 11:04:44,023 [76] DEBUG index - Entering isPermitted(Accounts,DetailView,2) method ... +01/18/13 11:04:44,025 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:44,028 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:44,030 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:44,031 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,033 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,034 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,035 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,037 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:44,039 [76] DEBUG index - Prepared sql query parameters : [6] +01/18/13 11:04:44,047 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,049 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,051 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:44,056 [76] DEBUG index - Prepared sql query being executed : select * from vtiger_relatedlists where relation_id=? +01/18/13 11:04:44,058 [76] DEBUG index - Prepared sql query parameters : [123] +01/18/13 11:04:44,061 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:44,063 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,064 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,066 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,067 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:44,069 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:44,072 [76] DEBUG index - Prepared sql query being executed : SELECT name FROM vtiger_tab WHERE tabid = ? +01/18/13 11:04:44,073 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:04:44,106 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:44,107 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:44,109 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,111 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,112 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:44,114 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, columnname FROM vtiger_field WHERE uitype='10' AND fieldid IN (SELECT fieldid FROM vtiger_fieldmodulerel WHERE relmodule=? AND module=?) +01/18/13 11:04:44,115 [76] DEBUG index - Prepared sql query parameters : [Accounts,Project] +01/18/13 11:04:44,123 [76] DEBUG index - Entering isPermitted(Project,1,) method ... +01/18/13 11:04:44,125 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:44,126 [76] DEBUG index - Entering getFieldVisibilityPermission(Project,1,linktoaccountscontacts) method ... +01/18/13 11:04:44,128 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,130 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,131 [76] DEBUG index - Entering getTabModuleName(48) method ... +01/18/13 11:04:44,133 [76] DEBUG index - Exiting getTabModuleName method ... +01/18/13 11:04:44,135 [76] DEBUG index - Entering getColumnFields(Project) method ... +01/18/13 11:04:44,136 [76] DEBUG index - in getColumnFields Project +01/18/13 11:04:44,138 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,139 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,141 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,142 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,144 [76] DEBUG index - Prepared sql query being executed : SELECT tabid, fieldname, fieldid, fieldlabel, columnname, tablename, uitype, typeofdata, presence + FROM vtiger_field WHERE tabid in (?) +01/18/13 11:04:44,145 [76] DEBUG index - Prepared sql query parameters : [48] +01/18/13 11:04:44,151 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,153 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,155 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:44,157 [76] DEBUG index - Exiting getFieldVisibilityPermission method ... +01/18/13 11:04:44,158 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:44,160 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,162 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,163 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:44,165 [76] DEBUG index - function getTranslatedString(LBL_ADD_NEW) - translated to (新增) +01/18/13 11:04:44,167 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,168 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,170 [76] DEBUG index - function getTranslatedString(SINGLE_Project) - translated to (项目) +01/18/13 11:04:44,171 [76] DEBUG index - Prepared sql query being executed : select fieldname,modulename,tablename,entityidfield from vtiger_entityname where modulename = ? +01/18/13 11:04:44,173 [76] DEBUG index - Prepared sql query parameters : [Users] +01/18/13 11:04:44,177 [76] DEBUG account_list - Entering GetRelatedList(Accounts,Project,Project,SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2, ,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,) method ... +01/18/13 11:04:44,181 [76] DEBUG index - Entering return_module_language(zh_cn,Accounts) method ... +01/18/13 11:04:44,183 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,185 [76] DEBUG index - Entering function initSortByField (Project) +01/18/13 11:04:44,186 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,188 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,189 [76] DEBUG index - Prepared sql query being executed : SELECT columnname FROM vtiger_field WHERE (fieldname not like '%\_id' OR fieldname in ('assigned_user_id')) AND tabid in (?) and vtiger_field.presence in (0,2) AND columnname NOT IN (?,?,?,?) +01/18/13 11:04:44,191 [76] DEBUG index - Prepared sql query parameters : [48,parent_id,quoteid,vendorid,access_count] +01/18/13 11:04:44,197 [76] DEBUG index - Exiting initSortByField +01/18/13 11:04:44,198 [76] DEBUG index - Entering getColumnFields(Accounts) method ... +01/18/13 11:04:44,200 [76] DEBUG index - in getColumnFields Accounts +01/18/13 11:04:44,202 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,203 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,205 [76] DEBUG index - Exiting getColumnFields method ... +01/18/13 11:04:44,207 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,209 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,210 [76] DEBUG index - Entering ListViewSession() method ... +01/18/13 11:04:44,212 [76] DEBUG index - Entering getTableNameForField(Project,projectname) method ... +01/18/13 11:04:44,213 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,214 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,216 [76] DEBUG index - Prepared sql query being executed : select tablename from vtiger_field where tabid in (?) and vtiger_field.presence in (0,2) and columnname like ? +01/18/13 11:04:44,217 [76] DEBUG index - Prepared sql query parameters : [48,%projectname%] +01/18/13 11:04:44,221 [76] DEBUG index - Exiting getTableNameForField method ... +01/18/13 11:04:44,223 [76] DEBUG index - query being executed : SELECT count(*) AS count FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 +01/18/13 11:04:44,227 [76] DEBUG index - Prepared sql query being executed : SELECT vtiger_crmentity.*, vtiger_project.*, CASE WHEN (vtiger_users.user_name NOT LIKE '') THEN CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name) ELSE vtiger_groups.groupname END AS user_name FROM vtiger_project INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = vtiger_project.projectid INNER JOIN vtiger_account ON vtiger_account.accountid = vtiger_project.linktoaccountscontacts LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid WHERE vtiger_crmentity.deleted = 0 AND vtiger_account.accountid = 2 ORDER BY vtiger_project.projectname ASC LIMIT 0, 20 +01/18/13 11:04:44,236 [76] DEBUG index - Entering getListViewHeader(Project,,ASC,projectname,2,) method ... +01/18/13 11:04:44,238 [76] DEBUG index - Entering getURLstring(Project) method ... +01/18/13 11:04:44,239 [76] DEBUG index - Exiting getURLstring method ... +01/18/13 11:04:44,241 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,242 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,244 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:44,245 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:44,248 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,250 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,252 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,253 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,255 [76] DEBUG index - function getTranslatedString(Project Name) - translated to (项目名称) +01/18/13 11:04:44,257 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,258 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,259 [76] DEBUG index - function getTranslatedString(项目名称) - translated to (项目名称) +01/18/13 11:04:44,263 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,264 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,266 [76] DEBUG index - function getTranslatedString(Start Date) - translated to (开始日期) +01/18/13 11:04:44,267 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,269 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,270 [76] DEBUG index - function getTranslatedString(开始日期) - translated to (开始日期) +01/18/13 11:04:44,273 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,275 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,276 [76] DEBUG index - function getTranslatedString(Status) - translated to (状态) +01/18/13 11:04:44,278 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,279 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,281 [76] DEBUG index - function getTranslatedString(状态) - translated to (状态) +01/18/13 11:04:44,284 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,285 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,287 [76] DEBUG index - function getTranslatedString(Type) - translated to (类型) +01/18/13 11:04:44,288 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,290 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,291 [76] DEBUG index - function getTranslatedString(类型) - translated to (类型) +01/18/13 11:04:44,294 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,296 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,297 [76] DEBUG index - function getTranslatedString(Assigned To) - translated to (指派给) +01/18/13 11:04:44,299 [76] DEBUG index - Entering return_module_language(zh_cn,Project) method ... +01/18/13 11:04:44,300 [76] DEBUG index - Exiting return_module_language method ... +01/18/13 11:04:44,302 [76] DEBUG index - function getTranslatedString(指派给) - translated to (指派给) +01/18/13 11:04:44,305 [76] DEBUG index - Entering isPermitted(Project,EditView,) method ... +01/18/13 11:04:44,307 [76] DEBUG index - Exiting isPermitted method ... +01/18/13 11:04:44,309 [76] DEBUG index - Exiting getListViewHeader method ... +01/18/13 11:04:44,311 [76] DEBUG index - Entering getListViewEntries(Project,Project,crmid,smcreatorid,smownerid,modifiedby,setype,description,createdtime,modifiedtime,viewedtime,status,version,presence,deleted,projectid,projectname,project_no,startdate,targetenddate,actualenddate,targetbudget,projecturl,projectstatus,projectpriority,projecttype,progress,linktoaccountscontacts,user_name +,Array,relatedlist,&return_module=Accounts&return_action=CallRelatedList&return_id=2,,,) method ... +01/18/13 11:04:44,313 [76] DEBUG index - Entering getParentTab() method ... +01/18/13 11:04:44,314 [76] DEBUG index - Exiting getParentTab method ... +01/18/13 11:04:44,317 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,319 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,320 [76] DEBUG index - Prepared sql query being executed : SELECT uitype, columnname, fieldname FROM vtiger_field WHERE vtiger_field.tabid = ? and vtiger_field.presence in (0,2) AND fieldname IN (?,?,?,?,?) +01/18/13 11:04:44,322 [76] DEBUG index - Prepared sql query parameters : [48,projectname,startdate,projectstatus,projecttype,assigned_user_id] +01/18/13 11:04:44,327 [76] DEBUG index - Exiting getListViewEntries method ... +01/18/13 11:04:44,329 [76] DEBUG index - Entering getTableHeaderNavigation(Array,&order_by=projectname&sorder=ASC,Accounts,,) method ... +01/18/13 11:04:44,330 [76] DEBUG index - Entering getTabid(Project) method ... +01/18/13 11:04:44,332 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,333 [76] DEBUG index - Entering getTabid(Accounts) method ... +01/18/13 11:04:44,334 [76] DEBUG index - Exiting getTabid method ... +01/18/13 11:04:44,336 [76] DEBUG index - Prepared sql query being executed : SELECT * FROM vtiger_relatedlists WHERE tabid=? AND + related_tabid=? +01/18/13 11:04:44,337 [76] DEBUG index - Prepared sql query parameters : [6,48] +01/18/13 11:04:44,341 [76] INFO index - getNextRow +01/18/13 11:04:44,344 [76] DEBUG index - Exiting getTableHeaderNavigation method ... +01/18/13 11:04:44,345 [76] DEBUG account_list - Exiting GetRelatedList method ... +01/18/13 11:04:44,352 [76] DEBUG VT - Entering set_default_config(Array) method ... +01/18/13 11:04:44,354 [76] DEBUG VT - Exiting set_default_config method ...